(86.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)  (114.1ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateQuizzesLevels (20160816202207)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "quizzes_levels" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number_of_questions" integer, "name" varchar, "code" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160816202207"]]  (115.7ms) commit transaction ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", 2016-08-16 20:26:16 UTC], ["updated_at", 2016-08-16 20:26:16 UTC]]  (114.4ms) commit transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateQuizzesQuestions (20160816211615)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "quizzes_questions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar, "level_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) select sqlite_version(*)  (0.1ms) CREATE INDEX "index_quizzes_questions_on_level_id" ON "quizzes_questions" ("level_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160816211615"]]  (110.7ms) commit transaction ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]  (0.1ms) begin transaction  (0.1ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_questions_on_level_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_questions_on_level_id' AND type='index'  ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateQuizzesAnswers (20160816211838)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "quizzes_answers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar, "question_id" integer, "correct" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) select sqlite_version(*)  (0.1ms) CREATE INDEX "index_quizzes_answers_on_question_id" ON "quizzes_answers" ("question_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160816211838"]]  (95.6ms) commit transaction ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]  (0.1ms) begin transaction  (0.1ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_answers_on_question_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_answers_on_question_id' AND type='index'   (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_questions_on_level_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_questions_on_level_id' AND type='index'  ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateQuizzesUsers (20160816212850)  (0.0ms) begin transaction  (0.3ms) CREATE TABLE "quizzes_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "points" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160816212850"]]  (111.8ms) commit transaction ActiveRecord::InternalMetadata Load (0.1ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]  (0.1ms) begin transaction  (0.1ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_answers_on_question_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_answers_on_question_id' AND type='index'   (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_questions_on_level_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_questions_on_level_id' AND type='index'  ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateQuizzesGames (20160816213545)  (0.0ms) begin transaction  (0.2ms) CREATE TABLE "quizzes_games" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "level_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) select sqlite_version(*)  (0.1ms) CREATE INDEX "index_quizzes_games_on_user_id" ON "quizzes_games" ("user_id")  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_games_on_user_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_games_on_user_id' AND type='index'   (0.1ms) CREATE INDEX "index_quizzes_games_on_level_id" ON "quizzes_games" ("level_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160816213545"]]  (119.2ms) commit transaction ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]  (0.1ms) begin transaction  (0.0ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_answers_on_question_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_answers_on_question_id' AND type='index'   (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_games_on_level_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_games_on_level_id' AND type='index'   (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_games_on_user_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_games_on_user_id' AND type='index'   (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_questions_on_level_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_questions_on_level_id' AND type='index'  ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateQuizzesGameQuestions (20160816213825)  (0.1ms) begin transaction  (0.3ms) CREATE TABLE "quizzes_game_questions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "game_id" integer, "question_id" integer, "seed_to_shuffle_answers" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.0ms) select sqlite_version(*)  (0.1ms) CREATE INDEX "index_quizzes_game_questions_on_game_id" ON "quizzes_game_questions" ("game_id")  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_game_questions_on_game_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_game_questions_on_game_id' AND type='index'   (0.1ms) CREATE INDEX "index_quizzes_game_questions_on_question_id" ON "quizzes_game_questions" ("question_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160816213825"]]  (108.8ms) commit transaction ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]  (0.1ms) begin transaction  (0.1ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_answers_on_question_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_answers_on_question_id' AND type='index'   (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_game_questions_on_question_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_game_questions_on_question_id' AND type='index'   (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_game_questions_on_game_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_game_questions_on_game_id' AND type='index'   (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_games_on_level_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_games_on_level_id' AND type='index'   (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_games_on_user_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_games_on_user_id' AND type='index'   (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_questions_on_level_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_questions_on_level_id' AND type='index'  ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]  (0.1ms) begin transaction  (0.1ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_answers_on_question_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_answers_on_question_id' AND type='index'   (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_game_questions_on_question_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_game_questions_on_question_id' AND type='index'   (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_game_questions_on_game_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_game_questions_on_game_id' AND type='index'   (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_games_on_level_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_games_on_level_id' AND type='index'   (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_games_on_user_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_games_on_user_id' AND type='index'   (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_questions_on_level_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_questions_on_level_id' AND type='index'  Started GET "/" for 127.0.0.1 at 2016-08-18 19:15:58 -0300 Processing by Rails::WelcomeController#index as HTML Parameters: {"internal"=>true} Rendering /home/frederico/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb Rendered /home/frederico/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (11.0ms) Completed 200 OK in 51ms (Views: 25.7ms | ActiveRecord: 0.0ms) Started GET "/quizzes" for 127.0.0.1 at 2016-08-18 19:16:00 -0300 ActionController::RoutingError (No route matches [GET] "/quizzes"): actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call' actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call' railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app' railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call' activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged' activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged' railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call' sprockets-rails (3.1.1) lib/sprockets/rails/quiet_assets.rb:13:in `call' actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call' rack (2.0.1) lib/rack/method_override.rb:22:in `call' rack (2.0.1) lib/rack/runtime.rb:22:in `call' activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call' actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call' rack (2.0.1) lib/rack/sendfile.rb:111:in `call' railties (5.0.0.1) lib/rails/engine.rb:522:in `call' rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service' /home/frederico/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service' /home/frederico/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run' /home/frederico/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread' Rendering /home/frederico/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout Rendering /home/frederico/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb Rendered /home/frederico/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) Rendered collection of /home/frederico/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb [1 times] (23.4ms) Rendered collection of /home/frederico/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb [0 times] (0.0ms) Rendered /home/frederico/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (26.6ms) Rendering /home/frederico/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb Rendered /home/frederico/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (15.3ms) Rendered /home/frederico/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (139.9ms) Started GET "/" for 127.0.0.1 at 2016-08-18 19:16:14 -0300 Processing by Rails::WelcomeController#index as HTML Parameters: {"internal"=>true} Rendering /home/frederico/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb Rendered /home/frederico/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (5.4ms) Completed 200 OK in 8ms (Views: 6.9ms | ActiveRecord: 0.0ms) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.2ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.7ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.6ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.2ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.6ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.6ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.4ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (1.6ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.2ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.2ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms)[0m SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (6.7ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.2ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.2ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) DEPRECATION WARNING: Passing an argument to force an association to reload is now deprecated and will be removed in Rails 5.1. Please call `reload` on the result collection proxy instead. (called from correct_answer at /home/frederico/Work/projects/personal/quizzes/app/models/quizzes/question.rb:39) Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.2ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.2ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.2ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.2ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.2ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.2ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.2ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.2ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.2ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.2ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.3ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.5ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.2ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.4ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.2ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.2ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "10 anos após o reino de Israel ter sido capturado, qual nação tomou as cidades fortificadas de Judá?"], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assíria"], ["question_id", 1], ["correct", true], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônia"], ["question_id", 1], ["correct", false], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Grécia"], ["question_id", 1], ["correct", false], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pérsia"], ["question_id", 1], ["correct", false], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]]  (96.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "2 dias antes da celebração da Páscoa, na casa de quem Jesus jantou?"], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Simão, O Leproso"], ["question_id", 2], ["correct", true], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lázaro"], ["question_id", 2], ["correct", false], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cego Bartimeu"], ["question_id", 2], ["correct", false], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria Madalena"], ["question_id", 2], ["correct", false], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]]  (95.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "2 dias antes da celebração da Páscoa, Simão, o leproso, ofereceu a Jesus um:"], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jantar"], ["question_id", 3], ["correct", true], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Almoço"], ["question_id", 3], ["correct", false], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jejum"], ["question_id", 3], ["correct", false], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Café da Manhã"], ["question_id", 3], ["correct", false], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]]  (100.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "42 mil pessoas perderam a sua vida por não saberem pronunciar qual palavra?"], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Shiboleth"], ["question_id", 4], ["correct", true], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tacama-tacamâni"], ["question_id", 4], ["correct", false], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeovhá"], ["question_id", 4], ["correct", false], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Israel"], ["question_id", 4], ["correct", false], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]]  (116.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "5.000 pessoas foram alimentadas por Jesus através do milagre da multiplicação de:"], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5 Peixes e 2 Pães"], ["question_id", 5], ["correct", true], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5 Pães e 2 Peixes"], ["question_id", 5], ["correct", false], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Peixes e 5 Pães"], ["question_id", 5], ["correct", false], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5 Peixes e 3 Pães"], ["question_id", 5], ["correct", false], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]]  (116.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A bênção da primogenitura de Jacó deveria ser dada a:"], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 6], ["correct", true], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 6], ["correct", false], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 6], ["correct", false], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 6], ["correct", false], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]]  (101.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A bênçao da primogenitura era para ser dada ao:"], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filho Mais Velho"], ["question_id", 7], ["correct", true], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filho Mais Novo"], ["question_id", 7], ["correct", false], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filho Com Problemas de Saúde"], ["question_id", 7], ["correct", false], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "À Todas As Filhas do Casal"], ["question_id", 7], ["correct", false], ["created_at", 2016-08-19 02:45:58 UTC], ["updated_at", 2016-08-19 02:45:58 UTC]]  (109.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A cesta onde Moisés foi depositado foi coberto por betume, para evitar que esta:"], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Afundasse No Rio Nilo"], ["question_id", 8], ["correct", true], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ficasse Presa Nas Marges do Rio Nilo"], ["question_id", 8], ["correct", false], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fosse Abocanhada Pelos Crocodilos do Rio Nilo"], ["question_id", 8], ["correct", false], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Virasse Nas Corredeiras do Rio Nilo"], ["question_id", 8], ["correct", false], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]]  (93.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A cesta onde Moisés foi depositado foi coberto por betume, para fazer com que:"], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todas As Alternativas Estão Corretas"], ["question_id", 9], ["correct", true], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Afundasse"], ["question_id", 9], ["correct", false], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Flutuasse"], ["question_id", 9], ["correct", false], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Permitisse Que Moisés Morresse Afogado"], ["question_id", 9], ["correct", false], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]]  (108.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A cidade de Jerusalém foi atacada 3 vezes pelos:"], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônicos"], ["question_id", 10], ["correct", true], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egípcios"], ["question_id", 10], ["correct", false], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assírios"], ["question_id", 10], ["correct", false], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gregos"], ["question_id", 10], ["correct", false], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]]  (116.3ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A escuridão que se abateu devido à Crucificação de Jesus ocorreu:"], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nas Últimas 3 Horas da Crucificação"], ["question_id", 11], ["correct", true], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nas Primeiras 3 Horas da Crucificação"], ["question_id", 11], ["correct", false], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Entre 9 e 12 Horas da Manhã"], ["question_id", 11], ["correct", false], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Entre 6 e 9 Horas da Manhã"], ["question_id", 11], ["correct", false], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]]  (118.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A esposa de quem tentou cometer adultério com José?"], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Potifar"], ["question_id", 12], ["correct", true], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bate-seba"], ["question_id", 12], ["correct", false], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elcana"], ["question_id", 12], ["correct", false], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria Madalena"], ["question_id", 12], ["correct", false], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]]  (125.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A estrada de Jerusalém para Jericó foi utilizada por Jesus na parábola:"], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Bom Samaritano"], ["question_id", 13], ["correct", true], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Das 10 Virgens"], ["question_id", 13], ["correct", false], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Da Figueira"], ["question_id", 13], ["correct", false], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Filho Pródigo"], ["question_id", 13], ["correct", false], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]]  (117.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A família de quem foi salva de Sodoma, antes que a mesma tivesse sido destruída por Deus?"], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ló"], ["question_id", 14], ["correct", true], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 14], ["correct", false], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 14], ["correct", false], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noé"], ["question_id", 14], ["correct", false], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]]  (116.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A família de quem o Faraó disse que fosse acomodada na cidade do Gósen?"], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 15], ["correct", true], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 15], ["correct", false], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 15], ["correct", false], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 15], ["correct", false], ["created_at", 2016-08-19 02:45:59 UTC], ["updated_at", 2016-08-19 02:45:59 UTC]]  (116.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A filha de Herodias dançou para:"], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes"], ["question_id", 16], ["correct", true], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ananias"], ["question_id", 16], ["correct", false], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas Iscariotes"], ["question_id", 16], ["correct", false], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José de Arimatéia"], ["question_id", 16], ["correct", false], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]]  (124.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A grande maioria das porções do Antigo Testamento foi escrita em:"], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hebraico"], ["question_id", 17], ["correct", true], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aramaico"], ["question_id", 17], ["correct", false], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Grego"], ["question_id", 17], ["correct", false], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Latim"], ["question_id", 17], ["correct", false], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]]  (125.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A imagem do que apareceu nos sonhos do rei Nabucodonosor?"], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Estátua"], ["question_id", 18], ["correct", true], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Urso Com Asas"], ["question_id", 18], ["correct", false], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dragão Cuspindo Fogo"], ["question_id", 18], ["correct", false], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mostro Emergindo do Mar"], ["question_id", 18], ["correct", false], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]]  (116.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A mãe de Receba sugeriu que ela ficasse com seus parentes por mais 10 dias antes de:"], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Casar"], ["question_id", 19], ["correct", true], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noivar"], ["question_id", 19], ["correct", false], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Morrer"], ["question_id", 19], ["correct", false], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ser Presa"], ["question_id", 19], ["correct", false], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]]  (117.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "À medida que o terceiro ataque de Nabucodonosor sobre Jerusalém continuava, o que ocorria dentro da cidade?"], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fome"], ["question_id", 20], ["correct", true], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Festejos"], ["question_id", 20], ["correct", false], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Revolta"], ["question_id", 20], ["correct", false], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Suicídio Em Massa"], ["question_id", 20], ["correct", false], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]]  (117.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A pedido do rei Jeroboão, quem precisou disfarçar-se quando foi procurar o profeta Aías?"], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Própria Esposa"], ["question_id", 21], ["correct", true], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Próprio Filho"], ["question_id", 21], ["correct", false], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Própria Mãe"], ["question_id", 21], ["correct", false], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Próprio Pai"], ["question_id", 21], ["correct", false], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]]  (126.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A qual partido religioso pertencia Nicodemos?"], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fariseu"], ["question_id", 22], ["correct", true], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Levita"], ["question_id", 22], ["correct", false], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escriba"], ["question_id", 22], ["correct", false], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaritano"], ["question_id", 22], ["correct", false], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]]  (118.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A qual povo Deus proveu o maná?"], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Israelitas"], ["question_id", 23], ["correct", true], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cananeus"], ["question_id", 23], ["correct", false], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amorreus"], ["question_id", 23], ["correct", false], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sedonitas"], ["question_id", 23], ["correct", false], ["created_at", 2016-08-19 02:46:00 UTC], ["updated_at", 2016-08-19 02:46:00 UTC]]  (117.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A qual profeta uma jumenta comprimiu o pé contra o muro?"], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Balaão"], ["question_id", 24], ["correct", true], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ezequiel"], ["question_id", 24], ["correct", false], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jonas"], ["question_id", 24], ["correct", false], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 24], ["correct", false], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]]  (117.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A qual rei o profeta Aías deu a mensagem de que todos os homens da casa real seriam mortos?"], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeroboão"], ["question_id", 25], ["correct", true], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Roboão"], ["question_id", 25], ["correct", false], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 25], ["correct", false], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Labão"], ["question_id", 25], ["correct", false], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]]  (117.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quantos discípulos Jesus instruiu para que o acompanhassem em oração no Jardim do Getsêmani?"], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 26], ["correct", true], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 26], ["correct", false], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todos"], ["question_id", 26], ["correct", false], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "11"], ["question_id", 26], ["correct", false], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]]  (116.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A que animal é comparado Satanás?"], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Leão"], ["question_id", 27], ["correct", true], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Urso"], ["question_id", 27], ["correct", false], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pavão"], ["question_id", 27], ["correct", false], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Coruja"], ["question_id", 27], ["correct", false], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]]  (117.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A que horas do dia Jesus foi levado ao sumo sacerdote e aos anciãos e foi considerado culpado de blasfêmia?"], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Amanhecer"], ["question_id", 28], ["correct", true], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Meio-dia"], ["question_id", 28], ["correct", false], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Anoitecer"], ["question_id", 28], ["correct", false], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Durante A Madrugada"], ["question_id", 28], ["correct", false], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]]  (116.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A que rei foram trazidos bugios e pavões?"], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 29], ["correct", true], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 29], ["correct", false], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 29], ["correct", false], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Artaxerxes"], ["question_id", 29], ["correct", false], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]]  (125.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Abraão deixou todos os seus bens ao morrer?"], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 30], ["correct", true], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sara"], ["question_id", 30], ["correct", false], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Agar"], ["question_id", 30], ["correct", false], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 30], ["correct", false], ["created_at", 2016-08-19 02:46:01 UTC], ["updated_at", 2016-08-19 02:46:01 UTC]]  (133.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Absalão deu beijos políticos?"], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Cidadãos de Israel"], ["question_id", 31], ["correct", true], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Rei Davi"], ["question_id", 31], ["correct", false], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Sacerdotes do Templo de Jerusalém"], ["question_id", 31], ["correct", false], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Inimigos de Deus"], ["question_id", 31], ["correct", false], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]]  (132.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Amnon, filho de Davi, estuprou?"], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tamar"], ["question_id", 32], ["correct", true], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jizreel"], ["question_id", 32], ["correct", false], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 32], ["correct", false], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Agar"], ["question_id", 32], ["correct", false], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]]  (108.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem as esposas hetéias de Esaú trouxeram muita amargura de espírito?"], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque e Rebeca"], ["question_id", 33], ["correct", true], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 33], ["correct", false], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Próprio Esaú"], ["question_id", 33], ["correct", false], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Filhos de Esaú"], ["question_id", 33], ["correct", false], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]]  (116.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Deus acrescentou mais 15 anos de vida, quando esta pessoa contraiu uma doença fatal?"], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ezequias"], ["question_id", 34], ["correct", true], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 34], ["correct", false], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mardoqueu"], ["question_id", 34], ["correct", false], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Naamã"], ["question_id", 34], ["correct", false], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]]  (149.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem deveria ser levado uma pessoa que possuísse manchas na pele?"], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sacerdote"], ["question_id", 35], ["correct", true], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei"], ["question_id", 35], ["correct", false], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Profeta"], ["question_id", 35], ["correct", false], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Levita"], ["question_id", 35], ["correct", false], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]]  (141.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Elias desafiou no Monte Carmelo?"], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sacerdotes de Baal"], ["question_id", 36], ["correct", true], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rainha Jezabel"], ["question_id", 36], ["correct", false], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei Acaz"], ["question_id", 36], ["correct", false], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Povo de Israel"], ["question_id", 36], ["correct", false], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]]  (126.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Eliseu ajudou, enchendo várias vasilhas de azeite?"], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Uma Viúva Pobre"], ["question_id", 37], ["correct", true], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Mãe"], ["question_id", 37], ["correct", false], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Uma Portadora de Lepra"], ["question_id", 37], ["correct", false], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Uma Cega"], ["question_id", 37], ["correct", false], ["created_at", 2016-08-19 02:46:02 UTC], ["updated_at", 2016-08-19 02:46:02 UTC]]  (158.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem foi oferecido, por acidente, um caldo venenoso?"], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 38], ["correct", true], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eli"], ["question_id", 38], ["correct", false], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 38], ["correct", false], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elismael"], ["question_id", 38], ["correct", false], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]]  (141.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Hamã ofereceu 10.000 talentos de prata, com o objetivo de exterminar os judeus?"], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Rei Assuero"], ["question_id", 39], ["correct", true], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "À Rainha Ester"], ["question_id", 39], ["correct", false], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "À Rainha Vasti"], ["question_id", 39], ["correct", false], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Mardoqueu"], ["question_id", 39], ["correct", false], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]]  (117.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Jacó deu um beijo enganoso?"], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 40], ["correct", true], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 40], ["correct", false], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 40], ["correct", false], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 40], ["correct", false], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]]  (149.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Jacó fingiu ser?"], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 41], ["correct", true], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 41], ["correct", false], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 41], ["correct", false], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 41], ["correct", false], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]]  (158.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Jesus disse da necessidade em nascer de novo?"], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nicodemos"], ["question_id", 42], ["correct", true], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Barbabé"], ["question_id", 42], ["correct", false], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Áquila"], ["question_id", 42], ["correct", false], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 42], ["correct", false], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]]  (124.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Jesus pediu que fossem buscar um jumento emprestado para entrar em Jerusalém?"], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Discípulos"], ["question_id", 43], ["correct", true], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José de Arimatéia"], ["question_id", 43], ["correct", false], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anás"], ["question_id", 43], ["correct", false], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caifás"], ["question_id", 43], ["correct", false], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]]  (142.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Jesus perguntou 3 vezes se esta pessoa O amava?"], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 44], ["correct", true], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 44], ["correct", false], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas Iscariotes"], ["question_id", 44], ["correct", false], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 44], ["correct", false], ["created_at", 2016-08-19 02:46:03 UTC], ["updated_at", 2016-08-19 02:46:03 UTC]]  (126.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Joabe matou para acabar com a rebelião contra o reino de Davi?"], ["created_at", 2016-08-19 02:46:04 UTC], ["updated_at", 2016-08-19 02:46:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 45], ["correct", true], ["created_at", 2016-08-19 02:46:04 UTC], ["updated_at", 2016-08-19 02:46:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeroboão"], ["question_id", 45], ["correct", false], ["created_at", 2016-08-19 02:46:04 UTC], ["updated_at", 2016-08-19 02:46:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Roboão"], ["question_id", 45], ["correct", false], ["created_at", 2016-08-19 02:46:04 UTC], ["updated_at", 2016-08-19 02:46:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Labão"], ["question_id", 45], ["correct", false], ["created_at", 2016-08-19 02:46:04 UTC], ["updated_at", 2016-08-19 02:46:04 UTC]]  (108.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem João Batista estava se dirigindo quando disse a frase: \"Raça de víboras, quem vos ensinou a fugir da ira vindoura?\""], ["created_at", 2016-08-19 02:46:04 UTC], ["updated_at", 2016-08-19 02:46:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fariseus"], ["question_id", 46], ["correct", true], ["created_at", 2016-08-19 02:46:04 UTC], ["updated_at", 2016-08-19 02:46:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Líderes Religiosos"], ["question_id", 46], ["correct", false], ["created_at", 2016-08-19 02:46:04 UTC], ["updated_at", 2016-08-19 02:46:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Soldados Romanos"], ["question_id", 46], ["correct", false], ["created_at", 2016-08-19 02:46:04 UTC], ["updated_at", 2016-08-19 02:46:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes"], ["question_id", 46], ["correct", false], ["created_at", 2016-08-19 02:46:04 UTC], ["updated_at", 2016-08-19 02:46:04 UTC]]  (109.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem José disse a frase: \"Vós sois espias\"?"], ["created_at", 2016-08-19 02:46:04 UTC], ["updated_at", 2016-08-19 02:46:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Seus Irmãos"], ["question_id", 47], ["correct", true], ["created_at", 2016-08-19 02:46:04 UTC], ["updated_at", 2016-08-19 02:46:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Inimigos do Povo Egípcio"], ["question_id", 47], ["correct", false], ["created_at", 2016-08-19 02:46:04 UTC], ["updated_at", 2016-08-19 02:46:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Povo Hebreu"], ["question_id", 47], ["correct", false], ["created_at", 2016-08-19 02:46:04 UTC], ["updated_at", 2016-08-19 02:46:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Filhos do Faraó"], ["question_id", 47], ["correct", false], ["created_at", 2016-08-19 02:46:04 UTC], ["updated_at", 2016-08-19 02:46:04 UTC]]  (99.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Labão enganou?"], ["created_at", 2016-08-19 02:46:04 UTC], ["updated_at", 2016-08-19 02:46:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 48], ["correct", true], ["created_at", 2016-08-19 02:46:04 UTC], ["updated_at", 2016-08-19 02:46:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 48], ["correct", false], ["created_at", 2016-08-19 02:46:04 UTC], ["updated_at", 2016-08-19 02:46:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 48], ["correct", false], ["created_at", 2016-08-19 02:46:04 UTC], ["updated_at", 2016-08-19 02:46:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 48], ["correct", false], ["created_at", 2016-08-19 02:46:04 UTC], ["updated_at", 2016-08-19 02:46:04 UTC]]  (142.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Maria, mãe de Jesus, visitou quando ela descobriu que estava grávida?"], ["created_at", 2016-08-19 02:46:04 UTC], ["updated_at", 2016-08-19 02:46:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "À Sua Prima Isabel"], ["question_id", 49], ["correct", true], ["created_at", 2016-08-19 02:46:04 UTC], ["updated_at", 2016-08-19 02:46:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "À Sua Irmã, Marta"], ["question_id", 49], ["correct", false], ["created_at", 2016-08-19 02:46:04 UTC], ["updated_at", 2016-08-19 02:46:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Seu Irmão, Lázaro"], ["question_id", 49], ["correct", false], ["created_at", 2016-08-19 02:46:04 UTC], ["updated_at", 2016-08-19 02:46:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "À Sua Mãe, Joana"], ["question_id", 49], ["correct", false], ["created_at", 2016-08-19 02:46:04 UTC], ["updated_at", 2016-08-19 02:46:04 UTC]]  (129.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Noemi deu um beijo de tristeza?"], ["created_at", 2016-08-19 02:46:04 UTC], ["updated_at", 2016-08-19 02:46:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rute e Orfa"], ["question_id", 50], ["correct", true], ["created_at", 2016-08-19 02:46:04 UTC], ["updated_at", 2016-08-19 02:46:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Malom e Quiliom"], ["question_id", 50], ["correct", false], ["created_at", 2016-08-19 02:46:04 UTC], ["updated_at", 2016-08-19 02:46:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Boaz e Rute"], ["question_id", 50], ["correct", false], ["created_at", 2016-08-19 02:46:04 UTC], ["updated_at", 2016-08-19 02:46:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Boaz e Orfa"], ["question_id", 50], ["correct", false], ["created_at", 2016-08-19 02:46:04 UTC], ["updated_at", 2016-08-19 02:46:04 UTC]]  (514.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem o anjo Gabriel avisou que Maria foi escolhida para ser a mãe de Jesus?"], ["created_at", 2016-08-19 02:46:05 UTC], ["updated_at", 2016-08-19 02:46:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Própria Maria"], ["question_id", 51], ["correct", true], ["created_at", 2016-08-19 02:46:05 UTC], ["updated_at", 2016-08-19 02:46:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A José, Seu Esposo"], ["question_id", 51], ["correct", false], ["created_at", 2016-08-19 02:46:05 UTC], ["updated_at", 2016-08-19 02:46:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A João Batista"], ["question_id", 51], ["correct", false], ["created_at", 2016-08-19 02:46:05 UTC], ["updated_at", 2016-08-19 02:46:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Profeta Zacarias"], ["question_id", 51], ["correct", false], ["created_at", 2016-08-19 02:46:05 UTC], ["updated_at", 2016-08-19 02:46:05 UTC]]  (234.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem o Faraó nomeou como governador de todo o Egito?"], ["created_at", 2016-08-19 02:46:05 UTC], ["updated_at", 2016-08-19 02:46:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 52], ["correct", true], ["created_at", 2016-08-19 02:46:05 UTC], ["updated_at", 2016-08-19 02:46:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 52], ["correct", false], ["created_at", 2016-08-19 02:46:05 UTC], ["updated_at", 2016-08-19 02:46:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 52], ["correct", false], ["created_at", 2016-08-19 02:46:05 UTC], ["updated_at", 2016-08-19 02:46:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 52], ["correct", false], ["created_at", 2016-08-19 02:46:05 UTC], ["updated_at", 2016-08-19 02:46:05 UTC]]  (124.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem o povo pediu que libertassem a Barrabás do que a Jesus?"], ["created_at", 2016-08-19 02:46:05 UTC], ["updated_at", 2016-08-19 02:46:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 53], ["correct", true], ["created_at", 2016-08-19 02:46:05 UTC], ["updated_at", 2016-08-19 02:46:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes, O Grande"], ["question_id", 53], ["correct", false], ["created_at", 2016-08-19 02:46:05 UTC], ["updated_at", 2016-08-19 02:46:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Sumos-sacerdotes"], ["question_id", 53], ["correct", false], ["created_at", 2016-08-19 02:46:05 UTC], ["updated_at", 2016-08-19 02:46:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Imperador Romano"], ["question_id", 53], ["correct", false], ["created_at", 2016-08-19 02:46:05 UTC], ["updated_at", 2016-08-19 02:46:05 UTC]]  (125.9ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem o profeta Eliseu orientou lavar-se 7 vezes no rio Jordão para curar-se da lepra?"], ["created_at", 2016-08-19 02:46:05 UTC], ["updated_at", 2016-08-19 02:46:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Comandante Naamã"], ["question_id", 54], ["correct", true], ["created_at", 2016-08-19 02:46:05 UTC], ["updated_at", 2016-08-19 02:46:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cego Bartimeu"], ["question_id", 54], ["correct", false], ["created_at", 2016-08-19 02:46:05 UTC], ["updated_at", 2016-08-19 02:46:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aleijado Lázaro"], ["question_id", 54], ["correct", false], ["created_at", 2016-08-19 02:46:05 UTC], ["updated_at", 2016-08-19 02:46:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei Silas"], ["question_id", 54], ["correct", false], ["created_at", 2016-08-19 02:46:05 UTC], ["updated_at", 2016-08-19 02:46:05 UTC]]  (117.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem o rei Davi devolveu todas as propriedades pessoais de Saul?"], ["created_at", 2016-08-19 02:46:05 UTC], ["updated_at", 2016-08-19 02:46:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mefibosete"], ["question_id", 55], ["correct", true], ["created_at", 2016-08-19 02:46:05 UTC], ["updated_at", 2016-08-19 02:46:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabote"], ["question_id", 55], ["correct", false], ["created_at", 2016-08-19 02:46:05 UTC], ["updated_at", 2016-08-19 02:46:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jônatas"], ["question_id", 55], ["correct", false], ["created_at", 2016-08-19 02:46:05 UTC], ["updated_at", 2016-08-19 02:46:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 55], ["correct", false], ["created_at", 2016-08-19 02:46:05 UTC], ["updated_at", 2016-08-19 02:46:05 UTC]]  (134.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem o rei Davi, do teto de sua casa, viu banhando-se?"], ["created_at", 2016-08-19 02:46:05 UTC], ["updated_at", 2016-08-19 02:46:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bate-seba"], ["question_id", 56], ["correct", true], ["created_at", 2016-08-19 02:46:05 UTC], ["updated_at", 2016-08-19 02:46:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Agar"], ["question_id", 56], ["correct", false], ["created_at", 2016-08-19 02:46:05 UTC], ["updated_at", 2016-08-19 02:46:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sara"], ["question_id", 56], ["correct", false], ["created_at", 2016-08-19 02:46:05 UTC], ["updated_at", 2016-08-19 02:46:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Milquéias"], ["question_id", 56], ["correct", false], ["created_at", 2016-08-19 02:46:05 UTC], ["updated_at", 2016-08-19 02:46:05 UTC]]  (124.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem o rei Ezequias mostrou tolamente os tesouros do Templo?"], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Babilônios"], ["question_id", 57], ["correct", true], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Persas"], ["question_id", 57], ["correct", false], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Romanos"], ["question_id", 57], ["correct", false], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Fenícios"], ["question_id", 57], ["correct", false], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]]  (125.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem o rei Manassés queimou em sacrifício?"], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Próprio Filho"], ["question_id", 58], ["correct", true], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Inimigos"], ["question_id", 58], ["correct", false], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Esposa"], ["question_id", 58], ["correct", false], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Mãe"], ["question_id", 58], ["correct", false], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]]  (126.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem o servo de Abraão deu como agradecimento 1 argola de ouro e 2 pulseiras de ouro?"], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 59], ["correct", true], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Raabe"], ["question_id", 59], ["correct", false], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sara"], ["question_id", 59], ["correct", false], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Agar"], ["question_id", 59], ["correct", false], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]]  (125.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem os príncipes filisteus ofereceram 1.100 moedas de prata de cada um deles?"], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dalila"], ["question_id", 60], ["correct", true], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Diná"], ["question_id", 60], ["correct", false], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Débora"], ["question_id", 60], ["correct", false], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dinéia"], ["question_id", 60], ["correct", false], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]]  (125.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem os príncipes filisteus pediram que conseguisse descobrir o segredo da força de Sansão?"], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dalila"], ["question_id", 61], ["correct", true], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Prostituta de Gaza"], ["question_id", 61], ["correct", false], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Emaim"], ["question_id", 61], ["correct", false], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Líderes Religiosos"], ["question_id", 61], ["correct", false], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]]  (134.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem os Reis Magos estavam procurando como o menino \"Rei dos Judeus\"?"], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 62], ["correct", true], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sumo-sacerdote Ananias"], ["question_id", 62], ["correct", false], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 62], ["correct", false], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 62], ["correct", false], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]]  (117.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem os soldados egípcios estavam perseguindo quando o Mar Vermelho dividiu-se em dois?"], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Povo Israelita"], ["question_id", 63], ["correct", true], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Exército Israelita"], ["question_id", 63], ["correct", false], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Líderes Religiosos do Povo Israelita"], ["question_id", 63], ["correct", false], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Escravos do Povo Israelita"], ["question_id", 63], ["correct", false], ["created_at", 2016-08-19 02:46:06 UTC], ["updated_at", 2016-08-19 02:46:06 UTC]]  (125.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Rebeca ajudou a praticar uma fraude?"], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Filho"], ["question_id", 64], ["correct", true], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Marido"], ["question_id", 64], ["correct", false], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Mãe"], ["question_id", 64], ["correct", false], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Empregada"], ["question_id", 64], ["correct", false], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]]  (124.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Rute abandonou para poder acompanhar a sogra?"], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Família"], ["question_id", 65], ["correct", true], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Marido"], ["question_id", 65], ["correct", false], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus 2 Filhos"], ["question_id", 65], ["correct", false], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ninguém, Pois Era Sozinha No Mundo"], ["question_id", 65], ["correct", false], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]]  (108.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Samuel deu um beijo de coroação?"], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 66], ["correct", true], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 66], ["correct", false], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 66], ["correct", false], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acaz"], ["question_id", 66], ["correct", false], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]]  (100.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Sansão pediu uma filha dos filisteus, quando este foi à cidade de Timnate?"], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Seus Pais"], ["question_id", 67], ["correct", true], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Seus Sogros"], ["question_id", 67], ["correct", false], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Senhor"], ["question_id", 67], ["correct", false], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Seu Criado"], ["question_id", 67], ["correct", false], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]]  (117.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Satanás levou ao pináculo do Templo e o tentou para saltar dali?"], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 68], ["correct", true], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José de Arimatéia"], ["question_id", 68], ["correct", false], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Barrabás"], ["question_id", 68], ["correct", false], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 68], ["correct", false], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]]  (134.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A rainha Jezabel foi casada com o rei:"], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 69], ["correct", true], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 69], ["correct", false], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 69], ["correct", false], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 69], ["correct", false], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]]  (149.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A sogra de Pedro foi curada por Jesus na cidade de:"], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cafarnaum"], ["question_id", 70], ["correct", true], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Betânia"], ["question_id", 70], ["correct", false], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nazaré"], ["question_id", 70], ["correct", false], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belém"], ["question_id", 70], ["correct", false], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]]  (134.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A unção e o beijo que eram dados eram sinais de que:"], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Era O Homem Indicado Por Deus Para Ser O Novo Rei"], ["question_id", 71], ["correct", true], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Pessoas Estavam Apaixonadas"], ["question_id", 71], ["correct", false], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Pessoa Seria Executada"], ["question_id", 71], ["correct", false], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Pessoa Teria Vida Longa e Próspera"], ["question_id", 71], ["correct", false], ["created_at", 2016-08-19 02:46:07 UTC], ["updated_at", 2016-08-19 02:46:07 UTC]]  (142.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A vara que brotou pertencia a:"], ["created_at", 2016-08-19 02:46:08 UTC], ["updated_at", 2016-08-19 02:46:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 72], ["correct", true], ["created_at", 2016-08-19 02:46:08 UTC], ["updated_at", 2016-08-19 02:46:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 72], ["correct", false], ["created_at", 2016-08-19 02:46:08 UTC], ["updated_at", 2016-08-19 02:46:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 72], ["correct", false], ["created_at", 2016-08-19 02:46:08 UTC], ["updated_at", 2016-08-19 02:46:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noé"], ["question_id", 72], ["correct", false], ["created_at", 2016-08-19 02:46:08 UTC], ["updated_at", 2016-08-19 02:46:08 UTC]]  (134.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Abel e Caim tiveram mais quantos irmãos?"], ["created_at", 2016-08-19 02:46:08 UTC], ["updated_at", 2016-08-19 02:46:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Muitos Outros"], ["question_id", 73], ["correct", true], ["created_at", 2016-08-19 02:46:08 UTC], ["updated_at", 2016-08-19 02:46:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas Sete"], ["question_id", 73], ["correct", false], ["created_at", 2016-08-19 02:46:08 UTC], ["updated_at", 2016-08-19 02:46:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas 1"], ["question_id", 73], ["correct", false], ["created_at", 2016-08-19 02:46:08 UTC], ["updated_at", 2016-08-19 02:46:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mais Nenhum"], ["question_id", 73], ["correct", false], ["created_at", 2016-08-19 02:46:08 UTC], ["updated_at", 2016-08-19 02:46:08 UTC]]  (159.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Abraão também foi conhecido com o:"], ["created_at", 2016-08-19 02:46:08 UTC], ["updated_at", 2016-08-19 02:46:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pai de Muitas Nações"], ["question_id", 74], ["correct", true], ["created_at", 2016-08-19 02:46:08 UTC], ["updated_at", 2016-08-19 02:46:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Homem de Deus"], ["question_id", 74], ["correct", false], ["created_at", 2016-08-19 02:46:08 UTC], ["updated_at", 2016-08-19 02:46:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cavaleiro do Apocalipse"], ["question_id", 74], ["correct", false], ["created_at", 2016-08-19 02:46:08 UTC], ["updated_at", 2016-08-19 02:46:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Discípulo Amado"], ["question_id", 74], ["correct", false], ["created_at", 2016-08-19 02:46:08 UTC], ["updated_at", 2016-08-19 02:46:08 UTC]]  (167.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Abraão teve filhos com quantas mulheres?"], ["created_at", 2016-08-19 02:46:08 UTC], ["updated_at", 2016-08-19 02:46:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 75], ["correct", true], ["created_at", 2016-08-19 02:46:08 UTC], ["updated_at", 2016-08-19 02:46:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 75], ["correct", false], ["created_at", 2016-08-19 02:46:08 UTC], ["updated_at", 2016-08-19 02:46:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 75], ["correct", false], ["created_at", 2016-08-19 02:46:08 UTC], ["updated_at", 2016-08-19 02:46:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 75], ["correct", false], ["created_at", 2016-08-19 02:46:08 UTC], ["updated_at", 2016-08-19 02:46:08 UTC]]  (183.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Absalão era celebrado devido à:"], ["created_at", 2016-08-19 02:46:08 UTC], ["updated_at", 2016-08-19 02:46:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Beleza"], ["question_id", 76], ["correct", true], ["created_at", 2016-08-19 02:46:08 UTC], ["updated_at", 2016-08-19 02:46:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Inteligência"], ["question_id", 76], ["correct", false], ["created_at", 2016-08-19 02:46:08 UTC], ["updated_at", 2016-08-19 02:46:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Sagacidade"], ["question_id", 76], ["correct", false], ["created_at", 2016-08-19 02:46:08 UTC], ["updated_at", 2016-08-19 02:46:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Capacidade de Mentir"], ["question_id", 76], ["correct", false], ["created_at", 2016-08-19 02:46:08 UTC], ["updated_at", 2016-08-19 02:46:08 UTC]]  (135.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Absalão matou Amnom pelo fato deste ter estuprado Tamar. Qual era o grau de parentesco entre Amnom e Absalão?"], ["created_at", 2016-08-19 02:46:08 UTC], ["updated_at", 2016-08-19 02:46:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmãos"], ["question_id", 77], ["correct", true], ["created_at", 2016-08-19 02:46:08 UTC], ["updated_at", 2016-08-19 02:46:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pai e Filho"], ["question_id", 77], ["correct", false], ["created_at", 2016-08-19 02:46:08 UTC], ["updated_at", 2016-08-19 02:46:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filho e Pai"], ["question_id", 77], ["correct", false], ["created_at", 2016-08-19 02:46:08 UTC], ["updated_at", 2016-08-19 02:46:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Avô e Neto"], ["question_id", 77], ["correct", false], ["created_at", 2016-08-19 02:46:08 UTC], ["updated_at", 2016-08-19 02:46:08 UTC]]  (141.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Absalão tentou tomar à força o reino de:"], ["created_at", 2016-08-19 02:46:09 UTC], ["updated_at", 2016-08-19 02:46:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 78], ["correct", true], ["created_at", 2016-08-19 02:46:09 UTC], ["updated_at", 2016-08-19 02:46:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 78], ["correct", false], ["created_at", 2016-08-19 02:46:09 UTC], ["updated_at", 2016-08-19 02:46:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josias"], ["question_id", 78], ["correct", false], ["created_at", 2016-08-19 02:46:09 UTC], ["updated_at", 2016-08-19 02:46:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zedequias"], ["question_id", 78], ["correct", false], ["created_at", 2016-08-19 02:46:09 UTC], ["updated_at", 2016-08-19 02:46:09 UTC]]  (175.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Adão e Eva moravam em qual jardim?"], ["created_at", 2016-08-19 02:46:09 UTC], ["updated_at", 2016-08-19 02:46:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Éden"], ["question_id", 79], ["correct", true], ["created_at", 2016-08-19 02:46:09 UTC], ["updated_at", 2016-08-19 02:46:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paraíso"], ["question_id", 79], ["correct", false], ["created_at", 2016-08-19 02:46:09 UTC], ["updated_at", 2016-08-19 02:46:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Getsêmani"], ["question_id", 79], ["correct", false], ["created_at", 2016-08-19 02:46:09 UTC], ["updated_at", 2016-08-19 02:46:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hebrom"], ["question_id", 79], ["correct", false], ["created_at", 2016-08-19 02:46:09 UTC], ["updated_at", 2016-08-19 02:46:09 UTC]]  (149.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Agar era de Sara, esposa de Abraão:"], ["created_at", 2016-08-19 02:46:09 UTC], ["updated_at", 2016-08-19 02:46:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Criada"], ["question_id", 80], ["correct", true], ["created_at", 2016-08-19 02:46:09 UTC], ["updated_at", 2016-08-19 02:46:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Irmã"], ["question_id", 80], ["correct", false], ["created_at", 2016-08-19 02:46:09 UTC], ["updated_at", 2016-08-19 02:46:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Concunhada"], ["question_id", 80], ["correct", false], ["created_at", 2016-08-19 02:46:09 UTC], ["updated_at", 2016-08-19 02:46:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Nora"], ["question_id", 80], ["correct", false], ["created_at", 2016-08-19 02:46:09 UTC], ["updated_at", 2016-08-19 02:46:09 UTC]]  (141.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Aitofel, influente conselheiro do rei Davi, desertou para o lado de:"], ["created_at", 2016-08-19 02:46:09 UTC], ["updated_at", 2016-08-19 02:46:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 81], ["correct", true], ["created_at", 2016-08-19 02:46:09 UTC], ["updated_at", 2016-08-19 02:46:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Labão"], ["question_id", 81], ["correct", false], ["created_at", 2016-08-19 02:46:09 UTC], ["updated_at", 2016-08-19 02:46:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeroboão"], ["question_id", 81], ["correct", false], ["created_at", 2016-08-19 02:46:09 UTC], ["updated_at", 2016-08-19 02:46:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Roboão"], ["question_id", 81], ["correct", false], ["created_at", 2016-08-19 02:46:09 UTC], ["updated_at", 2016-08-19 02:46:09 UTC]]  (174.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além da safra de centeio, qual outra safra dos egípcios sobreviveu quando Deus enviou as pedras de fogo?"], ["created_at", 2016-08-19 02:46:09 UTC], ["updated_at", 2016-08-19 02:46:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trigo"], ["question_id", 82], ["correct", true], ["created_at", 2016-08-19 02:46:09 UTC], ["updated_at", 2016-08-19 02:46:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Linho"], ["question_id", 82], ["correct", false], ["created_at", 2016-08-19 02:46:09 UTC], ["updated_at", 2016-08-19 02:46:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cevada"], ["question_id", 82], ["correct", false], ["created_at", 2016-08-19 02:46:09 UTC], ["updated_at", 2016-08-19 02:46:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Milho"], ["question_id", 82], ["correct", false], ["created_at", 2016-08-19 02:46:09 UTC], ["updated_at", 2016-08-19 02:46:09 UTC]]  (299.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além da safra de cevada, qual outra safra dos egípcios foi destruída em decorrência da praga das pedras de fogo?"], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Linho"], ["question_id", 83], ["correct", true], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Centeio"], ["question_id", 83], ["correct", false], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trigo"], ["question_id", 83], ["correct", false], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Milho"], ["question_id", 83], ["correct", false], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]]  (125.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além da safra de linho, qual outra safra dos egípcios foi destruída em decorrência da praga das pedras de fogo?"], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cevada"], ["question_id", 84], ["correct", true], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trigo"], ["question_id", 84], ["correct", false], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Milho"], ["question_id", 84], ["correct", false], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Centeio"], ["question_id", 84], ["correct", false], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]]  (133.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além da safra de trigo, qual outra safra dos egípcios sobreviveu quando Deus enviou as pedras de fogo?"], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Centeio"], ["question_id", 85], ["correct", true], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Milho"], ["question_id", 85], ["correct", false], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Linho"], ["question_id", 85], ["correct", false], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cevada"], ["question_id", 85], ["correct", false], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]]  (125.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além de Daniel, quantas pessoas mais foram nomeadas Presidentes do reino da Babilônia pelo rei Dario?"], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 86], ["correct", true], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 86], ["correct", false], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "11"], ["question_id", 86], ["correct", false], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mais Nenhuma"], ["question_id", 86], ["correct", false], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]]  (149.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além de incenso, quais os outros presentes dados ao menino Jesus pelos Reis Magos?"], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ouro e Mirra"], ["question_id", 87], ["correct", true], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Frutas e Especiarias"], ["question_id", 87], ["correct", false], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jóias e Prata"], ["question_id", 87], ["correct", false], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Testamento e Um Baú"], ["question_id", 87], ["correct", false], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]]  (149.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além de Jacó do Egito, quem mais foi embalsamado de acordo com a tradição egípcia?"], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 88], ["correct", true], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 88], ["correct", false], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rúben"], ["question_id", 88], ["correct", false], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Benjamin"], ["question_id", 88], ["correct", false], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]]  (158.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além de Jambres, como era o nome do outro mago do Faraó que conseguiu imitar 2 pragas enviadas por Deus?"], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Janes"], ["question_id", 89], ["correct", true], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ermafrom"], ["question_id", 89], ["correct", false], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joctã"], ["question_id", 89], ["correct", false], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacã"], ["question_id", 89], ["correct", false], ["created_at", 2016-08-19 02:46:10 UTC], ["updated_at", 2016-08-19 02:46:10 UTC]]  (141.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além de Janes, como era o nome do outro mago do Faraó que conseguiu imitar 2 pragas enviadas por Deus?"], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jambres"], ["question_id", 90], ["correct", true], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jaser"], ["question_id", 90], ["correct", false], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacã"], ["question_id", 90], ["correct", false], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ermafrom"], ["question_id", 90], ["correct", false], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]]  (117.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além de Jesus, quantas pessoas mais foram crucificadas?"], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 91], ["correct", true], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 91], ["correct", false], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 91], ["correct", false], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus Foi Crucificado Sozinho"], ["question_id", 91], ["correct", false], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]]  (141.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além de José do Egito, quem mais foi embalsamado de acordo com a tradição egípcia?"], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 92], ["correct", true], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 92], ["correct", false], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 92], ["correct", false], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 92], ["correct", false], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]]  (158.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além de Orfa, a quem mais Noemi deu um beijo de tristeza?"], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rute"], ["question_id", 93], ["correct", true], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ester"], ["question_id", 93], ["correct", false], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vasti"], ["question_id", 93], ["correct", false], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Boaz"], ["question_id", 93], ["correct", false], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]]  (116.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além de Pedro, quem mais estava pescando quando ambos foram chamados por Jesus para serem Seus discípulos?"], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "André"], ["question_id", 94], ["correct", true], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 94], ["correct", false], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 94], ["correct", false], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 94], ["correct", false], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]]  (116.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além de profeta, Natã também foi:"], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Conselheiro de Davi"], ["question_id", 95], ["correct", true], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pai de Abraão"], ["question_id", 95], ["correct", false], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmão de Saul"], ["question_id", 95], ["correct", false], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filho de Absalão"], ["question_id", 95], ["correct", false], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]]  (117.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além de rei, Melquisedeque também foi:"], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sacerdote"], ["question_id", 96], ["correct", true], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Soldado"], ["question_id", 96], ["correct", false], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Profeta"], ["question_id", 96], ["correct", false], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Juiz"], ["question_id", 96], ["correct", false], ["created_at", 2016-08-19 02:46:11 UTC], ["updated_at", 2016-08-19 02:46:11 UTC]]  (116.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além de Rute, a quem mais Noemi deu um beijo de tristeza?"], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Orfa"], ["question_id", 97], ["correct", true], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Boaz"], ["question_id", 97], ["correct", false], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Malom"], ["question_id", 97], ["correct", false], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quiliom"], ["question_id", 97], ["correct", false], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]]  (125.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além de sacerdote, Melquisedeque também foi:"], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei"], ["question_id", 98], ["correct", true], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Profeta"], ["question_id", 98], ["correct", false], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Soldado"], ["question_id", 98], ["correct", false], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Juiz"], ["question_id", 98], ["correct", false], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]]  (125.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além de seu filho Roboão, quem mais cultuava ídolos na casa de Salomão?"], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Esposa Maacá"], ["question_id", 99], ["correct", true], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Filha Lia"], ["question_id", 99], ["correct", false], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Sogra Naamá"], ["question_id", 99], ["correct", false], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Sogra Abias"], ["question_id", 99], ["correct", false], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]]  (125.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além de Sodoma, qual foi a outra cidade que também foi destruída por Deus através de fogo?"], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gomorra"], ["question_id", 100], ["correct", true], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônia"], ["question_id", 100], ["correct", false], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiro"], ["question_id", 100], ["correct", false], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nínive"], ["question_id", 100], ["correct", false], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]]  (117.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além do sumo sacerdote, quem mais presenciou Jesus ter sido culpado por blasfêmia?"], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oa Anciãos"], ["question_id", 101], ["correct", true], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Soldados Romanos"], ["question_id", 101], ["correct", false], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes"], ["question_id", 101], ["correct", false], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 101], ["correct", false], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]]  (125.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além dos 120 Presidentes nomeados pelo rei Dario, que cargos também foram nomeados?"], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Presidentes"], ["question_id", 102], ["correct", true], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vice-rei"], ["question_id", 102], ["correct", false], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Prefeitos"], ["question_id", 102], ["correct", false], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Juízes"], ["question_id", 102], ["correct", false], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]]  (200.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além dos 3 Presidentes nomeados pelo rei Dario, que outros cargos foram nomeados?"], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Governadores"], ["question_id", 103], ["correct", true], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Prefeitos"], ["question_id", 103], ["correct", false], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vereadores"], ["question_id", 103], ["correct", false], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Juízes"], ["question_id", 103], ["correct", false], ["created_at", 2016-08-19 02:46:12 UTC], ["updated_at", 2016-08-19 02:46:12 UTC]]  (152.3ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além dos anciãos, quem mais presenciou Jesus ter sido culpado por blasfêmia?"], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Sumo Sacerdote"], ["question_id", 104], ["correct", true], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Soldados Romanos"], ["question_id", 104], ["correct", false], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 104], ["correct", false], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes"], ["question_id", 104], ["correct", false], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]]  (116.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além dos escribas, quem mais Herodes levou consigo a fim de descobrir onde Cristo iria nascer?"], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sacerdotes"], ["question_id", 105], ["correct", true], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fariseus"], ["question_id", 105], ["correct", false], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Levitas"], ["question_id", 105], ["correct", false], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Reis Magos"], ["question_id", 105], ["correct", false], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]]  (133.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além dos sacerdotes, quem mais Herodes levou consigo a fim de descobrir onde Cristo iria nascer?"], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escribas"], ["question_id", 106], ["correct", true], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Levitas"], ["question_id", 106], ["correct", false], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fariseus"], ["question_id", 106], ["correct", false], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Reis Magos"], ["question_id", 106], ["correct", false], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]]  (133.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Amnom, filho de Davi, estuprou a Tamar. Qual era o grau de parentesco entre eles?"], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Meio-irmãos"], ["question_id", 107], ["correct", true], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Meio-primos"], ["question_id", 107], ["correct", false], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tio e Sobrinha"], ["question_id", 107], ["correct", false], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sobrinho e Tia"], ["question_id", 107], ["correct", false], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]]  (117.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Amnon e Sefatias foram filhos do rei:"], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 108], ["correct", true], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josias"], ["question_id", 108], ["correct", false], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amom"], ["question_id", 108], ["correct", false], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Manassés"], ["question_id", 108], ["correct", false], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]]  (125.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Ana emprestou seu filho a:"], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deus"], ["question_id", 109], ["correct", true], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sacerdote"], ["question_id", 109], ["correct", false], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Parentes"], ["question_id", 109], ["correct", false], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Credores"], ["question_id", 109], ["correct", false], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]]  (142.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Anake foi o pai de uma raça de gigantes conhecida como os:"], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anakins"], ["question_id", 110], ["correct", true], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anakens"], ["question_id", 110], ["correct", false], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anakakins"], ["question_id", 110], ["correct", false], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anakakens"], ["question_id", 110], ["correct", false], ["created_at", 2016-08-19 02:46:13 UTC], ["updated_at", 2016-08-19 02:46:13 UTC]]  (125.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "André, apóstolo de Jesus, tinha um irmão pescador que também aceitou o chamado de Jesus. Seu nome era:"], ["created_at", 2016-08-19 02:46:14 UTC], ["updated_at", 2016-08-19 02:46:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 111], ["correct", true], ["created_at", 2016-08-19 02:46:14 UTC], ["updated_at", 2016-08-19 02:46:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 111], ["correct", false], ["created_at", 2016-08-19 02:46:14 UTC], ["updated_at", 2016-08-19 02:46:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 111], ["correct", false], ["created_at", 2016-08-19 02:46:14 UTC], ["updated_at", 2016-08-19 02:46:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas"], ["question_id", 111], ["correct", false], ["created_at", 2016-08-19 02:46:14 UTC], ["updated_at", 2016-08-19 02:46:14 UTC]]  (159.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Anrão teve como filhos:"], ["created_at", 2016-08-19 02:46:14 UTC], ["updated_at", 2016-08-19 02:46:14 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todas As Alternativas Estão Corretas"], ["question_id", 112], ["correct", true], ["created_at", 2016-08-19 02:46:14 UTC], ["updated_at", 2016-08-19 02:46:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 112], ["correct", false], ["created_at", 2016-08-19 02:46:14 UTC], ["updated_at", 2016-08-19 02:46:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 112], ["correct", false], ["created_at", 2016-08-19 02:46:14 UTC], ["updated_at", 2016-08-19 02:46:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 112], ["correct", false], ["created_at", 2016-08-19 02:46:14 UTC], ["updated_at", 2016-08-19 02:46:14 UTC]]  (175.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Antes da Páscoa dos judeus, por que os judeus estavam saindo do país e indo para Jerusalém?"], ["created_at", 2016-08-19 02:46:14 UTC], ["updated_at", 2016-08-19 02:46:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Purificação"], ["question_id", 113], ["correct", true], ["created_at", 2016-08-19 02:46:14 UTC], ["updated_at", 2016-08-19 02:46:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Orar Fora do Templo"], ["question_id", 113], ["correct", false], ["created_at", 2016-08-19 02:46:14 UTC], ["updated_at", 2016-08-19 02:46:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Ouvir Jesus Falar"], ["question_id", 113], ["correct", false], ["created_at", 2016-08-19 02:46:14 UTC], ["updated_at", 2016-08-19 02:46:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Haviam Ouvido Falar Sobre Um Tal de Jesus"], ["question_id", 113], ["correct", false], ["created_at", 2016-08-19 02:46:14 UTC], ["updated_at", 2016-08-19 02:46:14 UTC]]  (299.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Antes de casar-se com o rei Assuero, Ester foi criada pelo seu primo:"], ["created_at", 2016-08-19 02:46:14 UTC], ["updated_at", 2016-08-19 02:46:14 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mardoqueu"], ["question_id", 114], ["correct", true], ["created_at", 2016-08-19 02:46:14 UTC], ["updated_at", 2016-08-19 02:46:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hamã"], ["question_id", 114], ["correct", false], ["created_at", 2016-08-19 02:46:14 UTC], ["updated_at", 2016-08-19 02:46:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Natã"], ["question_id", 114], ["correct", false], ["created_at", 2016-08-19 02:46:14 UTC], ["updated_at", 2016-08-19 02:46:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 114], ["correct", false], ["created_at", 2016-08-19 02:46:14 UTC], ["updated_at", 2016-08-19 02:46:14 UTC]]  (149.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Antes de desertar para o lado de Absalão, a quem o influente Aitofel servia como conselheiro?"], ["created_at", 2016-08-19 02:46:14 UTC], ["updated_at", 2016-08-19 02:46:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 115], ["correct", true], ["created_at", 2016-08-19 02:46:14 UTC], ["updated_at", 2016-08-19 02:46:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 115], ["correct", false], ["created_at", 2016-08-19 02:46:14 UTC], ["updated_at", 2016-08-19 02:46:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zedequias"], ["question_id", 115], ["correct", false], ["created_at", 2016-08-19 02:46:14 UTC], ["updated_at", 2016-08-19 02:46:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josias"], ["question_id", 115], ["correct", false], ["created_at", 2016-08-19 02:46:14 UTC], ["updated_at", 2016-08-19 02:46:14 UTC]]  (191.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Antes de Paulo ir da cidade de Filipos à cidade de Trôade, qual festividade foi celebrada?"], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dia dos Pães Asmos"], ["question_id", 116], ["correct", true], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Festividades das Tendas"], ["question_id", 116], ["correct", false], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dia da Ressureição de Jesus"], ["question_id", 116], ["correct", false], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Festividade da Libertação da Escravidão"], ["question_id", 116], ["correct", false], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]]  (116.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Antes de ser curado de sua cegueira, o que Bartimeu estava fazendo na estrada próximo a Jericó?"], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedia Esmolas"], ["question_id", 117], ["correct", true], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dava Água Aos Cansados"], ["question_id", 117], ["correct", false], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dormia"], ["question_id", 117], ["correct", false], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ensinava Os Viajantes O Caminho Para Jericó"], ["question_id", 117], ["correct", false], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]]  (117.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Antes de tentar tirar um argueiro do olho ne nosso irmão, o que devemos tirar de nosso próprio olho?"], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Trava"], ["question_id", 118], ["correct", true], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Poeira"], ["question_id", 118], ["correct", false], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Pedaço de Vidro"], ["question_id", 118], ["correct", false], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Catarata"], ["question_id", 118], ["correct", false], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]]  (150.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Antes de ungir os pés de Jesus, o que a mulher pecadora fez com os seus pés?"], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Beijou-os"], ["question_id", 119], ["correct", true], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lavou-os"], ["question_id", 119], ["correct", false], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esfregou-os"], ["question_id", 119], ["correct", false], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esbofeteou-os"], ["question_id", 119], ["correct", false], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]]  (184.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Antes do povo de Israel gritar para que os muros da cidade de Jericó caíssem, qual instrumento eles tocaram?"], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trombetas"], ["question_id", 120], ["correct", true], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cítaras"], ["question_id", 120], ["correct", false], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tambores de Guerra"], ["question_id", 120], ["correct", false], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Flautas"], ["question_id", 120], ["correct", false], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]]  (142.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Anualmente, Pôncio Pilatos:"], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Libertava Um Prisioneiro"], ["question_id", 121], ["correct", true], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dava Uma Festa Em Comemoração Ao Seu Aniversário"], ["question_id", 121], ["correct", false], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matava Um Agitador"], ["question_id", 121], ["correct", false], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Casava-se Com Uma Nova Esposa"], ["question_id", 121], ["correct", false], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]]  (167.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Ao final dos 10 dias que durou o perído de testes da alimentação de Daniel e seus amigos, como eles estavam?"], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mais Saudáveis e Robustos"], ["question_id", 122], ["correct", true], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obesos"], ["question_id", 122], ["correct", false], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anêmicos"], ["question_id", 122], ["correct", false], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Doentes"], ["question_id", 122], ["correct", false], ["created_at", 2016-08-19 02:46:15 UTC], ["updated_at", 2016-08-19 02:46:15 UTC]]  (158.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Ao receber a visão de um lençol cheio de animais, o que Deus disse a Pedro?"], ["created_at", 2016-08-19 02:46:16 UTC], ["updated_at", 2016-08-19 02:46:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Levanta-te, Pedro, Mata e Come!"], ["question_id", 123], ["correct", true], ["created_at", 2016-08-19 02:46:16 UTC], ["updated_at", 2016-08-19 02:46:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cuidado, Pedro, Com Estes Animais!"], ["question_id", 123], ["correct", false], ["created_at", 2016-08-19 02:46:16 UTC], ["updated_at", 2016-08-19 02:46:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Toma, Pedro, e Leve-os Aos Seus Donos."], ["question_id", 123], ["correct", false], ["created_at", 2016-08-19 02:46:16 UTC], ["updated_at", 2016-08-19 02:46:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pastoreie Estes Animais Como As Ovelhas!"], ["question_id", 123], ["correct", false], ["created_at", 2016-08-19 02:46:16 UTC], ["updated_at", 2016-08-19 02:46:16 UTC]]  (116.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Ao ver Jesus ser levado preso à presença de Pôncio Pilatos, como Judas se sentiu?"], ["created_at", 2016-08-19 02:46:16 UTC], ["updated_at", 2016-08-19 02:46:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arrependido"], ["question_id", 124], ["correct", true], ["created_at", 2016-08-19 02:46:16 UTC], ["updated_at", 2016-08-19 02:46:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amedrontado"], ["question_id", 124], ["correct", false], ["created_at", 2016-08-19 02:46:16 UTC], ["updated_at", 2016-08-19 02:46:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vingado"], ["question_id", 124], ["correct", false], ["created_at", 2016-08-19 02:46:16 UTC], ["updated_at", 2016-08-19 02:46:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eufórico"], ["question_id", 124], ["correct", false], ["created_at", 2016-08-19 02:46:16 UTC], ["updated_at", 2016-08-19 02:46:16 UTC]]  (133.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Aonde a rainha de Sabá foi visitar o rei Salomão?"], ["created_at", 2016-08-19 02:46:16 UTC], ["updated_at", 2016-08-19 02:46:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 125], ["correct", true], ["created_at", 2016-08-19 02:46:16 UTC], ["updated_at", 2016-08-19 02:46:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nínive"], ["question_id", 125], ["correct", false], ["created_at", 2016-08-19 02:46:16 UTC], ["updated_at", 2016-08-19 02:46:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ur dos Caldeus"], ["question_id", 125], ["correct", false], ["created_at", 2016-08-19 02:46:16 UTC], ["updated_at", 2016-08-19 02:46:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Canaã"], ["question_id", 125], ["correct", false], ["created_at", 2016-08-19 02:46:16 UTC], ["updated_at", 2016-08-19 02:46:16 UTC]]  (142.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Aos cidadãos de Israel Absalão deu:"], ["created_at", 2016-08-19 02:46:16 UTC], ["updated_at", 2016-08-19 02:46:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Beijos Políticos"], ["question_id", 126], ["correct", true], ["created_at", 2016-08-19 02:46:16 UTC], ["updated_at", 2016-08-19 02:46:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dinheiro"], ["question_id", 126], ["correct", false], ["created_at", 2016-08-19 02:46:16 UTC], ["updated_at", 2016-08-19 02:46:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Propriedades"], ["question_id", 126], ["correct", false], ["created_at", 2016-08-19 02:46:16 UTC], ["updated_at", 2016-08-19 02:46:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Água"], ["question_id", 126], ["correct", false], ["created_at", 2016-08-19 02:46:16 UTC], ["updated_at", 2016-08-19 02:46:16 UTC]]  (142.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Apesar de Elias ter sido um profeta de Deus, quem ainda assim tentou matá-lo?"], ["created_at", 2016-08-19 02:46:16 UTC], ["updated_at", 2016-08-19 02:46:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rainha Jezabel"], ["question_id", 127], ["correct", true], ["created_at", 2016-08-19 02:46:16 UTC], ["updated_at", 2016-08-19 02:46:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Baal"], ["question_id", 127], ["correct", false], ["created_at", 2016-08-19 02:46:16 UTC], ["updated_at", 2016-08-19 02:46:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Natã"], ["question_id", 127], ["correct", false], ["created_at", 2016-08-19 02:46:16 UTC], ["updated_at", 2016-08-19 02:46:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei Nabucodonosor"], ["question_id", 127], ["correct", false], ["created_at", 2016-08-19 02:46:16 UTC], ["updated_at", 2016-08-19 02:46:16 UTC]]  (116.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Apesar de ter sido ressuscitado por Jesus, quem estava pretendendo matar Lázaro novamente?"], ["created_at", 2016-08-19 02:46:16 UTC], ["updated_at", 2016-08-19 02:46:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sumos Sacerdotes"], ["question_id", 128], ["correct", true], ["created_at", 2016-08-19 02:46:16 UTC], ["updated_at", 2016-08-19 02:46:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas Iscariotes"], ["question_id", 128], ["correct", false], ["created_at", 2016-08-19 02:46:16 UTC], ["updated_at", 2016-08-19 02:46:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 128], ["correct", false], ["created_at", 2016-08-19 02:46:16 UTC], ["updated_at", 2016-08-19 02:46:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "César Augusto"], ["question_id", 128], ["correct", false], ["created_at", 2016-08-19 02:46:16 UTC], ["updated_at", 2016-08-19 02:46:16 UTC]]  (158.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após a água virar sangue, como os egípcios conseguiram água fresca?"], ["created_at", 2016-08-19 02:46:17 UTC], ["updated_at", 2016-08-19 02:46:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cavando Junto Ao Rio Nilo"], ["question_id", 129], ["correct", true], ["created_at", 2016-08-19 02:46:17 UTC], ["updated_at", 2016-08-19 02:46:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fervendo O Sangue"], ["question_id", 129], ["correct", false], ["created_at", 2016-08-19 02:46:17 UTC], ["updated_at", 2016-08-19 02:46:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Havia Água Fresca"], ["question_id", 129], ["correct", false], ["created_at", 2016-08-19 02:46:17 UTC], ["updated_at", 2016-08-19 02:46:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cavando Poços Longe do Rio Nilo"], ["question_id", 129], ["correct", false], ["created_at", 2016-08-19 02:46:17 UTC], ["updated_at", 2016-08-19 02:46:17 UTC]]  (134.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após a Arca da Aliança ter sido colocada no Templo de Jerusalém, o mesmo encheu-se de:"], ["created_at", 2016-08-19 02:46:17 UTC], ["updated_at", 2016-08-19 02:46:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Nuvem"], ["question_id", 130], ["correct", true], ["created_at", 2016-08-19 02:46:17 UTC], ["updated_at", 2016-08-19 02:46:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Fumaça"], ["question_id", 130], ["correct", false], ["created_at", 2016-08-19 02:46:17 UTC], ["updated_at", 2016-08-19 02:46:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Labaredas de Fogo"], ["question_id", 130], ["correct", false], ["created_at", 2016-08-19 02:46:17 UTC], ["updated_at", 2016-08-19 02:46:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Música"], ["question_id", 130], ["correct", false], ["created_at", 2016-08-19 02:46:17 UTC], ["updated_at", 2016-08-19 02:46:17 UTC]]  (100.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após a destruição dos rebeldes, como o povo israelita reagiu?"], ["created_at", 2016-08-19 02:46:17 UTC], ["updated_at", 2016-08-19 02:46:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Resmungaram"], ["question_id", 131], ["correct", true], ["created_at", 2016-08-19 02:46:17 UTC], ["updated_at", 2016-08-19 02:46:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ficaram Satisfeitos"], ["question_id", 131], ["correct", false], ["created_at", 2016-08-19 02:46:17 UTC], ["updated_at", 2016-08-19 02:46:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ficaram Amedrontados"], ["question_id", 131], ["correct", false], ["created_at", 2016-08-19 02:46:17 UTC], ["updated_at", 2016-08-19 02:46:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amaldiçoaram Moisés"], ["question_id", 131], ["correct", false], ["created_at", 2016-08-19 02:46:17 UTC], ["updated_at", 2016-08-19 02:46:17 UTC]]  (153.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após a divisão do reino, em qual cidade Jeroboão, Rei das tribos do norte, fez sua morada?"], ["created_at", 2016-08-19 02:46:17 UTC], ["updated_at", 2016-08-19 02:46:17 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Siquém"], ["question_id", 132], ["correct", true], ["created_at", 2016-08-19 02:46:17 UTC], ["updated_at", 2016-08-19 02:46:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Damasco"], ["question_id", 132], ["correct", false], ["created_at", 2016-08-19 02:46:17 UTC], ["updated_at", 2016-08-19 02:46:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jericó"], ["question_id", 132], ["correct", false], ["created_at", 2016-08-19 02:46:17 UTC], ["updated_at", 2016-08-19 02:46:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cades"], ["question_id", 132], ["correct", false], ["created_at", 2016-08-19 02:46:17 UTC], ["updated_at", 2016-08-19 02:46:17 UTC]]  (283.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após a interpretação dos seus sonhos, o rei Nabucodonosor deu a Daniel qual cargo?"], ["created_at", 2016-08-19 02:46:17 UTC], ["updated_at", 2016-08-19 02:46:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Governador da Babilônia"], ["question_id", 133], ["correct", true], ["created_at", 2016-08-19 02:46:17 UTC], ["updated_at", 2016-08-19 02:46:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Governador dos Eunucos"], ["question_id", 133], ["correct", false], ["created_at", 2016-08-19 02:46:17 UTC], ["updated_at", 2016-08-19 02:46:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Governador dos Escravos de Todas As Nações"], ["question_id", 133], ["correct", false], ["created_at", 2016-08-19 02:46:17 UTC], ["updated_at", 2016-08-19 02:46:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Governador Apenas dos Escravos Hebreus"], ["question_id", 133], ["correct", false], ["created_at", 2016-08-19 02:46:17 UTC], ["updated_at", 2016-08-19 02:46:17 UTC]]  (149.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após a luta com Deus, Jacó passou a se chamar:"], ["created_at", 2016-08-19 02:46:17 UTC], ["updated_at", 2016-08-19 02:46:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Israel"], ["question_id", 134], ["correct", true], ["created_at", 2016-08-19 02:46:17 UTC], ["updated_at", 2016-08-19 02:46:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 134], ["correct", false], ["created_at", 2016-08-19 02:46:17 UTC], ["updated_at", 2016-08-19 02:46:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 134], ["correct", false], ["created_at", 2016-08-19 02:46:17 UTC], ["updated_at", 2016-08-19 02:46:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 134], ["correct", false], ["created_at", 2016-08-19 02:46:17 UTC], ["updated_at", 2016-08-19 02:46:17 UTC]]  (124.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após a luta com Deus, o que o anjo deu a Jacó?"], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Novo Nome"], ["question_id", 135], ["correct", true], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Nova Capa"], ["question_id", 135], ["correct", false], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Novo Cabelo"], ["question_id", 135], ["correct", false], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Un Novo Corpo"], ["question_id", 135], ["correct", false], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]]  (116.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após a morte de Herodes, para onde José levou Maria e Jesus?"], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nazaré"], ["question_id", 136], ["correct", true], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 136], ["correct", false], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belém"], ["question_id", 136], ["correct", false], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cafarnaum"], ["question_id", 136], ["correct", false], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]]  (133.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após a morte de quem o rei Davi finalmente teve seu trono restituído?"], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 137], ["correct", true], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Labão"], ["question_id", 137], ["correct", false], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Roboão"], ["question_id", 137], ["correct", false], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeroboão"], ["question_id", 137], ["correct", false], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]]  (192.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após a ressureição de Jesus, durante 40 dias ele:"], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apresentou-se Vivo"], ["question_id", 138], ["correct", true], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Festejou"], ["question_id", 138], ["correct", false], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Visitou Os Fariseus"], ["question_id", 138], ["correct", false], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Tentado No Deserto"], ["question_id", 138], ["correct", false], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]]  (150.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após a ressurreição de Jesus, quem foi subornado para dizer que o seu corpo havia sido levado embora?"], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Soldados"], ["question_id", 139], ["correct", true], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fariseus"], ["question_id", 139], ["correct", false], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Discípulos"], ["question_id", 139], ["correct", false], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Família de Jesus"], ["question_id", 139], ["correct", false], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]]  (158.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após a ressurreição de Jesus, quem subornou os guardas para dizer que o Seu corpo havia sido levado embora?"], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Líderes Judeus"], ["question_id", 140], ["correct", true], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Levitas"], ["question_id", 140], ["correct", false], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Discípulos"], ["question_id", 140], ["correct", false], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Família de Jesus"], ["question_id", 140], ["correct", false], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]]  (117.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após Absalão, quem foi o próximo rebelde a se revoltar contra o governo do rei Davi?"], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sebá"], ["question_id", 141], ["correct", true], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joabe"], ["question_id", 141], ["correct", false], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amsa"], ["question_id", 141], ["correct", false], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samua"], ["question_id", 141], ["correct", false], ["created_at", 2016-08-19 02:46:18 UTC], ["updated_at", 2016-08-19 02:46:18 UTC]]  (116.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após Amnom, filho de Davi, ter fingido estar doente, o que aconteceu a Tamar ao visitá-lo?"], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Estuprada"], ["question_id", 142], ["correct", true], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Recebeu Uma Proposta de Casamento"], ["question_id", 142], ["correct", false], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Recebeu Uma Herança"], ["question_id", 142], ["correct", false], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Morta"], ["question_id", 142], ["correct", false], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]]  (116.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após deixar Raabe, onde os espias enviados por Josué se refugiaram?"], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Monte"], ["question_id", 143], ["correct", true], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Mar"], ["question_id", 143], ["correct", false], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Cidade"], ["question_id", 143], ["correct", false], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Campo"], ["question_id", 143], ["correct", false], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]]  (117.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após Deus ter descido ao Templo de Jerusalém, o que Salomão fez ao povo que estava presente?"], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abençoou-os"], ["question_id", 144], ["correct", true], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Expulsou-os"], ["question_id", 144], ["correct", false], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Festejou Com Eles"], ["question_id", 144], ["correct", false], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irou-se Contra Eles"], ["question_id", 144], ["correct", false], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]]  (126.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após Eliseu ter morrido e sepultado, o que aconteceu ao morto que foi jogado em seu túmulo?"], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Reviveu"], ["question_id", 145], ["correct", true], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Foi Consumido Pelo Fogo"], ["question_id", 145], ["correct", false], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Desapareceu"], ["question_id", 145], ["correct", false], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Foi Comido Pelos Vermes"], ["question_id", 145], ["correct", false], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]]  (149.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após Êutico ter morrido devido à queda de uma janela ao ter adormecido, o que Paulo fêz com ele?"], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ressuscitou-o"], ["question_id", 146], ["correct", true], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mandou Enterrar"], ["question_id", 146], ["correct", false], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mandou Ser Examinado Pelos Sacerdotes"], ["question_id", 146], ["correct", false], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mandou Lavá-lo, Pois Estava Sujo"], ["question_id", 146], ["correct", false], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]]  (124.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após Jael ter acolhido seu inimigo, o que ela fez a ele?"], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matou-o"], ["question_id", 147], ["correct", true], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Casou-se Com Ele"], ["question_id", 147], ["correct", false], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apaixonou-se"], ["question_id", 147], ["correct", false], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Expulsou-o de Casa"], ["question_id", 147], ["correct", false], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]]  (116.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após Jesus ter montado no jumento, o que os discípulos colocaram à Sua frente na estrada?"], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Suas Capas"], ["question_id", 148], ["correct", true], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Folhas de Palma"], ["question_id", 148], ["correct", false], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Flores"], ["question_id", 148], ["correct", false], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Folhas de Palmeira"], ["question_id", 148], ["correct", false], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]]  (108.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após Jesus ter ressucitado, durante quanto tempo Ele apresentou-se vivo às pessoas?"], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "40 Dias"], ["question_id", 149], ["correct", true], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4 Dias"], ["question_id", 149], ["correct", false], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Semanas"], ["question_id", 149], ["correct", false], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7 Dias"], ["question_id", 149], ["correct", false], ["created_at", 2016-08-19 02:46:19 UTC], ["updated_at", 2016-08-19 02:46:19 UTC]]  (108.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após Noé ter entrado na arca, quanto tempo ainda levou para começar a chover?"], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7 Dias"], ["question_id", 150], ["correct", true], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Noite"], ["question_id", 150], ["correct", false], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Horas"], ["question_id", 150], ["correct", false], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5 Minutos"], ["question_id", 150], ["correct", false], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]]  (116.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após o final do Dilúvio, quanto tempo ainda demorou para a arca de Noé finalmente encostar em terra seca?"], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Muitos Meses"], ["question_id", 151], ["correct", true], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7 Dias"], ["question_id", 151], ["correct", false], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "14 Dias"], ["question_id", 151], ["correct", false], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "40 Dias"], ["question_id", 151], ["correct", false], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]]  (107.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após o rei Davi ter jejuado e orado por 7 dias pela vida do seu filho, o que aconteceu a este?"], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Morreu"], ["question_id", 152], ["correct", true], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tornou A Viver"], ["question_id", 152], ["correct", false], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Ressuscitado"], ["question_id", 152], ["correct", false], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sarou da Enfermidade"], ["question_id", 152], ["correct", false], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]]  (108.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após o retorno do cativeiro da Babilônia, os idosos do povo judeu choraram após terem visto a reconstrução:"], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Alicerce do Templo"], ["question_id", 153], ["correct", true], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Muro da Cidade de Jerusalém"], ["question_id", 153], ["correct", false], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Da Ponte Sobre O Rio Jordão"], ["question_id", 153], ["correct", false], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Palácio Real"], ["question_id", 153], ["correct", false], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]]  (141.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após o Sinédrio ter considerado Jesus culpado por blasfêmia, para onde o levaram?"], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Diante de Pôncio Pilatos"], ["question_id", 154], ["correct", true], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Diante de Herodes"], ["question_id", 154], ["correct", false], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Ser Surrado Pelos Soldados Romanos"], ["question_id", 154], ["correct", false], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Ser Crucificado"], ["question_id", 154], ["correct", false], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]]  (141.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após os filisteus terem aprisionado Sansão, o que obrigaram-no a fazer?"], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Girar O Moinho"], ["question_id", 155], ["correct", true], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Curtir Couro"], ["question_id", 155], ["correct", false], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fabricar Tijolos"], ["question_id", 155], ["correct", false], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Construir Casas"], ["question_id", 155], ["correct", false], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]]  (133.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após Pedro ter sido libertado da prisão por um anjo, Pedro foi para a casa de Maria. Ela era de João Marco:"], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmã"], ["question_id", 156], ["correct", true], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Prima"], ["question_id", 156], ["correct", false], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vizinha"], ["question_id", 156], ["correct", false], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tia"], ["question_id", 156], ["correct", false], ["created_at", 2016-08-19 02:46:20 UTC], ["updated_at", 2016-08-19 02:46:20 UTC]]  (117.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após Pedro ter sido libertado da prisão por um anjo, Pedro foi para a casa de Maria:"], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmã de João Marco"], ["question_id", 157], ["correct", true], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmã de Marta"], ["question_id", 157], ["correct", false], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Madalena"], ["question_id", 157], ["correct", false], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mãe de Jesus"], ["question_id", 157], ["correct", false], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]]  (243.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após ter arrancado as portas de entrada da cidade de Gaza, para onde Sansão as levou?"], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para O Cume de Um Monte"], ["question_id", 158], ["correct", true], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para O Templo Pagão"], ["question_id", 158], ["correct", false], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Uma Plantação de Milho"], ["question_id", 158], ["correct", false], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para O Mar"], ["question_id", 158], ["correct", false], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]]  (126.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após ter brotado, a vara de Arão produziu:"], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amêndoas"], ["question_id", 159], ["correct", true], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Figos"], ["question_id", 159], ["correct", false], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Limões"], ["question_id", 159], ["correct", false], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Damascos"], ["question_id", 159], ["correct", false], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]]  (116.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após ter conversado com Jesus, o que Pôncio Pilatos quis fazer com Jesus?"], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Libertá-lo"], ["question_id", 160], ["correct", true], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aprisioná-lo"], ["question_id", 160], ["correct", false], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matá-lo"], ["question_id", 160], ["correct", false], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Açoitá-lo"], ["question_id", 160], ["correct", false], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]]  (157.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após ter matado a Amnom, para qual cidade Absalão fugiu?"], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gesur"], ["question_id", 161], ["correct", true], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gomorra"], ["question_id", 161], ["correct", false], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nínive"], ["question_id", 161], ["correct", false], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jericó"], ["question_id", 161], ["correct", false], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]]  (141.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após ter passado pela Macedônia e ido à Grécia, qual era o próximo destino que Paulo planejava ir?"], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Síria"], ["question_id", 162], ["correct", true], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filipos"], ["question_id", 162], ["correct", false], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trôade"], ["question_id", 162], ["correct", false], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tessalônica"], ["question_id", 162], ["correct", false], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]]  (116.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após ter passado pela Macedônia, qual apóstolo ficou 3 meses na Grécia?"], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 163], ["correct", true], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 163], ["correct", false], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 163], ["correct", false], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 163], ["correct", false], ["created_at", 2016-08-19 02:46:21 UTC], ["updated_at", 2016-08-19 02:46:21 UTC]]  (125.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após ter passado pela Macedônia, qual foi o próximo destino de Paulo?"], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Grécia"], ["question_id", 164], ["correct", true], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Roma"], ["question_id", 164], ["correct", false], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ilha de Patmos"], ["question_id", 164], ["correct", false], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tessalônica"], ["question_id", 164], ["correct", false], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]]  (134.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após ter sido cercado pelo exército babilônico pela 3ª vez, o que o rei Zedequias tentou fazer?"], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escapar"], ["question_id", 165], ["correct", true], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Acordo Com Nabucodonosor"], ["question_id", 165], ["correct", false], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Suicidar"], ["question_id", 165], ["correct", false], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oferecer Toda A Família Real Como Escravo"], ["question_id", 165], ["correct", false], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]]  (133.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após ter sido construída, que ordens o rei Nabucodonosor deu ao seu povo com relação à estátua?"], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Devia Ser Louvada"], ["question_id", 166], ["correct", true], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Devia Ser Lavada"], ["question_id", 166], ["correct", false], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Devia Ser Derretida"], ["question_id", 166], ["correct", false], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Devia Ser Transportada Pelos Escravos"], ["question_id", 166], ["correct", false], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]]  (116.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após ter sido curado da cegueira, qual foi o novo nome de Saulo?"], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 167], ["correct", true], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "André"], ["question_id", 167], ["correct", false], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 167], ["correct", false], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 167], ["correct", false], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]]  (109.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após ter sido nomeado governador do Egito, José possuia um cargo de alto-escalão, apenas abaixo do:"], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Próprio Faraó"], ["question_id", 168], ["correct", true], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Presidente do Egito"], ["question_id", 168], ["correct", false], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Primeiro-ministro do Egito"], ["question_id", 168], ["correct", false], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rainha do Egito"], ["question_id", 168], ["correct", false], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]]  (117.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após ter soltado a pomba pela 3ª vez e ela não ter retornado à arca, o que Noé concluiu?"], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Já Havia Terra Seca"], ["question_id", 169], ["correct", true], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Ela Morreu Afogada No Mar"], ["question_id", 169], ["correct", false], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Ela Se Perdeu"], ["question_id", 169], ["correct", false], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Ela Foi Devorada Por Um Grande Peixe"], ["question_id", 169], ["correct", false], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]]  (176.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após ter traído Jesus por dinheiro e ter-se arrependido, a quem Judas tentou devolver o dinheiro?"], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Sumos-sacerdotes"], ["question_id", 170], ["correct", true], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Fariseus"], ["question_id", 170], ["correct", false], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Soldados Romanos"], ["question_id", 170], ["correct", false], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Imperador Romano"], ["question_id", 170], ["correct", false], ["created_at", 2016-08-19 02:46:22 UTC], ["updated_at", 2016-08-19 02:46:22 UTC]]  (135.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após ter traído Jesus, Judas Iscariotes arrependeu-se e suicidou-se:"], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Enforcando-se"], ["question_id", 171], ["correct", true], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Degolando-se"], ["question_id", 171], ["correct", false], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Atirando-se do Monte Carmelo"], ["question_id", 171], ["correct", false], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Morrendo Afogado No Mar Morto"], ["question_id", 171], ["correct", false], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]]  (133.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após ter vestido os panos de saco, o rei Nínive sentou sobre:"], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cinzas"], ["question_id", 172], ["correct", true], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lombo de Mula"], ["question_id", 172], ["correct", false], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esterco de Porco"], ["question_id", 172], ["correct", false], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Espinhos"], ["question_id", 172], ["correct", false], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]]  (125.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após ter visitado a Macedônia e a Grécia, Paulo desejava ir para a Síria. Qual motivo levou Paulo a retornar à Macedônia?"], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Cilada Contra Sua Vida"], ["question_id", 173], ["correct", true], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Silas Estava Na Macedônia"], ["question_id", 173], ["correct", false], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mandaram Chamá-lo"], ["question_id", 173], ["correct", false], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Problemas de Doença"], ["question_id", 173], ["correct", false], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]]  (133.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após terem cruzado o rio Jordão, em que local os israelitas pararam pela 1ª vez?"], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gilgal"], ["question_id", 174], ["correct", true], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Qumram"], ["question_id", 174], ["correct", false], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Efraim"], ["question_id", 174], ["correct", false], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jericó"], ["question_id", 174], ["correct", false], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]]  (159.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após terem espancado Jesus, o que os soldados romanos fizeram com a cana que haviam colocado em Suas mãos?"], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bateram Em Sua Cabeça"], ["question_id", 175], ["correct", true], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quebraram Seu Braço"], ["question_id", 175], ["correct", false], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esmagaram Seus Dedos"], ["question_id", 175], ["correct", false], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quebraram Sua Perna"], ["question_id", 175], ["correct", false], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]]  (143.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após terem visitado o menino Jesus, como eles foram alertados para que não voltassem a Herodes?"], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiveram Um Sonho"], ["question_id", 176], ["correct", true], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José Os Advertiu"], ["question_id", 176], ["correct", false], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Receberam Uma Carta"], ["question_id", 176], ["correct", false], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Receberam Um Mensageiro"], ["question_id", 176], ["correct", false], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]]  (120.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após terem visitado o menino Jesus, quem foi advertido para que não fossem novamente a Herodes?"], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Reis Magos"], ["question_id", 177], ["correct", true], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Pastores de Ovelhas"], ["question_id", 177], ["correct", false], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José e Maria"], ["question_id", 177], ["correct", false], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Anjos Celestes"], ["question_id", 177], ["correct", false], ["created_at", 2016-08-19 02:46:23 UTC], ["updated_at", 2016-08-19 02:46:23 UTC]]  (95.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Arão, chefe de uma das tribos de Israel, era o líder de qual tribo?"], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Levi"], ["question_id", 178], ["correct", true], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judá"], ["question_id", 178], ["correct", false], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Benjamim"], ["question_id", 178], ["correct", false], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rúben"], ["question_id", 178], ["correct", false], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]]  (120.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "As cinzas do forno foram utilizadas por Moisés e Arão para enviar contra os egípcios a praga dos:"], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tumores"], ["question_id", 179], ["correct", true], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gafanhotos"], ["question_id", 179], ["correct", false], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Morte do Primogênito"], ["question_id", 179], ["correct", false], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moscas"], ["question_id", 179], ["correct", false], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]]  (112.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "As doze tribos de Israel nasceram através do casamento da linhagem de:"], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 180], ["correct", true], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 180], ["correct", false], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mefibosete"], ["question_id", 180], ["correct", false], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 180], ["correct", false], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]]  (120.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "As portas de qual cidade Sansão arrancou e levou para o cume de um monte?"], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gaza"], ["question_id", 181], ["correct", true], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Efraim"], ["question_id", 181], ["correct", false], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jafé"], ["question_id", 181], ["correct", false], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jericó"], ["question_id", 181], ["correct", false], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]]  (120.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "As roupas confeccionadas com pêlo de camelo foram usadas por:"], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 182], ["correct", true], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 182], ["correct", false], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes"], ["question_id", 182], ["correct", false], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 182], ["correct", false], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]]  (112.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Assim que Moisés desceu do Monte Sinai pela 1ª vez e viu que o povo estava adorando um ídolo, o que Moisés fez?"], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quebrou As Tábuas da Lei de Deus"], ["question_id", 183], ["correct", true], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mandou Matar Quem Construiu O Ídolo"], ["question_id", 183], ["correct", false], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mandou Derreter O Ídolo"], ["question_id", 183], ["correct", false], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fugiu do Acampamento Para Nunca Mais Voltar"], ["question_id", 183], ["correct", false], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]]  (112.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Atalia tentou destruir o rei Jeoás. Qual era o grau de parentesco entre eles?"], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Avó e Neto"], ["question_id", 184], ["correct", true], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tia e Sobrinho"], ["question_id", 184], ["correct", false], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mãe e Filho"], ["question_id", 184], ["correct", false], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filha e Pai"], ["question_id", 184], ["correct", false], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]]  (105.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Através de uma estrela, os Reis Magos foram levados até:"], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Menino Jesus"], ["question_id", 185], ["correct", true], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arca de Noé"], ["question_id", 185], ["correct", false], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Palácio do Faraó"], ["question_id", 185], ["correct", false], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ilha de Patmos"], ["question_id", 185], ["correct", false], ["created_at", 2016-08-19 02:46:24 UTC], ["updated_at", 2016-08-19 02:46:24 UTC]]  (104.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Baal era um deus cultuado pelo povo da terra de:"], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Canaã"], ["question_id", 186], ["correct", true], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egito"], ["question_id", 186], ["correct", false], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônia"], ["question_id", 186], ["correct", false], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Grécia"], ["question_id", 186], ["correct", false], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]]  (112.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Balaão estava sentado em uma jumenta quando lhe apareceu:"], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Anjo Com A Espada Desembainhada"], ["question_id", 187], ["correct", true], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Pelotão de Soldados"], ["question_id", 187], ["correct", false], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Rei Inimigo"], ["question_id", 187], ["correct", false], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Profeta de Deus"], ["question_id", 187], ["correct", false], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]]  (104.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Balaão tinha um burro que chegou a falar após ter visto:"], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Anjo de Deus"], ["question_id", 188], ["correct", true], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Próprio Deus"], ["question_id", 188], ["correct", false], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Satanás"], ["question_id", 188], ["correct", false], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Balaão Dormindo"], ["question_id", 188], ["correct", false], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]]  (160.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Baraque, comandante de Israel, disse que só iria à batalha se fosse acompanhado por:"], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Mulher"], ["question_id", 189], ["correct", true], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Rei"], ["question_id", 189], ["correct", false], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deus"], ["question_id", 189], ["correct", false], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anjos"], ["question_id", 189], ["correct", false], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]]  (149.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Bate-Seba foi casada com o oficial:"], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Urias"], ["question_id", 190], ["correct", true], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Naamã"], ["question_id", 190], ["correct", false], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Natã"], ["question_id", 190], ["correct", false], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiglete-pileser"], ["question_id", 190], ["correct", false], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]]  (145.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Bate-Seba pediu ao rei Davi para que escolhesse qual filho para lhe suceder no trono real?"], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 191], ["correct", true], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sobabe"], ["question_id", 191], ["correct", false], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adonias"], ["question_id", 191], ["correct", false], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samua"], ["question_id", 191], ["correct", false], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]]  (132.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Betuel foi o pai de:"], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 192], ["correct", true], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sara"], ["question_id", 192], ["correct", false], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Raabe"], ["question_id", 192], ["correct", false], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jezabel"], ["question_id", 192], ["correct", false], ["created_at", 2016-08-19 02:46:25 UTC], ["updated_at", 2016-08-19 02:46:25 UTC]]  (199.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Cafarnaum era a cidade natal dos discípulos:"], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro e André"], ["question_id", 193], ["correct", true], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 193], ["correct", false], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas"], ["question_id", 193], ["correct", false], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 193], ["correct", false], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]]  (133.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Cão, Sem e Jafé são filhos de:"], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noé"], ["question_id", 194], ["correct", true], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adão"], ["question_id", 194], ["correct", false], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 194], ["correct", false], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 194], ["correct", false], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]]  (109.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Certa noite, em uma caverna, Jacó lutou contra:"], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deus"], ["question_id", 195], ["correct", true], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 195], ["correct", false], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 195], ["correct", false], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Satanás"], ["question_id", 195], ["correct", false], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]]  (108.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Certa vez, o ferro de um machado caiu acidentalmente em um lago. Quem orou que fez com que o ferro voltasse à tona?"], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]] SQL (0.4ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 196], ["correct", true], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 196], ["correct", false], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 196], ["correct", false], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Enoque"], ["question_id", 196], ["correct", false], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]]  (116.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Com o que a cesta onde Moisés foi depositado era coberto, para que a esta não afundasse?"], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Betume"], ["question_id", 197], ["correct", true], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Argila"], ["question_id", 197], ["correct", false], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Prata"], ["question_id", 197], ["correct", false], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Madeira"], ["question_id", 197], ["correct", false], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]]  (141.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Com o que Maria envolveu o menino Jesus?"], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Com Faixas"], ["question_id", 198], ["correct", true], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Com Manto"], ["question_id", 198], ["correct", false], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Com Uma Túnica"], ["question_id", 198], ["correct", false], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Com Palhas"], ["question_id", 198], ["correct", false], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]]  (147.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Com o que os soldados romanos bateram na cabeça de Jesus?"], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cana"], ["question_id", 199], ["correct", true], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Madeira"], ["question_id", 199], ["correct", false], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porrete"], ["question_id", 199], ["correct", false], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ferro"], ["question_id", 199], ["correct", false], ["created_at", 2016-08-19 02:46:26 UTC], ["updated_at", 2016-08-19 02:46:26 UTC]]  (116.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Com o que Sansão matou 1.000 filisteus?"], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Queixada de Jumento"], ["question_id", 200], ["correct", true], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arco e Flecha"], ["question_id", 200], ["correct", false], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Água Fervente"], ["question_id", 200], ["correct", false], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bolas de Fogo"], ["question_id", 200], ["correct", false], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]]  (108.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Com o seu exército, Nabucodonosor derrubou os muros de:"], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 201], ["correct", true], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jericó"], ["question_id", 201], ["correct", false], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Atenas"], ["question_id", 201], ["correct", false], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ur"], ["question_id", 201], ["correct", false], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]]  (115.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Com qual deus grego Barnabé foi confundido, enquanto estava com Paulo na cidade de Listra?"], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Júpiter"], ["question_id", 202], ["correct", true], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mercúrio"], ["question_id", 202], ["correct", false], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zeus"], ["question_id", 202], ["correct", false], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Baco"], ["question_id", 202], ["correct", false], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]]  (116.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Com qual deus grego Paulo foi confundido quanto encontrava-se na cidade de Listra?"], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mercúrio"], ["question_id", 203], ["correct", true], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Poseidon"], ["question_id", 203], ["correct", false], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zeus"], ["question_id", 203], ["correct", false], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Agatha"], ["question_id", 203], ["correct", false], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]]  (116.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Com qual idade Jeoás passou a reinar sobre a nação israelita?"], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7 Anos"], ["question_id", 204], ["correct", true], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12 Anos"], ["question_id", 204], ["correct", false], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "25 Anos"], ["question_id", 204], ["correct", false], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10 Anos"], ["question_id", 204], ["correct", false], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]]  (107.9ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Com quantos dias de vida Jesus foi circuncidado?"], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "8"], ["question_id", 205], ["correct", true], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "14"], ["question_id", 205], ["correct", false], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 205], ["correct", false], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "30"], ["question_id", 205], ["correct", false], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]]  (116.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Com quantos dias deveria ser circuncidado um menino recém nascido?"], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "8"], ["question_id", 206], ["correct", true], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 206], ["correct", false], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "15"], ["question_id", 206], ["correct", false], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "35"], ["question_id", 206], ["correct", false], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]]  (116.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Com que espécie de madeira foi construída a arca?"], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cipreste"], ["question_id", 207], ["correct", true], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zimbro"], ["question_id", 207], ["correct", false], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cedro do Líbano"], ["question_id", 207], ["correct", false], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salgueiro"], ["question_id", 207], ["correct", false], ["created_at", 2016-08-19 02:46:27 UTC], ["updated_at", 2016-08-19 02:46:27 UTC]]  (116.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Com que material Noé revestiu a arca, tanto internamente quanto externamente?"], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Betume"], ["question_id", 208], ["correct", true], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Barro"], ["question_id", 208], ["correct", false], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gordura"], ["question_id", 208], ["correct", false], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Óleo Vegetal"], ["question_id", 208], ["correct", false], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]]  (125.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Com quem a rainha Vasti era casada?"], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assuero"], ["question_id", 209], ["correct", true], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 209], ["correct", false], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 209], ["correct", false], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belsazar"], ["question_id", 209], ["correct", false], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]]  (125.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Com quem Zípora e Jetro tinham um grau de parentesco em comum?"], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 210], ["correct", true], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 210], ["correct", false], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 210], ["correct", false], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Levi"], ["question_id", 210], ["correct", false], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]]  (124.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Com relação a Jesus, ao invés de quebrar as Suas pernas, o que os soldados romanos fizeram?"], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Perfuraram-no Com Uma Lança"], ["question_id", 211], ["correct", true], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Furaram Seus Olhos"], ["question_id", 211], ["correct", false], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Disseram: \"este É Realmente O Filho de Deus!\""], ["question_id", 211], ["correct", false], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Despiram-no"], ["question_id", 211], ["correct", false], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]]  (116.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Com relação à rebelião de Corá, Datã e Abirão, que fez com que o chão os engolisse?"], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deus"], ["question_id", 212], ["correct", true], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 212], ["correct", false], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 212], ["correct", false], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 212], ["correct", false], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]]  (124.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como as árvores utilizadas na construção do Templo de Salomão foram transportadas do Líbano para a Palestina?"], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Através de Jangadas"], ["question_id", 213], ["correct", true], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Através de Navios"], ["question_id", 213], ["correct", false], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Através de Carros de Boi"], ["question_id", 213], ["correct", false], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Através de Trabalho Escravo"], ["question_id", 213], ["correct", false], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]]  (133.8ms) commit transaction  (0.3ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como Bate-Seba respondeu à notícia de que seu marido Urias havia morrido em batalha?"], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ela Enlutou-se"], ["question_id", 214], ["correct", true], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ela Festejou"], ["question_id", 214], ["correct", false], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ela Ficou Aliviada"], ["question_id", 214], ["correct", false], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ela Se Suicidou"], ["question_id", 214], ["correct", false], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]]  (132.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como Deus lidou com a rebelião de Corá, Datã e Abirão?"], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fez O Chão Engoli-los"], ["question_id", 215], ["correct", true], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lesou-os Com Lepra"], ["question_id", 215], ["correct", false], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Expulsou-os do Acampamento"], ["question_id", 215], ["correct", false], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arrancou-lhes Suas Línguas"], ["question_id", 215], ["correct", false], ["created_at", 2016-08-19 02:46:28 UTC], ["updated_at", 2016-08-19 02:46:28 UTC]]  (142.1ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como é conhecido o dia de descanso dos judeus?"], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sábado"], ["question_id", 216], ["correct", true], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Sétima Lua Nova"], ["question_id", 216], ["correct", false], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Dia da Expiação"], ["question_id", 216], ["correct", false], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1º Dia da Semana"], ["question_id", 216], ["correct", false], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]]  (115.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como era o nome da esposa de Áquila, que auxiliou no ministério de Paulo?"], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Priscila"], ["question_id", 217], ["correct", true], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 217], ["correct", false], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jezabel"], ["question_id", 217], ["correct", false], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria Madalena"], ["question_id", 217], ["correct", false], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]]  (116.9ms) commit transaction  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como era o nome da esposa do rei Acazias, que desejava matar a Elias?"], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jezabel"], ["question_id", 218], ["correct", true], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hilquina"], ["question_id", 218], ["correct", false], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ezequiela"], ["question_id", 218], ["correct", false], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josiana"], ["question_id", 218], ["correct", false], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]]  (124.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como Israel comemorou a passagem pelo Mar Vermelho?"], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Com Cânticos"], ["question_id", 219], ["correct", true], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Com Jejum"], ["question_id", 219], ["correct", false], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Com Sacrifício de Animais"], ["question_id", 219], ["correct", false], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Com Ceia de Páscoa"], ["question_id", 219], ["correct", false], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]]  (115.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como João Batista morreu?"], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Decapitado"], ["question_id", 220], ["correct", true], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Enforcado"], ["question_id", 220], ["correct", false], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Queimado"], ["question_id", 220], ["correct", false], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Enterrado Vivo"], ["question_id", 220], ["correct", false], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]]  (108.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como o rei Davi foi punido pelo fato de ter cometido adultério e assassinato?"], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Filho Morreu"], ["question_id", 221], ["correct", true], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Amante Morreu"], ["question_id", 221], ["correct", false], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Pai Morreu"], ["question_id", 221], ["correct", false], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Mãe Morreu"], ["question_id", 221], ["correct", false], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]]  (117.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como o rei Davi respondeu às acusações do profeta Namã?"], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arrependeu-se"], ["question_id", 222], ["correct", true], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irou-se"], ["question_id", 222], ["correct", false], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matou O Profeta"], ["question_id", 222], ["correct", false], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Festejou"], ["question_id", 222], ["correct", false], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]]  (116.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como o rei Nabucodonosor reagiu após Deus ter dado a Daniel a interpretação correta dos sonhos do rei?"], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Abaixou-se A Louvou A Daniel"], ["question_id", 223], ["correct", true], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Ficou Irado Contra Daniel"], ["question_id", 223], ["correct", false], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Mandou Jogar Daniel Na Cova dos Leões"], ["question_id", 223], ["correct", false], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mandou Construir Uma Enorme Estátua"], ["question_id", 223], ["correct", false], ["created_at", 2016-08-19 02:46:29 UTC], ["updated_at", 2016-08-19 02:46:29 UTC]]  (109.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como os judeus fizeram a dedicação do Templo, quando o processo de reconstrução foi concluído?"], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Com Sacrifícios"], ["question_id", 224], ["correct", true], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Com Jejum"], ["question_id", 224], ["correct", false], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Comemorando Com Danças e Músicas"], ["question_id", 224], ["correct", false], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oferecendo Um Banquete"], ["question_id", 224], ["correct", false], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]]  (157.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como Potifar respondeu à acusação de sua esposa contra José?"], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Colocou-o Na Prisão"], ["question_id", 225], ["correct", true], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matou-o"], ["question_id", 225], ["correct", false], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Expulsou-o"], ["question_id", 225], ["correct", false], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Surrou-o"], ["question_id", 225], ["correct", false], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]]  (141.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como Sansão deveria ser criado por sua mãe?"], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Como Nazireu"], ["question_id", 226], ["correct", true], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Como Sábio"], ["question_id", 226], ["correct", false], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Com Rigor e Disciplina"], ["question_id", 226], ["correct", false], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Com Muita Educação"], ["question_id", 226], ["correct", false], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]]  (141.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como se chamava a esposa de Isaque?"], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 227], ["correct", true], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sara"], ["question_id", 227], ["correct", false], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 227], ["correct", false], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Asenate"], ["question_id", 227], ["correct", false], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]]  (125.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como se chamava a filha de Jacó?"], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Diná"], ["question_id", 228], ["correct", true], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mefibosete"], ["question_id", 228], ["correct", false], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliana"], ["question_id", 228], ["correct", false], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jezabel"], ["question_id", 228], ["correct", false], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]]  (125.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como se chamava a irmã de Moisés?"], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 229], ["correct", true], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mirian"], ["question_id", 229], ["correct", false], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria"], ["question_id", 229], ["correct", false], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 229], ["correct", false], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]]  (124.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como se chamava a mãe de Jesus?"], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria"], ["question_id", 230], ["correct", true], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 230], ["correct", false], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Teresa"], ["question_id", 230], ["correct", false], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isabel"], ["question_id", 230], ["correct", false], ["created_at", 2016-08-19 02:46:30 UTC], ["updated_at", 2016-08-19 02:46:30 UTC]]  (125.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como se chamava o 1º filho de Abraão?"], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 231], ["correct", true], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 231], ["correct", false], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel"], ["question_id", 231], ["correct", false], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mesaque"], ["question_id", 231], ["correct", false], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]]  (133.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como se chamava o irmão de Abraão?"], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Harã"], ["question_id", 232], ["correct", true], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anrão"], ["question_id", 232], ["correct", false], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Labão"], ["question_id", 232], ["correct", false], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeroboão"], ["question_id", 232], ["correct", false], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]]  (132.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como se chamava o irmão de Ismael?"], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 233], ["correct", true], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sadraque"], ["question_id", 233], ["correct", false], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mesaque"], ["question_id", 233], ["correct", false], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abede-nego"], ["question_id", 233], ["correct", false], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]]  (117.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como se chamava o irmão do gigante Golias?"], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lami"], ["question_id", 234], ["correct", true], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Laade"], ["question_id", 234], ["correct", false], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lameque"], ["question_id", 234], ["correct", false], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Larasa"], ["question_id", 234], ["correct", false], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]]  (116.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como se chamava o irmão gêmeo de Esaú?"], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 235], ["correct", true], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 235], ["correct", false], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 235], ["correct", false], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 235], ["correct", false], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]]  (109.3ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como se chamava o nome do pai de Jesus?"], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 236], ["correct", true], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 236], ["correct", false], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 236], ["correct", false], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 236], ["correct", false], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]]  (118.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como se chamava o primeiro filho de Moisés?"], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gérson"], ["question_id", 237], ["correct", true], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gersem"], ["question_id", 237], ["correct", false], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gesã"], ["question_id", 237], ["correct", false], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gilboa"], ["question_id", 237], ["correct", false], ["created_at", 2016-08-19 02:46:31 UTC], ["updated_at", 2016-08-19 02:46:31 UTC]]  (116.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como se chamava o principal deus da agricultura dos filisteus?"], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dago"], ["question_id", 238], ["correct", true], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rimnon"], ["question_id", 238], ["correct", false], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bel"], ["question_id", 238], ["correct", false], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Baal"], ["question_id", 238], ["correct", false], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]]  (117.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como se chamava o sogro de Moisés?"], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jetro"], ["question_id", 239], ["correct", true], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeter"], ["question_id", 239], ["correct", false], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jetete"], ["question_id", 239], ["correct", false], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeloel"], ["question_id", 239], ["correct", false], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]]  (116.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como terminou a rebelião entre Davi e Absalão?"], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão Morreu"], ["question_id", 240], ["correct", true], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi Morreu"], ["question_id", 240], ["correct", false], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão Foi Preso"], ["question_id", 240], ["correct", false], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi Foi Preso"], ["question_id", 240], ["correct", false], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]]  (125.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Contra quem Absalão, filho de Davi, vingou o estupro que foi cometido contra Tamar?"], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Próprio Irmão"], ["question_id", 241], ["correct", true], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Próprio Tio"], ["question_id", 241], ["correct", false], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Próprio Pai"], ["question_id", 241], ["correct", false], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Próprio Sobrinho"], ["question_id", 241], ["correct", false], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]]  (124.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Cornélio, uma pessoa honrada e temente a Deus, era:"], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Centurião Romano"], ["question_id", 242], ["correct", true], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Soldado Egípcio"], ["question_id", 242], ["correct", false], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Capitão Grego"], ["question_id", 242], ["correct", false], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "General Babilônico"], ["question_id", 242], ["correct", false], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]]  (124.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Da família de Moisés, quem era o caçula?"], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 243], ["correct", true], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 243], ["correct", false], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 243], ["correct", false], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todos, Pois Eram Gêmeos"], ["question_id", 243], ["correct", false], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]]  (125.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dalila traiu Sansão por causa de:"], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dinheiro"], ["question_id", 244], ["correct", true], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Orgulho"], ["question_id", 244], ["correct", false], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ciúmes"], ["question_id", 244], ["correct", false], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ódio"], ["question_id", 244], ["correct", false], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]]  (132.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Daniel foi levado cativo para o reino da Babilônia quando a mesma era governada por:"], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 245], ["correct", true], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 245], ["correct", false], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiro"], ["question_id", 245], ["correct", false], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Alexandre, O Grande"], ["question_id", 245], ["correct", false], ["created_at", 2016-08-19 02:46:32 UTC], ["updated_at", 2016-08-19 02:46:32 UTC]]  (108.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Das 10 pragas que Deus enviou ao Egito, quantas os magos do Faraó puderam imitar?"], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 246], ["correct", true], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 246], ["correct", false], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "6"], ["question_id", 246], ["correct", false], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 246], ["correct", false], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]]  (124.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Das alternativas abaixo, qual delas não era uma das regiões da Palestina na época em que Jesus viveu?"], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Iduméia"], ["question_id", 247], ["correct", true], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samária"], ["question_id", 247], ["correct", false], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judéia"], ["question_id", 247], ["correct", false], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Galiléia"], ["question_id", 247], ["correct", false], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]]  (99.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Das alternativas abaixo, qual é o companheiro de Paulo que não o estava aguardando na cidade de Trôade?"], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 248], ["correct", true], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sópatro"], ["question_id", 248], ["correct", false], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aristarco"], ["question_id", 248], ["correct", false], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gaio"], ["question_id", 248], ["correct", false], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]]  (116.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Das alternativas abaixo, quem não foi filho de Davi?"], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eli"], ["question_id", 249], ["correct", true], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amnon"], ["question_id", 249], ["correct", false], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quileabe"], ["question_id", 249], ["correct", false], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adonias"], ["question_id", 249], ["correct", false], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]]  (118.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Das Montanhas do Líbano foram extraídas cedro e cipreste utilizadas na construção:"], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Templo de Salomão"], ["question_id", 250], ["correct", true], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Palácio Real de Salomão"], ["question_id", 250], ["correct", false], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Da Cidade de Babilônia"], ["question_id", 250], ["correct", false], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Da Cidade de Jerusalém"], ["question_id", 250], ["correct", false], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]]  (125.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Das mulheres abaixo, qual delas não teve filhos com Abraão?"], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Admá"], ["question_id", 251], ["correct", true], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quetura"], ["question_id", 251], ["correct", false], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sara"], ["question_id", 251], ["correct", false], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hagar"], ["question_id", 251], ["correct", false], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]]  (125.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Das mulheres abaixo, qual delas teve flhos com Abraão?"], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quetura"], ["question_id", 252], ["correct", true], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Admá"], ["question_id", 252], ["correct", false], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joquebede"], ["question_id", 252], ["correct", false], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jael"], ["question_id", 252], ["correct", false], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]]  (175.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Das opções abaixo, qual delas não foi utilizada na placa que foi pregada na cruz de Cristo?"], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aramaico"], ["question_id", 253], ["correct", true], ["created_at", 2016-08-19 02:46:33 UTC], ["updated_at", 2016-08-19 02:46:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hebreu"], ["question_id", 253], ["correct", false], ["created_at", 2016-08-19 02:46:34 UTC], ["updated_at", 2016-08-19 02:46:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Latim"], ["question_id", 253], ["correct", false], ["created_at", 2016-08-19 02:46:34 UTC], ["updated_at", 2016-08-19 02:46:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Grego"], ["question_id", 253], ["correct", false], ["created_at", 2016-08-19 02:46:34 UTC], ["updated_at", 2016-08-19 02:46:34 UTC]]  (142.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Das vezes que Noé soltou uma pomba para verificar se havia terra seca, em qual delas a pomba trouxe um ramo de oliveira?"], ["created_at", 2016-08-19 02:46:34 UTC], ["updated_at", 2016-08-19 02:46:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2ª"], ["question_id", 254], ["correct", true], ["created_at", 2016-08-19 02:46:34 UTC], ["updated_at", 2016-08-19 02:46:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1ª"], ["question_id", 254], ["correct", false], ["created_at", 2016-08-19 02:46:34 UTC], ["updated_at", 2016-08-19 02:46:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3ª"], ["question_id", 254], ["correct", false], ["created_at", 2016-08-19 02:46:34 UTC], ["updated_at", 2016-08-19 02:46:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4ª"], ["question_id", 254], ["correct", false], ["created_at", 2016-08-19 02:46:34 UTC], ["updated_at", 2016-08-19 02:46:34 UTC]]  (116.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Davi apanhou 5 pedras no chão para matar o gigante Golias. Quantas ele usou para matá-lo?"], ["created_at", 2016-08-19 02:46:34 UTC], ["updated_at", 2016-08-19 02:46:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 255], ["correct", true], ["created_at", 2016-08-19 02:46:34 UTC], ["updated_at", 2016-08-19 02:46:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todas"], ["question_id", 255], ["correct", false], ["created_at", 2016-08-19 02:46:34 UTC], ["updated_at", 2016-08-19 02:46:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 255], ["correct", false], ["created_at", 2016-08-19 02:46:34 UTC], ["updated_at", 2016-08-19 02:46:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhuma"], ["question_id", 255], ["correct", false], ["created_at", 2016-08-19 02:46:34 UTC], ["updated_at", 2016-08-19 02:46:34 UTC]]  (117.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Davi foi o:"], ["created_at", 2016-08-19 02:46:34 UTC], ["updated_at", 2016-08-19 02:46:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2º Rei de Israel"], ["question_id", 256], ["correct", true], ["created_at", 2016-08-19 02:46:34 UTC], ["updated_at", 2016-08-19 02:46:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1º Rei de Israel"], ["question_id", 256], ["correct", false], ["created_at", 2016-08-19 02:46:34 UTC], ["updated_at", 2016-08-19 02:46:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3º Rei de Israel"], ["question_id", 256], ["correct", false], ["created_at", 2016-08-19 02:46:34 UTC], ["updated_at", 2016-08-19 02:46:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jamais Governou Israel, e Sim Judá"], ["question_id", 256], ["correct", false], ["created_at", 2016-08-19 02:46:34 UTC], ["updated_at", 2016-08-19 02:46:34 UTC]]  (117.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Davi teve como cunhado:"], ["created_at", 2016-08-19 02:46:34 UTC], ["updated_at", 2016-08-19 02:46:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jônatas"], ["question_id", 257], ["correct", true], ["created_at", 2016-08-19 02:46:34 UTC], ["updated_at", 2016-08-19 02:46:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 257], ["correct", false], ["created_at", 2016-08-19 02:46:34 UTC], ["updated_at", 2016-08-19 02:46:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mefibosete"], ["question_id", 257], ["correct", false], ["created_at", 2016-08-19 02:46:34 UTC], ["updated_at", 2016-08-19 02:46:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Urias"], ["question_id", 257], ["correct", false], ["created_at", 2016-08-19 02:46:34 UTC], ["updated_at", 2016-08-19 02:46:34 UTC]]  (117.1ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De acordo com os Dez Mandamentos, a quem devemos honrar?"], ["created_at", 2016-08-19 02:46:34 UTC], ["updated_at", 2016-08-19 02:46:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nossos Pais"], ["question_id", 258], ["correct", true], ["created_at", 2016-08-19 02:46:34 UTC], ["updated_at", 2016-08-19 02:46:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nossos Irmãos"], ["question_id", 258], ["correct", false], ["created_at", 2016-08-19 02:46:34 UTC], ["updated_at", 2016-08-19 02:46:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nossos Avós"], ["question_id", 258], ["correct", false], ["created_at", 2016-08-19 02:46:34 UTC], ["updated_at", 2016-08-19 02:46:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nossos Professores"], ["question_id", 258], ["correct", false], ["created_at", 2016-08-19 02:46:34 UTC], ["updated_at", 2016-08-19 02:46:34 UTC]]  (108.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De acordo com Provérbios 2:10, quando a sabedoria adentra o coração, o que se tornará agradável para sua alma?"], ["created_at", 2016-08-19 02:46:34 UTC], ["updated_at", 2016-08-19 02:46:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Conhecimento"], ["question_id", 259], ["correct", true], ["created_at", 2016-08-19 02:46:34 UTC], ["updated_at", 2016-08-19 02:46:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paz"], ["question_id", 259], ["correct", false], ["created_at", 2016-08-19 02:46:34 UTC], ["updated_at", 2016-08-19 02:46:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amor"], ["question_id", 259], ["correct", false], ["created_at", 2016-08-19 02:46:34 UTC], ["updated_at", 2016-08-19 02:46:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saúde"], ["question_id", 259], ["correct", false], ["created_at", 2016-08-19 02:46:34 UTC], ["updated_at", 2016-08-19 02:46:34 UTC]]  (391.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De acordo com Provérbios 2:11-12, o que uma pessoa de discrição e conhecimento será desviada?"], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Mau Caminho"], ["question_id", 260], ["correct", true], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Tédio"], ["question_id", 260], ["correct", false], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Das Mentiras"], ["question_id", 260], ["correct", false], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Das Tempestades"], ["question_id", 260], ["correct", false], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]]  (117.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De acordo com Provérbios 2:7, o que é o Senhor para aqueles que andam em integridade?"], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Escudo"], ["question_id", 261], ["correct", true], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Guia"], ["question_id", 261], ["correct", false], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Segurança"], ["question_id", 261], ["correct", false], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mestre"], ["question_id", 261], ["correct", false], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]]  (117.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De acordo com Provérbios 2:8, o Senhor guarda o caminho da justiça e faz o que para os devotos?"], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Preserva O Caminho"], ["question_id", 262], ["correct", true], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ensina"], ["question_id", 262], ["correct", false], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Protege Suas Famílias"], ["question_id", 262], ["correct", false], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Guia-os"], ["question_id", 262], ["correct", false], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]]  (124.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De acordo com Provérbios 29:11, o que o tolo sempre perde e o sábio retém?"], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Ira"], ["question_id", 263], ["correct", true], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Dinheiro"], ["question_id", 263], ["correct", false], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Alimento"], ["question_id", 263], ["correct", false], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Língua"], ["question_id", 263], ["correct", false], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]]  (100.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De acordo com Provérbios 3:3, o que deverá ser atado ao redor da garganta e escrito nas tábuas do coração?"], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bondade e Fidelidade"], ["question_id", 264], ["correct", true], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Verdade e Amor"], ["question_id", 264], ["correct", false], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Devoção e Humildade"], ["question_id", 264], ["correct", false], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Lei de Deus"], ["question_id", 264], ["correct", false], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]]  (115.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De acordo com Provérbios 30:20, a mulher adúltera come, limpa sua boca e diz o quê?"], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Cometi Nenhum Agravo"], ["question_id", 265], ["correct", true], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obrigada"], ["question_id", 265], ["correct", false], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Estou Satisfeita"], ["question_id", 265], ["correct", false], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ainda Estou Com Fome"], ["question_id", 265], ["correct", false], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]]  (141.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De acordo com Provérbios 30:33, bater o leite produz manteiga, premer o nariz produz sangue e premer a ira produz?"], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Contendas"], ["question_id", 266], ["correct", true], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Insônia"], ["question_id", 266], ["correct", false], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tranqüilidade"], ["question_id", 266], ["correct", false], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Estressa"], ["question_id", 266], ["correct", false], ["created_at", 2016-08-19 02:46:35 UTC], ["updated_at", 2016-08-19 02:46:35 UTC]]  (183.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De acordo com Provérbios 30:5, Deus é o escudo para aqueles que se refugiam nEle porque todo o Seu trabalho é:"], ["created_at", 2016-08-19 02:46:36 UTC], ["updated_at", 2016-08-19 02:46:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Refinado"], ["question_id", 267], ["correct", true], ["created_at", 2016-08-19 02:46:36 UTC], ["updated_at", 2016-08-19 02:46:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Documentado"], ["question_id", 267], ["correct", false], ["created_at", 2016-08-19 02:46:36 UTC], ["updated_at", 2016-08-19 02:46:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Puro"], ["question_id", 267], ["correct", false], ["created_at", 2016-08-19 02:46:36 UTC], ["updated_at", 2016-08-19 02:46:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Exaltado"], ["question_id", 267], ["correct", false], ["created_at", 2016-08-19 02:46:36 UTC], ["updated_at", 2016-08-19 02:46:36 UTC]]  (133.0ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De acordo com Provérbios 31:9, para quem você deveria abrir sua boca?"], ["created_at", 2016-08-19 02:46:36 UTC], ["updated_at", 2016-08-19 02:46:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Pobres e Necessitados"], ["question_id", 268], ["correct", true], ["created_at", 2016-08-19 02:46:36 UTC], ["updated_at", 2016-08-19 02:46:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Analfabetos"], ["question_id", 268], ["correct", false], ["created_at", 2016-08-19 02:46:36 UTC], ["updated_at", 2016-08-19 02:46:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Surdos"], ["question_id", 268], ["correct", false], ["created_at", 2016-08-19 02:46:36 UTC], ["updated_at", 2016-08-19 02:46:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Mudos"], ["question_id", 268], ["correct", false], ["created_at", 2016-08-19 02:46:36 UTC], ["updated_at", 2016-08-19 02:46:36 UTC]]  (141.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De qual madeira era feita a Arca da Aliança?"], ["created_at", 2016-08-19 02:46:36 UTC], ["updated_at", 2016-08-19 02:46:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acácia"], ["question_id", 269], ["correct", true], ["created_at", 2016-08-19 02:46:36 UTC], ["updated_at", 2016-08-19 02:46:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gôfer"], ["question_id", 269], ["correct", false], ["created_at", 2016-08-19 02:46:36 UTC], ["updated_at", 2016-08-19 02:46:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bálsamo"], ["question_id", 269], ["correct", false], ["created_at", 2016-08-19 02:46:36 UTC], ["updated_at", 2016-08-19 02:46:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cipreste"], ["question_id", 269], ["correct", false], ["created_at", 2016-08-19 02:46:36 UTC], ["updated_at", 2016-08-19 02:46:36 UTC]]  (166.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De qual nação Deus matou 185.000 quando estes estavam tentando tomar Jerusalém?"], ["created_at", 2016-08-19 02:46:36 UTC], ["updated_at", 2016-08-19 02:46:36 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assíria"], ["question_id", 270], ["correct", true], ["created_at", 2016-08-19 02:46:36 UTC], ["updated_at", 2016-08-19 02:46:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônia"], ["question_id", 270], ["correct", false], ["created_at", 2016-08-19 02:46:36 UTC], ["updated_at", 2016-08-19 02:46:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenícia"], ["question_id", 270], ["correct", false], ["created_at", 2016-08-19 02:46:36 UTC], ["updated_at", 2016-08-19 02:46:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egito"], ["question_id", 270], ["correct", false], ["created_at", 2016-08-19 02:46:36 UTC], ["updated_at", 2016-08-19 02:46:36 UTC]]  (150.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De qual profeta Hilquias era filho?"], ["created_at", 2016-08-19 02:46:36 UTC], ["updated_at", 2016-08-19 02:46:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeremias"], ["question_id", 271], ["correct", true], ["created_at", 2016-08-19 02:46:36 UTC], ["updated_at", 2016-08-19 02:46:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 271], ["correct", false], ["created_at", 2016-08-19 02:46:36 UTC], ["updated_at", 2016-08-19 02:46:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 271], ["correct", false], ["created_at", 2016-08-19 02:46:36 UTC], ["updated_at", 2016-08-19 02:46:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obadias"], ["question_id", 271], ["correct", false], ["created_at", 2016-08-19 02:46:36 UTC], ["updated_at", 2016-08-19 02:46:36 UTC]]  (133.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De que direção vieram os Reis Magos quando foram ver o menino Jesus?"], ["created_at", 2016-08-19 02:46:36 UTC], ["updated_at", 2016-08-19 02:46:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Leste"], ["question_id", 272], ["correct", true], ["created_at", 2016-08-19 02:46:36 UTC], ["updated_at", 2016-08-19 02:46:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Oeste"], ["question_id", 272], ["correct", false], ["created_at", 2016-08-19 02:46:36 UTC], ["updated_at", 2016-08-19 02:46:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Sul"], ["question_id", 272], ["correct", false], ["created_at", 2016-08-19 02:46:36 UTC], ["updated_at", 2016-08-19 02:46:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Norte"], ["question_id", 272], ["correct", false], ["created_at", 2016-08-19 02:46:36 UTC], ["updated_at", 2016-08-19 02:46:36 UTC]]  (192.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De que era feito o propiciatório da Arca da Aliança?"], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ouro"], ["question_id", 273], ["correct", true], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bronze"], ["question_id", 273], ["correct", false], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Prata"], ["question_id", 273], ["correct", false], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cobre"], ["question_id", 273], ["correct", false], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]]  (107.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De que forma foram transportadas as árvores de cedro compradas por Salomão para a construção do Templo de Jerusalém?"], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Através de Balsas"], ["question_id", 274], ["correct", true], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Através de Carros-de-boi"], ["question_id", 274], ["correct", false], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Através de Escravos"], ["question_id", 274], ["correct", false], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Foram Usadas Árvores de Cedro"], ["question_id", 274], ["correct", false], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]]  (99.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De que forma Jesus morreu?"], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Crucificado"], ["question_id", 275], ["correct", true], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Enforcado"], ["question_id", 275], ["correct", false], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Apedrejado"], ["question_id", 275], ["correct", false], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Decapitado"], ["question_id", 275], ["correct", false], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]]  (107.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De que forma Raquel morreu?"], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Parto"], ["question_id", 276], ["correct", true], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Cair da Árvore"], ["question_id", 276], ["correct", false], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Dilúvio"], ["question_id", 276], ["correct", false], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trespassada Por Uma Espada do Faraó"], ["question_id", 276], ["correct", false], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]]  (107.4ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De que lado do barco Jesus havia dito para que os discípulos jogassem suas redes, após uma noite inteira sem pescar nada?"], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Direito"], ["question_id", 277], ["correct", true], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esquerdo"], ["question_id", 277], ["correct", false], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Proa"], ["question_id", 277], ["correct", false], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Popa"], ["question_id", 277], ["correct", false], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]]  (132.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De quem era o sepulcro onde Jesus foi colocado depois de crucificado?"], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José de Arimatéia"], ["question_id", 278], ["correct", true], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Simão de Cirene"], ["question_id", 278], ["correct", false], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sacerdote Ananias"], ["question_id", 278], ["correct", false], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lázaro"], ["question_id", 278], ["correct", false], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]]  (116.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De quem eram as mesas que Jesus virou no Templo?"], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cambistas"], ["question_id", 279], ["correct", true], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escribas"], ["question_id", 279], ["correct", false], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oleiros"], ["question_id", 279], ["correct", false], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Criadores de Animais"], ["question_id", 279], ["correct", false], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]]  (148.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De quem Husai era amigo, e que fingiu estar apoiando Absalão apenas para ficar informado sobre os planos da rebelião?"], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 280], ["correct", true], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 280], ["correct", false], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Urias"], ["question_id", 280], ["correct", false], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 280], ["correct", false], ["created_at", 2016-08-19 02:46:37 UTC], ["updated_at", 2016-08-19 02:46:37 UTC]]  (158.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De quem Jesus expulsou 7 demônios?"], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria Madalena"], ["question_id", 281], ["correct", true], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria, Sua Mãe"], ["question_id", 281], ["correct", false], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria, Irmã de Marta"], ["question_id", 281], ["correct", false], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria, A Peraplégica"], ["question_id", 281], ["correct", false], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]]  (124.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De quem José, filho de Jacó, interpretou os sonhos?"], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Faraó do Egito"], ["question_id", 282], ["correct", true], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Seu Pai"], ["question_id", 282], ["correct", false], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dos Seus Irmãos"], ["question_id", 282], ["correct", false], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Seu Patrão Potifar"], ["question_id", 282], ["correct", false], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]]  (158.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De quem o rei Acaz queria comprar uma vinha?"], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabote"], ["question_id", 283], ["correct", true], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Naor"], ["question_id", 283], ["correct", false], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nebo"], ["question_id", 283], ["correct", false], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noé"], ["question_id", 283], ["correct", false], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]]  (108.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Debaixo de que árvore Elias se sentou desanimado?"], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zimbro"], ["question_id", 284], ["correct", true], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cipreste"], ["question_id", 284], ["correct", false], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cedro do Líbano"], ["question_id", 284], ["correct", false], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Figueira"], ["question_id", 284], ["correct", false], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]]  (117.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Débora foi a babá de quem?"], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 285], ["correct", true], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 285], ["correct", false], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 285], ["correct", false], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 285], ["correct", false], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]]  (101.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Débora, a profetisa, certa vez chegou a liderar:"], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Exército"], ["question_id", 286], ["correct", true], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Revolução Popular"], ["question_id", 286], ["correct", false], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Templo"], ["question_id", 286], ["correct", false], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Serviço Sacrifical"], ["question_id", 286], ["correct", false], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]]  (116.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Débora, a profetisa, também foi:"], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Juíza"], ["question_id", 287], ["correct", true], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Advogada"], ["question_id", 287], ["correct", false], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Criminosa"], ["question_id", 287], ["correct", false], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foragida da Justiça"], ["question_id", 287], ["correct", false], ["created_at", 2016-08-19 02:46:38 UTC], ["updated_at", 2016-08-19 02:46:38 UTC]]  (102.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dentre as alternativas abaixo, qual deles não é filho de Noé?"], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]]  (103.8ms) SELECT COUNT(*) FROM "quizzes_questions" SQL (0.5ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 288], ["correct", true], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cão"], ["question_id", 288], ["correct", false], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sem"], ["question_id", 288], ["correct", false], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jafé"], ["question_id", 288], ["correct", false], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]]  (107.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dentre as alternativas abaixo, qual era a alimentação que João Batista não utilizava?"], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assado de Carneiro"], ["question_id", 289], ["correct", true], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mel"], ["question_id", 289], ["correct", false], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Frutas"], ["question_id", 289], ["correct", false], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gafanhotos"], ["question_id", 289], ["correct", false], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]]  (108.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dentre as alternativas abaixo, qual não foi um presente dado ao menino jesus pelos reis Magos?"], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Prataria"], ["question_id", 290], ["correct", true], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Incenso"], ["question_id", 290], ["correct", false], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mirra"], ["question_id", 290], ["correct", false], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ouro"], ["question_id", 290], ["correct", false], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]]  (140.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dentre as opções abaixo, qual deles não foi apóstolo de Jesus?"], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Simeão"], ["question_id", 291], ["correct", true], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tadeu"], ["question_id", 291], ["correct", false], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 291], ["correct", false], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tomé"], ["question_id", 291], ["correct", false], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]]  (133.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Depois de passar pela Macedônia, quantos meses Paulo ficou na Grécia?"], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 292], ["correct", true], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "6"], ["question_id", 292], ["correct", false], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "9"], ["question_id", 292], ["correct", false], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 292], ["correct", false], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]]  (123.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Depois de ter sido vendido pelos seus irmãos, José se tornou escravo em qual país?"], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egito"], ["question_id", 293], ["correct", true], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônia"], ["question_id", 293], ["correct", false], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arábia"], ["question_id", 293], ["correct", false], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenícia"], ["question_id", 293], ["correct", false], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]]  (142.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Depois que José do Egito interpretou o sonho do Faraó, que presente ele ganhou do Faraó?"], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Colar de Ouro"], ["question_id", 294], ["correct", true], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Baú de Ouro"], ["question_id", 294], ["correct", false], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cavalos e Carruagens de Ouro"], ["question_id", 294], ["correct", false], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Anel de Ouro"], ["question_id", 294], ["correct", false], ["created_at", 2016-08-19 02:46:39 UTC], ["updated_at", 2016-08-19 02:46:39 UTC]]  (165.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Depois que um pupilo é completamente treinado, como ele será?"], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Como Seu Mestre"], ["question_id", 295], ["correct", true], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Como Um Tolo"], ["question_id", 295], ["correct", false], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Como Um Arrogante"], ["question_id", 295], ["correct", false], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Como Um Homem Sábio"], ["question_id", 295], ["correct", false], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]]  (108.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Deus criou o Jardim do Éden que era molhado por:"], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Névoa Que Saia da Terra"], ["question_id", 296], ["correct", true], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Chuvas"], ["question_id", 296], ["correct", false], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Água do Rio"], ["question_id", 296], ["correct", false], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Água do Mar"], ["question_id", 296], ["correct", false], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]]  (108.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Deus curou o general sírio Naamã de qual enfermidade?"], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lepra"], ["question_id", 297], ["correct", true], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cegueira"], ["question_id", 297], ["correct", false], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mal de Parkinson"], ["question_id", 297], ["correct", false], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Câncer"], ["question_id", 297], ["correct", false], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]]  (116.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Devido ao saque cometido contra a cidade de Jericó, qual foi a punição imposta a Acã e sua família?"], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foram Apedrejados"], ["question_id", 298], ["correct", true], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foram Expulsos da Caravana"], ["question_id", 298], ["correct", false], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foram Decapitados"], ["question_id", 298], ["correct", false], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foram Queimados"], ["question_id", 298], ["correct", false], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]]  (125.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Do que a rainha Jezabel acusou Nabote, para com isso poder prender Nabote e tomar a vinha que ele tinha em suas terras?"], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Blasfêmia"], ["question_id", 299], ["correct", true], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assassinato"], ["question_id", 299], ["correct", false], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Atentado Contra O Rei"], ["question_id", 299], ["correct", false], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assédio Sexual"], ["question_id", 299], ["correct", false], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]]  (133.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Do que eram feitas as roupas de João Batista?"], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "De Pêlo de Camelo"], ["question_id", 300], ["correct", true], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "De Lã de Ovelha"], ["question_id", 300], ["correct", false], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "De Linho Tecido"], ["question_id", 300], ["correct", false], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "De Seda Pura"], ["question_id", 300], ["correct", false], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]]  (132.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Do que Sansão precisou após ter matado 1.000 homens com apenas uma única queixada de jumento?"], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Gole de Água"], ["question_id", 301], ["correct", true], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Prato de Alimento"], ["question_id", 301], ["correct", false], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Rede Para Descansar"], ["question_id", 301], ["correct", false], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Semana de Férias"], ["question_id", 301], ["correct", false], ["created_at", 2016-08-19 02:46:40 UTC], ["updated_at", 2016-08-19 02:46:40 UTC]]  (198.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dorcas era uma mulher bondosa e caridosa que morava na cidade de:"], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jope"], ["question_id", 302], ["correct", true], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nínive"], ["question_id", 302], ["correct", false], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cafarnaum"], ["question_id", 302], ["correct", false], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Betsaida"], ["question_id", 302], ["correct", false], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]]  (242.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dorcas, uma mulher bondosa e caridosa, também era conhecida como:"], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tabita"], ["question_id", 303], ["correct", true], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Talita"], ["question_id", 303], ["correct", false], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eleonora"], ["question_id", 303], ["correct", false], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elinisa"], ["question_id", 303], ["correct", false], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]]  (116.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dos 10 homens que sofriam de lepra e que foram curados por Jesus, quantos deles retornaram para agradecer pela cura?"], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 304], ["correct", true], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todos"], ["question_id", 304], ["correct", false], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 304], ["correct", false], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 304], ["correct", false], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]]  (132.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dos 30.000 trabalhadores que foram designados para construírem o Templo de Jerusalém, quantos trabalhavam no mês?"], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10000"], ["question_id", 305], ["correct", true], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todos"], ["question_id", 305], ["correct", false], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas 1.000"], ["question_id", 305], ["correct", false], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "20000"], ["question_id", 305], ["correct", false], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]]  (132.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dos amigos de Daniel, quem foi jogado em uma fornalha ardente?"], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todas As Alternativas"], ["question_id", 306], ["correct", true], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mesaque"], ["question_id", 306], ["correct", false], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sadraque"], ["question_id", 306], ["correct", false], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abede-nego"], ["question_id", 306], ["correct", false], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]]  (115.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dos filhos de Adão e Eva, Abel foi o:"], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2º"], ["question_id", 307], ["correct", true], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1º"], ["question_id", 307], ["correct", false], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3º"], ["question_id", 307], ["correct", false], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4º"], ["question_id", 307], ["correct", false], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]]  (124.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dos filhos de Adão e Eva, Caim foi o:"], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1º"], ["question_id", 308], ["correct", true], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2º"], ["question_id", 308], ["correct", false], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3º"], ["question_id", 308], ["correct", false], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4º"], ["question_id", 308], ["correct", false], ["created_at", 2016-08-19 02:46:41 UTC], ["updated_at", 2016-08-19 02:46:41 UTC]]  (140.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dos filhos de Adão e Eva, Sete foi o:"], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3º"], ["question_id", 309], ["correct", true], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1º"], ["question_id", 309], ["correct", false], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2º"], ["question_id", 309], ["correct", false], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4º"], ["question_id", 309], ["correct", false], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]]  (125.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dos livros da Bíblia abaixo, qual deles não termina com um ponto de interrogação?"], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 310], ["correct", true], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lamentações"], ["question_id", 310], ["correct", false], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jonas"], ["question_id", 310], ["correct", false], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Naum"], ["question_id", 310], ["correct", false], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]]  (109.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dos livros da Bíblia abaixo, qual deles tem apenas 1 único capítulo?"], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obadias"], ["question_id", 311], ["correct", true], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rute"], ["question_id", 311], ["correct", false], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jó"], ["question_id", 311], ["correct", false], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lamentações"], ["question_id", 311], ["correct", false], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]]  (133.8ms) commit transaction  (0.4ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dos livros da Bíblia abaixo, qual deles tem mais de 1 capítulo?"], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lamentações"], ["question_id", 312], ["correct", true], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filemom"], ["question_id", 312], ["correct", false], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas"], ["question_id", 312], ["correct", false], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obadias"], ["question_id", 312], ["correct", false], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]]  (118.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dos livros da Bíblia abaixo, qual deles termina com um ponto de interrogação?"], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Naum"], ["question_id", 313], ["correct", true], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jó"], ["question_id", 313], ["correct", false], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Levíticos"], ["question_id", 313], ["correct", false], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 313], ["correct", false], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]]  (132.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dos livros da Bíblia abaixos, qual deles não contém a palavra \"Deus\"?"], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ester"], ["question_id", 314], ["correct", true], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Naum"], ["question_id", 314], ["correct", false], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obadias"], ["question_id", 314], ["correct", false], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lamentações"], ["question_id", 314], ["correct", false], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]]  (107.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante 6 dias, quantas voltas por dia o povo de Israel marchava ao redor dos muros da cidade de Jericó?"], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 315], ["correct", true], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7"], ["question_id", 315], ["correct", false], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "6"], ["question_id", 315], ["correct", false], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 315], ["correct", false], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]]  (108.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante a Última Ceia, a quem Jesus ofereceu um bocado de pão?"], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas Iscariotes"], ["question_id", 316], ["correct", true], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 316], ["correct", false], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 316], ["correct", false], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 316], ["correct", false], ["created_at", 2016-08-19 02:46:42 UTC], ["updated_at", 2016-08-19 02:46:42 UTC]]  (116.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante a Última Ceia, com que objetivo Jesus ofereceu um bocado de pão a Judas Iscariotes?"], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Como Sinal de Quem Seria O Traidor"], ["question_id", 317], ["correct", true], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Amizade"], ["question_id", 317], ["correct", false], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Judas Estava Com Fome"], ["question_id", 317], ["correct", false], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Foi Ele Que Havia Dado O Dinheiro P/ Comprar"], ["question_id", 317], ["correct", false], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]]  (115.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante a Última Ceia, que gesto Jesus efetuou para sinalizar quem seria o traidor dentre os 12 discípulos?"], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ofereceu Um Bocado de Pão"], ["question_id", 318], ["correct", true], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lavou Os Pés"], ["question_id", 318], ["correct", false], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Partiu O Pão"], ["question_id", 318], ["correct", false], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apontou O Traidor Com As Mãos"], ["question_id", 318], ["correct", false], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]]  (108.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante a Última Ceia, quem ofereceu um bocado de pão a Judas Iscariotes?"], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 319], ["correct", true], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 319], ["correct", false], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 319], ["correct", false], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "André"], ["question_id", 319], ["correct", false], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]]  (133.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante a viagem de Paulo a Roma, o que desapareceu durante muitos dias devido à forte tempestade?"], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Sol e As Estrelas"], ["question_id", 320], ["correct", true], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Luz"], ["question_id", 320], ["correct", false], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Qualquer Sinal de Terra"], ["question_id", 320], ["correct", false], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vida Marinha"], ["question_id", 320], ["correct", false], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]]  (141.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante o 2º ataque de Nabucodonosor à cidade de Jerusalém, quem não foi levado cativo?"], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Pobres"], ["question_id", 321], ["correct", true], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Família Real"], ["question_id", 321], ["correct", false], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Sacerdotes do Templo"], ["question_id", 321], ["correct", false], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Exército da Cidade de Jerusalém"], ["question_id", 321], ["correct", false], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]]  (182.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante o ministério de Jesus, quem governava a Galiléia?"], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Antipas"], ["question_id", 322], ["correct", true], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Agripa"], ["question_id", 322], ["correct", false], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sumos Sacerdotes"], ["question_id", 322], ["correct", false], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 322], ["correct", false], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]]  (133.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante o reinado de Ezequias no reino de Judá, o que ocorreu com o reino de Israel?"], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Conquistado Pelos Exércitos Inimigos"], ["question_id", 323], ["correct", true], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Teve Uma Grande Enchente"], ["question_id", 323], ["correct", false], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Teve Uma Grande Seca"], ["question_id", 323], ["correct", false], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Ídolos de Baal Foram Totalmente Destruídos"], ["question_id", 323], ["correct", false], ["created_at", 2016-08-19 02:46:43 UTC], ["updated_at", 2016-08-19 02:46:43 UTC]]  (125.7ms) commit transaction  (0.1ms) begin transaction SQL (0.6ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante o tempo que ficou cego, o que Paulo não fez?"], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Comer e Beber"], ["question_id", 324], ["correct", true], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dormir"], ["question_id", 324], ["correct", false], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]] SQL (0.4ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Conversar"], ["question_id", 324], ["correct", false], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sentar"], ["question_id", 324], ["correct", false], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]]  (134.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante os 40 dias em que jesus esteve no deserto, o que ele fez?"], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jejuou"], ["question_id", 325], ["correct", true], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dormiu"], ["question_id", 325], ["correct", false], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arou A Terra"], ["question_id", 325], ["correct", false], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esteve Em Visão Durante Este Tempo"], ["question_id", 325], ["correct", false], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]]  (175.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante quanto tempo Jacó concordou em trabalhar para seu futuro sogro para poder desposar Raquel?"], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7 Anos"], ["question_id", 326], ["correct", true], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Anos"], ["question_id", 326], ["correct", false], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5 Anos"], ["question_id", 326], ["correct", false], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10 Anos"], ["question_id", 326], ["correct", false], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]]  (110.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante quanto tempo não chovia quando então o profeta Elias orou por chuva?"], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Anos e Meio"], ["question_id", 327], ["correct", true], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Década"], ["question_id", 327], ["correct", false], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5 Meses"], ["question_id", 327], ["correct", false], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12 Meses"], ["question_id", 327], ["correct", false], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]]  (109.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante quanto tempo o rei Jeoás reinou sobre a nação israelita?"], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "40 Anos"], ["question_id", 328], ["correct", true], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "15 Anos"], ["question_id", 328], ["correct", false], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "70 Anos"], ["question_id", 328], ["correct", false], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 Anos"], ["question_id", 328], ["correct", false], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]]  (116.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante quanto tempo o Rei Nabucodonosor achava que era um animal, e agia como tal?"], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7 Anos"], ["question_id", 329], ["correct", true], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7 Dias"], ["question_id", 329], ["correct", false], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7 Semanas"], ["question_id", 329], ["correct", false], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7 Meses"], ["question_id", 329], ["correct", false], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]]  (141.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante quanto tempo Paulo ficou cego, até ser curado por Ananias?"], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Dias"], ["question_id", 330], ["correct", true], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Semana"], ["question_id", 330], ["correct", false], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Semanas"], ["question_id", 330], ["correct", false], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Dia"], ["question_id", 330], ["correct", false], ["created_at", 2016-08-19 02:46:44 UTC], ["updated_at", 2016-08-19 02:46:44 UTC]]  (108.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante quantos anos Jacó precisou trabalhar para seu futuro sogro para poder desposar Raquel?"], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "14 Anos"], ["question_id", 331], ["correct", true], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7 Anos"], ["question_id", 331], ["correct", false], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10 Anos"], ["question_id", 331], ["correct", false], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12 Anos"], ["question_id", 331], ["correct", false], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]]  (126.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante quantos anos o povo israelita peregrinou pelo Deserto?"], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "40"], ["question_id", 332], ["correct", true], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "190"], ["question_id", 332], ["correct", false], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "80"], ["question_id", 332], ["correct", false], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "120"], ["question_id", 332], ["correct", false], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]]  (116.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante sua última semana de vida, enquanto não estava em Jerusalém Jesus estava na cidade de:"], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Betânia"], ["question_id", 333], ["correct", true], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cafarnaum"], ["question_id", 333], ["correct", false], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nazaré"], ["question_id", 333], ["correct", false], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 333], ["correct", false], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]]  (115.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Ebede-Meleque, que havia salvo o profeta Jeremias de morrer em uma cisterna com lama, era:"], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eunuco"], ["question_id", 334], ["correct", true], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anão"], ["question_id", 334], ["correct", false], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sumo-sacerdote"], ["question_id", 334], ["correct", false], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei"], ["question_id", 334], ["correct", false], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]]  (124.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Elias mandou matar os profetas de qual deus?"], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Baal"], ["question_id", 335], ["correct", true], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tom-rá"], ["question_id", 335], ["correct", false], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deus do Sol"], ["question_id", 335], ["correct", false], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deus da Lua"], ["question_id", 335], ["correct", false], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]]  (133.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Elias subiu aos Céus através de:"], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Carruagem de Fogo"], ["question_id", 336], ["correct", true], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Escada Que Ia Até O Céu"], ["question_id", 336], ["correct", false], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Pássaro Enorme"], ["question_id", 336], ["correct", false], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Cavalo de Fogo"], ["question_id", 336], ["correct", false], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]]  (124.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Elias teve o privilégio de comer uma refeição preparada por:"], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Anjo"], ["question_id", 337], ["correct", true], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deus"], ["question_id", 337], ["correct", false], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jezabel"], ["question_id", 337], ["correct", false], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 337], ["correct", false], ["created_at", 2016-08-19 02:46:45 UTC], ["updated_at", 2016-08-19 02:46:45 UTC]]  (199.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Elifaz, uma das pessoas que repreendeu a Jó, era de nacionalidade:"], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Temanita"], ["question_id", 338], ["correct", true], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filistéia"], ["question_id", 338], ["correct", false], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenícia"], ["question_id", 338], ["correct", false], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Meconita"], ["question_id", 338], ["correct", false], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]]  (175.4ms) commit transaction  (0.4ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em 1961, foi encontrada em Cesaréia uma inscrição que fazia menção de um prefeito na época de Jesus. Quem foi mencionado?"], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 339], ["correct", true], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]] SQL (0.4ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes, O Grande"], ["question_id", 339], ["correct", false], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Faraó do Egito"], ["question_id", 339], ["correct", false], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei Nabucodonosor"], ["question_id", 339], ["correct", false], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]]  (134.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em Caná ocorreu:"], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O 1º Milagre de Jesus"], ["question_id", 340], ["correct", true], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Transfiguração de Jesus"], ["question_id", 340], ["correct", false], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus Foi Batizado Por João Batista"], ["question_id", 340], ["correct", false], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Nascimento de Jesus"], ["question_id", 340], ["correct", false], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]]  (144.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em Éfeso, quem se zangou com Paulo e os discípulos e instigou uma revolta contra eles?"], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Demétrio"], ["question_id", 341], ["correct", true], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Títio"], ["question_id", 341], ["correct", false], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Safira"], ["question_id", 341], ["correct", false], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lísia"], ["question_id", 341], ["correct", false], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]]  (141.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em lugar de Isaque, que animal Deus providenciou para Abraão oferecer em sacrifício?"], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cordeiro"], ["question_id", 342], ["correct", true], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ovelha"], ["question_id", 342], ["correct", false], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Corvo"], ["question_id", 342], ["correct", false], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cabrito"], ["question_id", 342], ["correct", false], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]]  (140.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em Malta naufragou o navio onde estava:"], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 343], ["correct", true], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jonas"], ["question_id", 343], ["correct", false], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 343], ["correct", false], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 343], ["correct", false], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]]  (108.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual ano de seu reinado Salomão iniciou a construção do Templo de Jerusalém?"], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4º"], ["question_id", 344], ["correct", true], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "8º"], ["question_id", 344], ["correct", false], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1º"], ["question_id", 344], ["correct", false], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10º"], ["question_id", 344], ["correct", false], ["created_at", 2016-08-19 02:46:46 UTC], ["updated_at", 2016-08-19 02:46:46 UTC]]  (115.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual árvore ficou preso Absalão?"], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carvalho"], ["question_id", 345], ["correct", true], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cedro"], ["question_id", 345], ["correct", false], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cipreste"], ["question_id", 345], ["correct", false], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mogno"], ["question_id", 345], ["correct", false], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]]  (100.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual árvore Zaqueu subiu para poder enxergar melhor Jesus no meio da multidão?"], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sicômoro"], ["question_id", 346], ["correct", true], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tamareira"], ["question_id", 346], ["correct", false], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Figueira"], ["question_id", 346], ["correct", false], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cipreste do Líbano"], ["question_id", 346], ["correct", false], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]]  (116.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual cidade encontrava-se Nabucodonosor quando o rei Zedequias foi levado à sua presença para receber a sentença final?"], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ribla"], ["question_id", 347], ["correct", true], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nínive"], ["question_id", 347], ["correct", false], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ur dos Caldeus"], ["question_id", 347], ["correct", false], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônia"], ["question_id", 347], ["correct", false], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]]  (116.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual cidade Jesus nasceu?"], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belém"], ["question_id", 348], ["correct", true], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nazaré"], ["question_id", 348], ["correct", false], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 348], ["correct", false], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Betânia"], ["question_id", 348], ["correct", false], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]]  (107.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual cidade Maria, mãe de Jesus, morava?"], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nazaré"], ["question_id", 349], ["correct", true], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 349], ["correct", false], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Betânia"], ["question_id", 349], ["correct", false], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belém"], ["question_id", 349], ["correct", false], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]]  (108.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual cidade Nabucodonosor derrotou o rei Neco e seu exército egípcio?"], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carquêmis"], ["question_id", 350], ["correct", true], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônia"], ["question_id", 350], ["correct", false], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiro"], ["question_id", 350], ["correct", false], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hebrom"], ["question_id", 350], ["correct", false], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]]  (117.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual cidade os discípulos de Jesus foram chamados cristãos pela 1ª vez?"], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Antioquia"], ["question_id", 351], ["correct", true], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Éfeso"], ["question_id", 351], ["correct", false], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tessalônica"], ["question_id", 351], ["correct", false], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esmirna"], ["question_id", 351], ["correct", false], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]]  (124.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual lugar estranho Jesus falou para Pedro encontrar uma moeda para pagar o imposto do Templo?"], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Boca de Um Peixe"], ["question_id", 352], ["correct", true], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Barriga de Um Cordeiro"], ["question_id", 352], ["correct", false], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Interior de Uma Semente de Mostarda"], ["question_id", 352], ["correct", false], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Tronco de Uma Figueira"], ["question_id", 352], ["correct", false], ["created_at", 2016-08-19 02:46:47 UTC], ["updated_at", 2016-08-19 02:46:47 UTC]]  (107.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual mar André estava pescando quando Jesus o chamou para ser discípulo?"], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mar da Galiléia"], ["question_id", 353], ["correct", true], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mar Morto"], ["question_id", 353], ["correct", false], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mar Mediterrâneo"], ["question_id", 353], ["correct", false], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mar da Galícia"], ["question_id", 353], ["correct", false], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]]  (124.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual mar Pedro estava pescando quando Jesus o chamou para ser discípulo?"], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mar da Galiléia"], ["question_id", 354], ["correct", true], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mar Morto"], ["question_id", 354], ["correct", false], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mar Mediterrâneo"], ["question_id", 354], ["correct", false], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mar da Galícia"], ["question_id", 354], ["correct", false], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]]  (107.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual monte Abraão quase sacrificou seu filho?"], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moriá"], ["question_id", 355], ["correct", true], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sinai"], ["question_id", 355], ["correct", false], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ararat"], ["question_id", 355], ["correct", false], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carmelo"], ["question_id", 355], ["correct", false], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]]  (108.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual Monte Elias desafiou os sacerdotes de Baal?"], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carmelo"], ["question_id", 356], ["correct", true], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gerizim"], ["question_id", 356], ["correct", false], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sinai"], ["question_id", 356], ["correct", false], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gilboa"], ["question_id", 356], ["correct", false], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]]  (140.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual monte fixou-se a arca de Noé?"], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ararat"], ["question_id", 357], ["correct", true], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nebo"], ["question_id", 357], ["correct", false], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sinai"], ["question_id", 357], ["correct", false], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carmelo"], ["question_id", 357], ["correct", false], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]]  (199.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual Monte Jesus chorou sobre Jerusalém?"], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Das Oliveiras"], ["question_id", 358], ["correct", true], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ebal"], ["question_id", 358], ["correct", false], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moriá"], ["question_id", 358], ["correct", false], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Getsêmani"], ["question_id", 358], ["correct", false], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]]  (115.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual Monte Josué pronunciou as bênçãos dadas a Israel devido à sua obediência?"], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gerizim"], ["question_id", 359], ["correct", true], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carmelo"], ["question_id", 359], ["correct", false], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tabor"], ["question_id", 359], ["correct", false], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nebo"], ["question_id", 359], ["correct", false], ["created_at", 2016-08-19 02:46:48 UTC], ["updated_at", 2016-08-19 02:46:48 UTC]]  (108.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual Monte Moisés passou 40 dias com Deus?"], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sinai"], ["question_id", 360], ["correct", true], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nebo"], ["question_id", 360], ["correct", false], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carmelo"], ["question_id", 360], ["correct", false], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ararat"], ["question_id", 360], ["correct", false], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]]  (209.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual Monte Moisés recebeu de Deus a missão para tirar o povo de Israel da escravidão do Egito?"], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Horebe"], ["question_id", 361], ["correct", true], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carmelo"], ["question_id", 361], ["correct", false], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sinai"], ["question_id", 361], ["correct", false], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hebrom"], ["question_id", 361], ["correct", false], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]]  (124.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual Monte Moisés viu um arbusto em chamas?"], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Horebe"], ["question_id", 362], ["correct", true], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nebo"], ["question_id", 362], ["correct", false], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Das Oliveiras"], ["question_id", 362], ["correct", false], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ararat"], ["question_id", 362], ["correct", false], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]]  (108.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual Monte o rei Saul e seus filhos foram derrotados pelos filisteus?"], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gilboa"], ["question_id", 363], ["correct", true], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ebal"], ["question_id", 363], ["correct", false], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Talbor"], ["question_id", 363], ["correct", false], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hebrom"], ["question_id", 363], ["correct", false], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]]  (132.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual Monte Salomão construiu o Templo?"], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moriá"], ["question_id", 364], ["correct", true], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nebo"], ["question_id", 364], ["correct", false], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gileade"], ["question_id", 364], ["correct", false], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hor"], ["question_id", 364], ["correct", false], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]]  (124.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual província ocorreu o 1º milagre de Jesus?"], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Galiléia"], ["question_id", 365], ["correct", true], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judéia"], ["question_id", 365], ["correct", false], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 365], ["correct", false], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Iduméia"], ["question_id", 365], ["correct", false], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]]  (124.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual região montanhosa foi feita uma aliança entre Jacó e Labão?"], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gileade"], ["question_id", 366], ["correct", true], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gezer"], ["question_id", 366], ["correct", false], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Golã"], ["question_id", 366], ["correct", false], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ebal"], ["question_id", 366], ["correct", false], ["created_at", 2016-08-19 02:46:49 UTC], ["updated_at", 2016-08-19 02:46:49 UTC]]  (132.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual rio Jesus foi batizado?"], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jordão"], ["question_id", 367], ["correct", true], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nilo"], ["question_id", 367], ["correct", false], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eufrates"], ["question_id", 367], ["correct", false], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tigre"], ["question_id", 367], ["correct", false], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]]  (133.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual rio João Batista batizava as pessoas para que se arrependessem e buscassem o perdão de Deus?"], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jordão"], ["question_id", 368], ["correct", true], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nilo"], ["question_id", 368], ["correct", false], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tigre"], ["question_id", 368], ["correct", false], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eufrates"], ["question_id", 368], ["correct", false], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]]  (124.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual rio Moisés foi colocado em uma cesta, quando bebê?"], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]]  (128.9ms) SELECT COUNT(*) FROM "quizzes_answers" SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nilo"], ["question_id", 369], ["correct", true], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jordão"], ["question_id", 369], ["correct", false], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eufrates"], ["question_id", 369], ["correct", false], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tigre"], ["question_id", 369], ["correct", false], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]]  (125.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual rio o profeta Eliseu orientou Naamã se molhar 7 vezes para se curar da lepra?"], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jordão"], ["question_id", 370], ["correct", true], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tigre"], ["question_id", 370], ["correct", false], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eufrates"], ["question_id", 370], ["correct", false], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nilo"], ["question_id", 370], ["correct", false], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]]  (166.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em quantas línguas Pôncio Pilatos escreveu na placa que pregou na cruz de Jesus?"], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 371], ["correct", true], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 371], ["correct", false], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 371], ["correct", false], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 371], ["correct", false], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]]  (141.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em quantas raposas Sansão amarrou fachos incediadas em suas caudas?"], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "300"], ["question_id", 372], ["correct", true], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "30"], ["question_id", 372], ["correct", false], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 372], ["correct", false], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3000"], ["question_id", 372], ["correct", false], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]]  (117.1ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em que ano a Bíblia foi dividida em capítulos?"], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1250"], ["question_id", 373], ["correct", true], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "250"], ["question_id", 373], ["correct", false], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "550"], ["question_id", 373], ["correct", false], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "850"], ["question_id", 373], ["correct", false], ["created_at", 2016-08-19 02:46:50 UTC], ["updated_at", 2016-08-19 02:46:50 UTC]]  (116.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em que ano a Bíblia foi dividida em versículos?"], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1550"], ["question_id", 374], ["correct", true], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1250"], ["question_id", 374], ["correct", false], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "550"], ["question_id", 374], ["correct", false], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "850"], ["question_id", 374], ["correct", false], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]]  (108.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em que cidade Jesus e seus pais haviam ido para a comemoração da Páscoa dos judeus?"], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 375], ["correct", true], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nazaré"], ["question_id", 375], ["correct", false], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belém"], ["question_id", 375], ["correct", false], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cafarnaum"], ["question_id", 375], ["correct", false], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]]  (109.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em que condição física estavam Sadraque, Mesaque e Abede-Nego quando eles saíram da fornalha ardente?"], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Fogo Não Fizera Efeito"], ["question_id", 376], ["correct", true], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eles Cheiravam A Fumaça"], ["question_id", 376], ["correct", false], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Cabelos Estavam Chamuscados"], ["question_id", 376], ["correct", false], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sofreram Queimaduras de 3º Grau"], ["question_id", 376], ["correct", false], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]]  (117.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em que local Jesus foi crucificado?"], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gólgota"], ["question_id", 377], ["correct", true], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jardim do Getsêmani"], ["question_id", 377], ["correct", false], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Monte das Oliveiras"], ["question_id", 377], ["correct", false], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Às Margens do Mar da Galiléia"], ["question_id", 377], ["correct", false], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]]  (134.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em que local Moisés escondeu o egípcio que havia matado?"], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Areia"], ["question_id", 378], ["correct", true], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Rio Nilo"], ["question_id", 378], ["correct", false], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Entre Os Juncos"], ["question_id", 378], ["correct", false], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Próprio Palácio do Faraó"], ["question_id", 378], ["correct", false], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]]  (133.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em que local Moisés foi sepultado por Deus?"], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vale"], ["question_id", 379], ["correct", true], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ribeirão"], ["question_id", 379], ["correct", false], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Montanha"], ["question_id", 379], ["correct", false], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deserto"], ["question_id", 379], ["correct", false], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]]  (149.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em que monte Moisés viu a Terra Prometida?"], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nebo"], ["question_id", 380], ["correct", true], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ararat"], ["question_id", 380], ["correct", false], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sinai"], ["question_id", 380], ["correct", false], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carmelo"], ["question_id", 380], ["correct", false], ["created_at", 2016-08-19 02:46:51 UTC], ["updated_at", 2016-08-19 02:46:51 UTC]]  (125.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em que Monte morreu Arão?"], ["created_at", 2016-08-19 02:46:52 UTC], ["updated_at", 2016-08-19 02:46:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hor"], ["question_id", 381], ["correct", true], ["created_at", 2016-08-19 02:46:52 UTC], ["updated_at", 2016-08-19 02:46:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nebo"], ["question_id", 381], ["correct", false], ["created_at", 2016-08-19 02:46:52 UTC], ["updated_at", 2016-08-19 02:46:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ararat"], ["question_id", 381], ["correct", false], ["created_at", 2016-08-19 02:46:52 UTC], ["updated_at", 2016-08-19 02:46:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carmelo"], ["question_id", 381], ["correct", false], ["created_at", 2016-08-19 02:46:52 UTC], ["updated_at", 2016-08-19 02:46:52 UTC]]  (184.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em que ocasião Jesus amaldiçoou uma figueira?"], ["created_at", 2016-08-19 02:46:52 UTC], ["updated_at", 2016-08-19 02:46:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Dia Seguinte À Sua Entrada Em Jerusalém"], ["question_id", 382], ["correct", true], ["created_at", 2016-08-19 02:46:52 UTC], ["updated_at", 2016-08-19 02:46:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Dia dos Preparativos Para A Última Ceia"], ["question_id", 382], ["correct", false], ["created_at", 2016-08-19 02:46:52 UTC], ["updated_at", 2016-08-19 02:46:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Dia Seguinte Ao Batismo"], ["question_id", 382], ["correct", false], ["created_at", 2016-08-19 02:46:52 UTC], ["updated_at", 2016-08-19 02:46:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Dia Seguinte À Festa de Casamento"], ["question_id", 382], ["correct", false], ["created_at", 2016-08-19 02:46:52 UTC], ["updated_at", 2016-08-19 02:46:52 UTC]]  (208.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em que orquestra tocava Jaaziel?"], ["created_at", 2016-08-19 02:46:52 UTC], ["updated_at", 2016-08-19 02:46:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Orquestra de Davi"], ["question_id", 383], ["correct", true], ["created_at", 2016-08-19 02:46:52 UTC], ["updated_at", 2016-08-19 02:46:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Orquestra de Saul"], ["question_id", 383], ["correct", false], ["created_at", 2016-08-19 02:46:52 UTC], ["updated_at", 2016-08-19 02:46:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Orquestra de Salomão"], ["question_id", 383], ["correct", false], ["created_at", 2016-08-19 02:46:52 UTC], ["updated_at", 2016-08-19 02:46:52 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Orquestra de Sansão"], ["question_id", 383], ["correct", false], ["created_at", 2016-08-19 02:46:52 UTC], ["updated_at", 2016-08-19 02:46:52 UTC]]  (107.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em que resultou a falsa acusação de que José havia tentado seduzir a esposa de Potifar?"], ["created_at", 2016-08-19 02:46:52 UTC], ["updated_at", 2016-08-19 02:46:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Preso"], ["question_id", 384], ["correct", true], ["created_at", 2016-08-19 02:46:52 UTC], ["updated_at", 2016-08-19 02:46:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Morto"], ["question_id", 384], ["correct", false], ["created_at", 2016-08-19 02:46:52 UTC], ["updated_at", 2016-08-19 02:46:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Extraditado"], ["question_id", 384], ["correct", false], ["created_at", 2016-08-19 02:46:52 UTC], ["updated_at", 2016-08-19 02:46:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Tornado Eunuco"], ["question_id", 384], ["correct", false], ["created_at", 2016-08-19 02:46:52 UTC], ["updated_at", 2016-08-19 02:46:52 UTC]]  (108.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em resposta aos resmungos do povo israelita pelo fato dos rebeldes terem sido destruídos, o que Deus enviou?"], ["created_at", 2016-08-19 02:46:52 UTC], ["updated_at", 2016-08-19 02:46:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Praga"], ["question_id", 385], ["correct", true], ["created_at", 2016-08-19 02:46:52 UTC], ["updated_at", 2016-08-19 02:46:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Bênção"], ["question_id", 385], ["correct", false], ["created_at", 2016-08-19 02:46:52 UTC], ["updated_at", 2016-08-19 02:46:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Forte Chuva"], ["question_id", 385], ["correct", false], ["created_at", 2016-08-19 02:46:52 UTC], ["updated_at", 2016-08-19 02:46:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Grande Terremoto"], ["question_id", 385], ["correct", false], ["created_at", 2016-08-19 02:46:52 UTC], ["updated_at", 2016-08-19 02:46:52 UTC]]  (125.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Judas fez após os sumos sacerdotes terem recusado a devolução das 30 moedas de prata?"], ["created_at", 2016-08-19 02:46:52 UTC], ["updated_at", 2016-08-19 02:46:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jogou-as Para O Interior do Templo"], ["question_id", 386], ["correct", true], ["created_at", 2016-08-19 02:46:52 UTC], ["updated_at", 2016-08-19 02:46:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deu-as À Uma Viúva Pobre"], ["question_id", 386], ["correct", false], ["created_at", 2016-08-19 02:46:52 UTC], ["updated_at", 2016-08-19 02:46:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Atirou-as Para A Multidão Que Passava"], ["question_id", 386], ["correct", false], ["created_at", 2016-08-19 02:46:52 UTC], ["updated_at", 2016-08-19 02:46:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jogou-as Em Um Abismo"], ["question_id", 386], ["correct", false], ["created_at", 2016-08-19 02:46:52 UTC], ["updated_at", 2016-08-19 02:46:52 UTC]]  (184.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Judas fez depois de trair Jesus?"], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Suicidou-se"], ["question_id", 387], ["correct", true], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Comprou Uma Casa"], ["question_id", 387], ["correct", false], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arrependeu-se, e Foi Pregar O Evangelho"], ["question_id", 387], ["correct", false], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Se Arrependeu"], ["question_id", 387], ["correct", false], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]]  (225.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Lázaro, o mendigo, quis comer da mesa do homem rico?"], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Migalhas"], ["question_id", 388], ["correct", true], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Milho"], ["question_id", 388], ["correct", false], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Peixe"], ["question_id", 388], ["correct", false], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carne"], ["question_id", 388], ["correct", false], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]]  (117.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que levou os Reis Magos até o menino Jesus?"], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Estrela"], ["question_id", 389], ["correct", true], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Lua"], ["question_id", 389], ["correct", false], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Sol"], ["question_id", 389], ["correct", false], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Luz"], ["question_id", 389], ["correct", false], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]]  (91.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Melquisedeque foi ao mesmo tempo?"], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei e Sacerdote"], ["question_id", 390], ["correct", true], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei e Soldado"], ["question_id", 390], ["correct", false], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sacerdote e Soldado"], ["question_id", 390], ["correct", false], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Profeta e Sacerdote"], ["question_id", 390], ["correct", false], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]]  (117.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Moisés e Arão pediram ao Faraó em relação aos israelitas?"], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deixe-os Ir"], ["question_id", 391], ["correct", true], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dê-lhes Menos Trabalho"], ["question_id", 391], ["correct", false], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dê-lhes Mais Alimento"], ["question_id", 391], ["correct", false], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deixem Que Construam Suas Próprias Casas"], ["question_id", 391], ["correct", false], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]]  (192.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Moisés encontrou no Monte Horebe?"], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Arbusto Em Chamas"], ["question_id", 392], ["correct", true], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Pilar de Fogo"], ["question_id", 392], ["correct", false], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Coluna de Fogo"], ["question_id", 392], ["correct", false], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Nuvem de Fogo"], ["question_id", 392], ["correct", false], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]]  (117.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Moisés foi instruído a fazer pelo fato de estar em solo sagrado?"], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tirar As Sandálias"], ["question_id", 393], ["correct", true], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fazer Reverência"], ["question_id", 393], ["correct", false], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Construiur Um Altar"], ["question_id", 393], ["correct", false], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ajoelhar-se e Orar"], ["question_id", 393], ["correct", false], ["created_at", 2016-08-19 02:46:53 UTC], ["updated_at", 2016-08-19 02:46:53 UTC]]  (207.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Moisés recebeu de Deus no Monte Sinai?"], ["created_at", 2016-08-19 02:46:54 UTC], ["updated_at", 2016-08-19 02:46:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Tábuas da Lei"], ["question_id", 394], ["correct", true], ["created_at", 2016-08-19 02:46:54 UTC], ["updated_at", 2016-08-19 02:46:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Nova Capa"], ["question_id", 394], ["correct", false], ["created_at", 2016-08-19 02:46:54 UTC], ["updated_at", 2016-08-19 02:46:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Transfiguração"], ["question_id", 394], ["correct", false], ["created_at", 2016-08-19 02:46:54 UTC], ["updated_at", 2016-08-19 02:46:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Arca da Aliança"], ["question_id", 394], ["correct", false], ["created_at", 2016-08-19 02:46:54 UTC], ["updated_at", 2016-08-19 02:46:54 UTC]]  (207.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Moisés viu que estava em chamas, mas que não se consumia?"], ["created_at", 2016-08-19 02:46:54 UTC], ["updated_at", 2016-08-19 02:46:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sarça"], ["question_id", 395], ["correct", true], ["created_at", 2016-08-19 02:46:54 UTC], ["updated_at", 2016-08-19 02:46:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cipreste"], ["question_id", 395], ["correct", false], ["created_at", 2016-08-19 02:46:54 UTC], ["updated_at", 2016-08-19 02:46:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Altar"], ["question_id", 395], ["correct", false], ["created_at", 2016-08-19 02:46:54 UTC], ["updated_at", 2016-08-19 02:46:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Água"], ["question_id", 395], ["correct", false], ["created_at", 2016-08-19 02:46:54 UTC], ["updated_at", 2016-08-19 02:46:54 UTC]]  (99.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Nabote possuía em suas terras que o rei Acaz queria comprar?"], ["created_at", 2016-08-19 02:46:54 UTC], ["updated_at", 2016-08-19 02:46:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Vinhedo"], ["question_id", 396], ["correct", true], ["created_at", 2016-08-19 02:46:54 UTC], ["updated_at", 2016-08-19 02:46:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Bosque"], ["question_id", 396], ["correct", false], ["created_at", 2016-08-19 02:46:54 UTC], ["updated_at", 2016-08-19 02:46:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Tanque de Peixes"], ["question_id", 396], ["correct", false], ["created_at", 2016-08-19 02:46:54 UTC], ["updated_at", 2016-08-19 02:46:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Árvore de Cipreste do Líbano"], ["question_id", 396], ["correct", false], ["created_at", 2016-08-19 02:46:54 UTC], ["updated_at", 2016-08-19 02:46:54 UTC]]  (99.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Noé construiu?"], ["created_at", 2016-08-19 02:46:54 UTC], ["updated_at", 2016-08-19 02:46:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arca"], ["question_id", 397], ["correct", true], ["created_at", 2016-08-19 02:46:54 UTC], ["updated_at", 2016-08-19 02:46:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Templo"], ["question_id", 397], ["correct", false], ["created_at", 2016-08-19 02:46:54 UTC], ["updated_at", 2016-08-19 02:46:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Torre"], ["question_id", 397], ["correct", false], ["created_at", 2016-08-19 02:46:54 UTC], ["updated_at", 2016-08-19 02:46:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sinagoga"], ["question_id", 397], ["correct", false], ["created_at", 2016-08-19 02:46:54 UTC], ["updated_at", 2016-08-19 02:46:54 UTC]]  (125.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Noé enviou da arca, que ao retornar trouxe um ramo de oliveira em seu bico?"], ["created_at", 2016-08-19 02:46:54 UTC], ["updated_at", 2016-08-19 02:46:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Pomba"], ["question_id", 398], ["correct", true], ["created_at", 2016-08-19 02:46:54 UTC], ["updated_at", 2016-08-19 02:46:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Corvo"], ["question_id", 398], ["correct", false], ["created_at", 2016-08-19 02:46:54 UTC], ["updated_at", 2016-08-19 02:46:54 UTC]]  (1029.7ms) SELECT COUNT(*) FROM "quizzes_answers" SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Papagaio"], ["question_id", 398], ["correct", false], ["created_at", 2016-08-19 02:46:54 UTC], ["updated_at", 2016-08-19 02:46:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Águia"], ["question_id", 398], ["correct", false], ["created_at", 2016-08-19 02:46:54 UTC], ["updated_at", 2016-08-19 02:46:54 UTC]]  (117.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que o Faraó deu a José pelo fato de ter interpretado os seus sonhos?"], ["created_at", 2016-08-19 02:46:54 UTC], ["updated_at", 2016-08-19 02:46:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Anel"], ["question_id", 399], ["correct", true], ["created_at", 2016-08-19 02:46:54 UTC], ["updated_at", 2016-08-19 02:46:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Cetro"], ["question_id", 399], ["correct", false], ["created_at", 2016-08-19 02:46:54 UTC], ["updated_at", 2016-08-19 02:46:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Coroa"], ["question_id", 399], ["correct", false], ["created_at", 2016-08-19 02:46:54 UTC], ["updated_at", 2016-08-19 02:46:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Filha Em Casamento"], ["question_id", 399], ["correct", false], ["created_at", 2016-08-19 02:46:54 UTC], ["updated_at", 2016-08-19 02:46:54 UTC]]  (224.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que o Faraó mandou fazer que fosse feito contra todos os bebês hebreus do sexo masculino que nascessem?"], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fossem Mortos"], ["question_id", 400], ["correct", true], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fossem Vendidos"], ["question_id", 400], ["correct", false], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fossem Circuncidados"], ["question_id", 400], ["correct", false], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fossem Marcados A Ferro"], ["question_id", 400], ["correct", false], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]]  (124.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que o rei babilônico Belsazar viu na parede de diferente?"], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Escrita"], ["question_id", 401], ["correct", true], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Mural"], ["question_id", 401], ["correct", false], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Lápide"], ["question_id", 401], ["correct", false], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Janela Sem Vidros"], ["question_id", 401], ["correct", false], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]]  (108.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que o rei Davi desejava construir, mas que foi negado por Deus?"], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Templo de Deus"], ["question_id", 402], ["correct", true], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Novo Palácio Real"], ["question_id", 402], ["correct", false], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Sinagoga"], ["question_id", 402], ["correct", false], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Residência do Profeta Isaias"], ["question_id", 402], ["correct", false], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]]  (109.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que o rei Ezequias construiu para permitir que a água fosse levada à cidade de Jerusalém?"], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Túnel"], ["question_id", 403], ["correct", true], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Ponte"], ["question_id", 403], ["correct", false], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Rio"], ["question_id", 403], ["correct", false], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Cachoeira"], ["question_id", 403], ["correct", false], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]]  (117.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que o rei Ezequias tolamente mostrou aos babilônios?"], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Tesouros do Templo"], ["question_id", 404], ["correct", true], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Ídolos de Ouro"], ["question_id", 404], ["correct", false], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Suas Esposas"], ["question_id", 404], ["correct", false], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Planos de Conquista"], ["question_id", 404], ["correct", false], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]]  (109.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que o rei Jeroboão pediu à sua esposa que fizesse quando esta fosse encontrar-se com o profeta Aías?"], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Se Disfarçasse"], ["question_id", 405], ["correct", true], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Se Humilhasse"], ["question_id", 405], ["correct", false], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Se Desculpasse"], ["question_id", 405], ["correct", false], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Se Arrependesse"], ["question_id", 405], ["correct", false], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]]  (109.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que o rei Manassés fez no Templo de Jerusalém quando reinou?"], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Erigiu Uma Estátua da Deusa Pagã Asera"], ["question_id", 406], ["correct", true], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fortificou As Paredes do Templo"], ["question_id", 406], ["correct", false], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Destruiu O Templo e Construiu Um Novo"], ["question_id", 406], ["correct", false], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Revestiu Todo O Interior do Templo Com Ouro Puro"], ["question_id", 406], ["correct", false], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]]  (117.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que o rei Nabucodonosor mandou construir para que todos se prostrassem e adorassem?"], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Enorme Estátua de Si Mesmo"], ["question_id", 407], ["correct", true], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Enorme Estátua de Serpente"], ["question_id", 407], ["correct", false], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Enorme Estátua de Barro Com Ferro"], ["question_id", 407], ["correct", false], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Enorme Estátua Com Fezes de Animais"], ["question_id", 407], ["correct", false], ["created_at", 2016-08-19 02:46:55 UTC], ["updated_at", 2016-08-19 02:46:55 UTC]]  (141.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em sua rebelião, de quem eram os 250 seguidores que morreram consumidos pelo fogo?"], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Corá"], ["question_id", 408], ["correct", true], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 408], ["correct", false], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Labão"], ["question_id", 408], ["correct", false], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dã"], ["question_id", 408], ["correct", false], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]]  (132.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em sua viagem à Roma, onde naufragou o navio em que Paulo viajava?"], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Malta"], ["question_id", 409], ["correct", true], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sicília"], ["question_id", 409], ["correct", false], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Grécia"], ["question_id", 409], ["correct", false], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Patmos"], ["question_id", 409], ["correct", false], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]]  (124.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em toda a Bíblia, além de Jesus quem mais jejuou 40 dias e 40 noites?"], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias e Moisés"], ["question_id", 410], ["correct", true], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mais Ninguém"], ["question_id", 410], ["correct", false], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 410], ["correct", false], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 410], ["correct", false], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]]  (124.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em um de seus casamentos, ao casar-se com a filha do Faraó, Salomão fez aliança com o reino:"], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egípcio"], ["question_id", 411], ["correct", true], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Persa"], ["question_id", 411], ["correct", false], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônica"], ["question_id", 411], ["correct", false], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Macedônico"], ["question_id", 411], ["correct", false], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]]  (125.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em uma das ocasiões em que Pedro orava no telhado, que visão ele recebeu de Deus?"], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Lençol Cheio de Animais"], ["question_id", 412], ["correct", true], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Céu"], ["question_id", 412], ["correct", false], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Futuro de Jerusalém"], ["question_id", 412], ["correct", false], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Da Volta de Cristo"], ["question_id", 412], ["correct", false], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]]  (125.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Enquanto estava na casa de Simão, o leproso, o que uma mulher fez com um vaso de alabastro cheio de bálsamo?"], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Derramou O Bálsamo Sobre Jesus"], ["question_id", 413], ["correct", true], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ela Usou Para Preparar Os Alimentos"], ["question_id", 413], ["correct", false], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Colocou-o Na Frente de Jesus"], ["question_id", 413], ["correct", false], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ofereceu O Alabastro Para Ser Dado Aos Pobres"], ["question_id", 413], ["correct", false], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]]  (150.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Enquanto esteve na cidade de Jope, Pedro esteve hospedado na casa de:"], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Simão, O Curtidor"], ["question_id", 414], ["correct", true], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Simeão, O Alfaiate"], ["question_id", 414], ["correct", false], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel, O Carpinteiro"], ["question_id", 414], ["correct", false], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salazar, O Pescador"], ["question_id", 414], ["correct", false], ["created_at", 2016-08-19 02:46:56 UTC], ["updated_at", 2016-08-19 02:46:56 UTC]]  (166.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Enquanto Sansão estava com uma prostituta, o que o povo da cidade de Gaza estava fazendo?"], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Conspirando Para Matá-lo"], ["question_id", 415], ["correct", true], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dormindo"], ["question_id", 415], ["correct", false], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Agrupando-se Para Louvar"], ["question_id", 415], ["correct", false], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fugindo Pois Souberam da Presença de Sansão"], ["question_id", 415], ["correct", false], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]]  (132.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Entre as alternativas abaixo, o que não havia dentro da Arca da Aliança?"], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Cajado de Moisés"], ["question_id", 416], ["correct", true], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Tábuas da Lei de Deus"], ["question_id", 416], ["correct", false], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vaso Contendo Maná"], ["question_id", 416], ["correct", false], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vara de Arão"], ["question_id", 416], ["correct", false], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]]  (108.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Entre os filhos de Davi, qual deles não nasceu durante seu reinado em Hebrom?"], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 417], ["correct", true], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 417], ["correct", false], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sefatias"], ["question_id", 417], ["correct", false], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Itreão"], ["question_id", 417], ["correct", false], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]]  (176.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Entre os irmãos Moisés, Arão e Míriã, qual dentre eles era o mais velho?"], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 418], ["correct", true], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 418], ["correct", false], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 418], ["correct", false], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhum, Pois Eram Trigêmeos"], ["question_id", 418], ["correct", false], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]]  (117.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Esaú vendeu seu direito de filho mais velho em troca de quê?"], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ensopado"], ["question_id", 419], ["correct", true], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "24 Kg de Ouro"], ["question_id", 419], ["correct", false], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pão"], ["question_id", 419], ["correct", false], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "24 Camêlos"], ["question_id", 419], ["correct", false], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]]  (99.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Esaú, filho de Isaque e Rebeca, era:"], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ruivo"], ["question_id", 420], ["correct", true], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Loiro"], ["question_id", 420], ["correct", false], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moreno"], ["question_id", 420], ["correct", false], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todas As Alternativas Estão Incorretas"], ["question_id", 420], ["correct", false], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]]  (126.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Ester casou-se com o rei persa:"], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assuero"], ["question_id", 421], ["correct", true], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 421], ["correct", false], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 421], ["correct", false], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiro"], ["question_id", 421], ["correct", false], ["created_at", 2016-08-19 02:46:57 UTC], ["updated_at", 2016-08-19 02:46:57 UTC]]  (142.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Ester, após ter casado com o rei Assuero, passou a ser a rainha do império:"], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Persa"], ["question_id", 422], ["correct", true], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônico"], ["question_id", 422], ["correct", false], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenício"], ["question_id", 422], ["correct", false], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egípcio"], ["question_id", 422], ["correct", false], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]]  (149.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Foi levado para o cativeiro da Babilônia:"], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todas As Afirmativas Estão Corretas"], ["question_id", 423], ["correct", true], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 423], ["correct", false], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sadraque"], ["question_id", 423], ["correct", false], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mesaque"], ["question_id", 423], ["correct", false], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]]  (141.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Gamaliel foi professor do apóstolo:"], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 424], ["correct", true], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lucas"], ["question_id", 424], ["correct", false], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 424], ["correct", false], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filipe"], ["question_id", 424], ["correct", false], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]]  (108.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Há quantas promessas na Bíblia?"], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3573"], ["question_id", 425], ["correct", true], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1831"], ["question_id", 425], ["correct", false], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2612"], ["question_id", 425], ["correct", false], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5399"], ["question_id", 425], ["correct", false], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]]  (124.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Herodes Agripa mandou matar os apóstolos pois sentia que o cristianismo era uma ameaça à sua religião:"], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judaica"], ["question_id", 426], ["correct", true], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pagã"], ["question_id", 426], ["correct", false], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenícia"], ["question_id", 426], ["correct", false], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Romana"], ["question_id", 426], ["correct", false], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]]  (185.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Herodes decretou que todos os meninos fossem mortos com idade inferior a:"], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 Anos"], ["question_id", 427], ["correct", true], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Ano"], ["question_id", 427], ["correct", false], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "6 Meses"], ["question_id", 427], ["correct", false], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5 Anos"], ["question_id", 427], ["correct", false], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]]  (99.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Herodias pediu a cabeça de quem a Herodes?"], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 428], ["correct", true], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saulo"], ["question_id", 428], ["correct", false], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José de Arimatéia"], ["question_id", 428], ["correct", false], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 428], ["correct", false], ["created_at", 2016-08-19 02:46:58 UTC], ["updated_at", 2016-08-19 02:46:58 UTC]]  (125.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Imediatamente antes da coroação do rei Salomão, quem pretendia governar o trono real a ser deixado por Davi?"], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adonias"], ["question_id", 429], ["correct", true], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Natã"], ["question_id", 429], ["correct", false], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samua"], ["question_id", 429], ["correct", false], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joabe"], ["question_id", 429], ["correct", false], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]]  (174.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Incluindo Jesus, quantas pessoas jantaram com Ele na última Páscoa?"], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "13"], ["question_id", 430], ["correct", true], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12"], ["question_id", 430], ["correct", false], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "11"], ["question_id", 430], ["correct", false], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10"], ["question_id", 430], ["correct", false], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]]  (133.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Incluindo Jesus, quantos homens foram crucificados com Ele?"], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 431], ["correct", true], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 431], ["correct", false], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 431], ["correct", false], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Foi Crucificado Sozinho"], ["question_id", 431], ["correct", false], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]]  (109.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Isabel foi mãe de:"], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 432], ["correct", true], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas Iscariotes"], ["question_id", 432], ["correct", false], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mateus"], ["question_id", 432], ["correct", false], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 432], ["correct", false], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]]  (101.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Isaque recebe um beijo enganoso de:"], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 433], ["correct", true], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 433], ["correct", false], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 433], ["correct", false], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 433], ["correct", false], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]]  (124.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Ismael e seu irmão Isaque nasceram com uma diferença de:"], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4 Anos"], ["question_id", 434], ["correct", true], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 Anos"], ["question_id", 434], ["correct", false], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Ano"], ["question_id", 434], ["correct", false], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhum Ano, Pois Eram Gêmeos"], ["question_id", 434], ["correct", false], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]]  (117.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Israel era composta por quantas tribos?"], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12"], ["question_id", 435], ["correct", true], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "11"], ["question_id", 435], ["correct", false], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10"], ["question_id", 435], ["correct", false], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "13"], ["question_id", 435], ["correct", false], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]]  (124.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jabal foi o pai dos que:"], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Habitam Em Tendas"], ["question_id", 436], ["correct", true], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tocam Harpa"], ["question_id", 436], ["correct", false], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tocam Flauta"], ["question_id", 436], ["correct", false], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Possuem Carneiros"], ["question_id", 436], ["correct", false], ["created_at", 2016-08-19 02:46:59 UTC], ["updated_at", 2016-08-19 02:46:59 UTC]]  (108.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jacó tinha um irmão gêmeo, que se chamava:"], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 437], ["correct", true], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 437], ["correct", false], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 437], ["correct", false], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 437], ["correct", false], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]]  (108.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jacó, irmão gêmeo de Esaú, nasceu segurando:"], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Calcanhar de Esaú"], ["question_id", 438], ["correct", true], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Orelha"], ["question_id", 438], ["correct", false], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Cordão Umbilical"], ["question_id", 438], ["correct", false], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Cabelos de Esaú"], ["question_id", 438], ["correct", false], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]]  (109.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jedidias era também conhecido por:"], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 439], ["correct", true], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 439], ["correct", false], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 439], ["correct", false], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 439], ["correct", false], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]]  (108.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jemima era esposa de:"], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jó"], ["question_id", 440], ["correct", true], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ló"], ["question_id", 440], ["correct", false], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 440], ["correct", false], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 440], ["correct", false], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]]  (109.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jericó foi a primeira cidade conquistada pelos israelitas, quando estes eram comandados por:"], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 441], ["correct", true], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 441], ["correct", false], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 441], ["correct", false], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 441], ["correct", false], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]]  (108.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jeroboão governou as tribos de Israel do:"], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Norte"], ["question_id", 442], ["correct", true], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sul"], ["question_id", 442], ["correct", false], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Leste"], ["question_id", 442], ["correct", false], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oeste"], ["question_id", 442], ["correct", false], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]]  (116.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jesus chamou André para ser discípulo quando este estava:"], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pescando"], ["question_id", 443], ["correct", true], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caçando"], ["question_id", 443], ["correct", false], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Almoçando"], ["question_id", 443], ["correct", false], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dormindo"], ["question_id", 443], ["correct", false], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]]  (117.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jesus chamou Pedro para ser discípulo quando este estava:"], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pescando"], ["question_id", 444], ["correct", true], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dormindo"], ["question_id", 444], ["correct", false], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Almoçando"], ["question_id", 444], ["correct", false], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caçando"], ["question_id", 444], ["correct", false], ["created_at", 2016-08-19 02:47:00 UTC], ["updated_at", 2016-08-19 02:47:00 UTC]]  (100.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jesus curou 10 homens que sofriam de qual enfermidade?"], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lepra"], ["question_id", 445], ["correct", true], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Epilepsia"], ["question_id", 445], ["correct", false], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Loucura"], ["question_id", 445], ["correct", false], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cegueira"], ["question_id", 445], ["correct", false], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]]  (100.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jesus disse aos cambistas e àqueles que estavam vendendo que sua casa seria chamada de:"], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Casa de Oração"], ["question_id", 446], ["correct", true], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Casa de Caridade"], ["question_id", 446], ["correct", false], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Casa de Compreensão"], ["question_id", 446], ["correct", false], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Casa do Pai"], ["question_id", 446], ["correct", false], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]]  (108.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jesus disse que após o sal ter perdido o seu gosto, o mesmo passaria a ser:"], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Inútil"], ["question_id", 447], ["correct", true], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amargo"], ["question_id", 447], ["correct", false], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adocicado"], ["question_id", 447], ["correct", false], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Embolorado"], ["question_id", 447], ["correct", false], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]]  (109.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jesus disse que não havia vindo para chamar os justos, mas para chamar quem?"], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Pecadores"], ["question_id", 448], ["correct", true], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Pobres"], ["question_id", 448], ["correct", false], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Cristãos"], ["question_id", 448], ["correct", false], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Miseráveis"], ["question_id", 448], ["correct", false], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]]  (116.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jesus e João Batista eram, entre si:"], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Primos"], ["question_id", 449], ["correct", true], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vizinhos"], ["question_id", 449], ["correct", false], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tios"], ["question_id", 449], ["correct", false], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmãos"], ["question_id", 449], ["correct", false], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]]  (109.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jesus ensinou de que haveremos de prestar contas no dia do juízo de:"], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cada Palavra Fútil Que Dissermos"], ["question_id", 450], ["correct", true], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "De Cada Alimento Imundo Que Ingerirmos"], ["question_id", 450], ["correct", false], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Das Nossas Posses Materiais"], ["question_id", 450], ["correct", false], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Da Forma Egoista Como Gastamos O Dinheiro"], ["question_id", 450], ["correct", false], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]]  (108.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jesus ensinou que deveríamos amar aos nossos:"], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Inimigos"], ["question_id", 451], ["correct", true], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amigos"], ["question_id", 451], ["correct", false], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Parentes"], ["question_id", 451], ["correct", false], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vizinhos"], ["question_id", 451], ["correct", false], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]]  (125.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jesus expulsou os mercadores que haviam no:"], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Templo"], ["question_id", 452], ["correct", true], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mercado Municipal"], ["question_id", 452], ["correct", false], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sinédrio"], ["question_id", 452], ["correct", false], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Monte das Oliveiras"], ["question_id", 452], ["correct", false], ["created_at", 2016-08-19 02:47:01 UTC], ["updated_at", 2016-08-19 02:47:01 UTC]]  (150.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jesus foi batizado por quem?"], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 453], ["correct", true], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 453], ["correct", false], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 453], ["correct", false], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 453], ["correct", false], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]]  (142.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jesus foi traído por Judas Iscariotes através de um:"], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Beijo"], ["question_id", 454], ["correct", true], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraço"], ["question_id", 454], ["correct", false], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tapa No Rosto"], ["question_id", 454], ["correct", false], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Chute Na Perna"], ["question_id", 454], ["correct", false], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]]  (124.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jesus nos diz para não arremessar pérolas aos:"], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porcos"], ["question_id", 455], ["correct", true], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cavalos"], ["question_id", 455], ["correct", false], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gentios"], ["question_id", 455], ["correct", false], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pecadores"], ["question_id", 455], ["correct", false], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]]  (134.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jesus nos ensinou que devemos orar:"], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Aqueles Que Nos Perseguem"], ["question_id", 456], ["correct", true], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Aqueles Que Sofrem"], ["question_id", 456], ["correct", false], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Aqueles Que São Abastados de Vida"], ["question_id", 456], ["correct", false], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Aqueles Que São Miseráveis de Coração"], ["question_id", 456], ["correct", false], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]]  (125.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jó residia na terra de:"], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uz"], ["question_id", 457], ["correct", true], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ur"], ["question_id", 457], ["correct", false], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caldeus"], ["question_id", 457], ["correct", false], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nínive"], ["question_id", 457], ["correct", false], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]]  (108.6ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jonas pregou arrependimento durante 40 dias aos cidadãos de qual cidade?"], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nínive"], ["question_id", 458], ["correct", true], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônia"], ["question_id", 458], ["correct", false], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sodoma"], ["question_id", 458], ["correct", false], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gomorra"], ["question_id", 458], ["correct", false], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]]  (109.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jônatas matou um gigante filisteu que tinha quantos dedos nas mãos e nos pés?"], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12"], ["question_id", 459], ["correct", true], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10"], ["question_id", 459], ["correct", false], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "8"], ["question_id", 459], ["correct", false], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "14"], ["question_id", 459], ["correct", false], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]]  (125.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jônatas matou um gigante filisteu, assim como Davi. Qual era o parentesco entre eles?"], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tio e Sobrinho"], ["question_id", 460], ["correct", true], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pai e Filho"], ["question_id", 460], ["correct", false], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmãos"], ["question_id", 460], ["correct", false], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Eram Parentes"], ["question_id", 460], ["correct", false], ["created_at", 2016-08-19 02:47:02 UTC], ["updated_at", 2016-08-19 02:47:02 UTC]]  (166.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jônatas teve um filho com o nome de:"], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mefibosete"], ["question_id", 461], ["correct", true], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ananias"], ["question_id", 461], ["correct", false], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 461], ["correct", false], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Melquisedeque"], ["question_id", 461], ["correct", false], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]]  (117.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Joquebede tem como filhos:"], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todas As Alternativas Corretas"], ["question_id", 462], ["correct", true], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 462], ["correct", false], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 462], ["correct", false], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 462], ["correct", false], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]]  (117.9ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "José foi trabalhar como escravo na casa de:"], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Potifar"], ["question_id", 463], ["correct", true], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assuero"], ["question_id", 463], ["correct", false], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acaz"], ["question_id", 463], ["correct", false], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Faraó"], ["question_id", 463], ["correct", false], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]]  (143.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "José foi vendido como escravo no Egito. Qual foi o valor pago por ele?"], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "20 Barras de Prata"], ["question_id", 464], ["correct", true], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "40 Kg de Ouro"], ["question_id", 464], ["correct", false], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5 Camêlos"], ["question_id", 464], ["correct", false], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "300 Dias de Serviços Forçados"], ["question_id", 464], ["correct", false], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]]  (133.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "José foi vendido como escravo, ao preço de 20 barras de prata, para:\n1,"], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Egito"], ["question_id", 465], ["correct", true], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Pérsia"], ["question_id", 465], ["correct", false], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Babilônia"], ["question_id", 465], ["correct", false], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Síria"], ["question_id", 465], ["correct", false], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]]  (150.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "José teve um sonho onde viu curvando-se para ele:"], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Sol, A Lua e As Estrelas"], ["question_id", 466], ["correct", true], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Árvores Ciprestes do Líbano"], ["question_id", 466], ["correct", false], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Arco-íris"], ["question_id", 466], ["correct", false], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Estátua do Bezerro de Ouro"], ["question_id", 466], ["correct", false], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]]  (124.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "José teve um sonho, onde viu:"], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Sol, A Lua e As Estrelas Se Curvando Para Ele"], ["question_id", 467], ["correct", true], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Estátua de Si Mesmo de Ouro, Prata e Bronze"], ["question_id", 467], ["correct", false], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 Vacas Magras Devorando 10 Vacas Gordas"], ["question_id", 467], ["correct", false], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Rio Nilo Tornando-se Em Sangue"], ["question_id", 467], ["correct", false], ["created_at", 2016-08-19 02:47:03 UTC], ["updated_at", 2016-08-19 02:47:03 UTC]]  (158.8ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "José, filho de Jacó, tornou-se um grande líder da nação:"], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egípcia"], ["question_id", 468], ["correct", true], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenícia"], ["question_id", 468], ["correct", false], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hebréia"], ["question_id", 468], ["correct", false], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Grega"], ["question_id", 468], ["correct", false], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]]  (107.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jubal foi o pai dos que tocam:"], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Harpa"], ["question_id", 469], ["correct", true], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cítara"], ["question_id", 469], ["correct", false], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tamborim"], ["question_id", 469], ["correct", false], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zabumba"], ["question_id", 469], ["correct", false], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]]  (117.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Lídia foi a primeira mulher:"], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Ser Convertida Na Europa"], ["question_id", 470], ["correct", true], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Casar-se Com Herodes, O Grande"], ["question_id", 470], ["correct", false], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Sentenciar A Morte de Jesus"], ["question_id", 470], ["correct", false], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Tocar Em Jesus Após Sua Ressurreição"], ["question_id", 470], ["correct", false], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]]  (107.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Ló, sobrinho de Abraão, habitava em qual cidade?"], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sodoma"], ["question_id", 471], ["correct", true], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gomorra"], ["question_id", 471], ["correct", false], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nínive"], ["question_id", 471], ["correct", false], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 471], ["correct", false], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]]  (125.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Lucas, autor do Livro de Lucas, foi:"], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escritor"], ["question_id", 472], ["correct", true], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apóstolo de Cristo e Escritor"], ["question_id", 472], ["correct", false], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apóstolo de Cristo"], ["question_id", 472], ["correct", false], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nem Apóstolo de Cristo e Nem Escritor"], ["question_id", 472], ["correct", false], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]]  (116.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Marcos, autor do Livro de Marcos, foi:"], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escritor"], ["question_id", 473], ["correct", true], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escritor e Apóstolo de Cristo"], ["question_id", 473], ["correct", false], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas Apóstolo de Cristo"], ["question_id", 473], ["correct", false], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Foi Nenm Apóstolo e Nem Escritor"], ["question_id", 473], ["correct", false], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]]  (137.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Maria, mãe de Jesus, e Isabel, mãe de João Batista, eram entre si:"], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Primas"], ["question_id", 474], ["correct", true], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vizinhas"], ["question_id", 474], ["correct", false], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tias"], ["question_id", 474], ["correct", false], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmãs"], ["question_id", 474], ["correct", false], ["created_at", 2016-08-19 02:47:04 UTC], ["updated_at", 2016-08-19 02:47:04 UTC]]  (321.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Martinho Lutero foi o primeiro tradutor da Bíblia para a língua:\n1,"], ["created_at", 2016-08-19 02:47:05 UTC], ["updated_at", 2016-08-19 02:47:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Alemã"], ["question_id", 475], ["correct", true], ["created_at", 2016-08-19 02:47:05 UTC], ["updated_at", 2016-08-19 02:47:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Italiana"], ["question_id", 475], ["correct", false], ["created_at", 2016-08-19 02:47:05 UTC], ["updated_at", 2016-08-19 02:47:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Espanhola"], ["question_id", 475], ["correct", false], ["created_at", 2016-08-19 02:47:05 UTC], ["updated_at", 2016-08-19 02:47:05 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Inglesa"], ["question_id", 475], ["correct", false], ["created_at", 2016-08-19 02:47:05 UTC], ["updated_at", 2016-08-19 02:47:05 UTC]]  (132.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Matusalém, o homem mais idoso da Bíblia, teve como neto:"], ["created_at", 2016-08-19 02:47:05 UTC], ["updated_at", 2016-08-19 02:47:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noé"], ["question_id", 476], ["correct", true], ["created_at", 2016-08-19 02:47:05 UTC], ["updated_at", 2016-08-19 02:47:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 476], ["correct", false], ["created_at", 2016-08-19 02:47:05 UTC], ["updated_at", 2016-08-19 02:47:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 476], ["correct", false], ["created_at", 2016-08-19 02:47:05 UTC], ["updated_at", 2016-08-19 02:47:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abel"], ["question_id", 476], ["correct", false], ["created_at", 2016-08-19 02:47:05 UTC], ["updated_at", 2016-08-19 02:47:05 UTC]]  (133.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Matusalém, o homem mais velho da Bíblia, morreu antes de seu pai (Enoque). Essa afirmação é:\n1,"], ["created_at", 2016-08-19 02:47:05 UTC], ["updated_at", 2016-08-19 02:47:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Verdadeira"], ["question_id", 477], ["correct", true], ["created_at", 2016-08-19 02:47:05 UTC], ["updated_at", 2016-08-19 02:47:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Falsa"], ["question_id", 477], ["correct", false], ["created_at", 2016-08-19 02:47:05 UTC], ["updated_at", 2016-08-19 02:47:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Não Morreu"], ["question_id", 477], ["correct", false], ["created_at", 2016-08-19 02:47:05 UTC], ["updated_at", 2016-08-19 02:47:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Morreu, Mas Foi Transladado Ao Céu"], ["question_id", 477], ["correct", false], ["created_at", 2016-08-19 02:47:05 UTC], ["updated_at", 2016-08-19 02:47:05 UTC]]  (133.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Mesaque, Sadraque e Abede-Nego foram jogados em uma fornalha ardente pelo rei da:"], ["created_at", 2016-08-19 02:47:05 UTC], ["updated_at", 2016-08-19 02:47:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônia"], ["question_id", 478], ["correct", true], ["created_at", 2016-08-19 02:47:05 UTC], ["updated_at", 2016-08-19 02:47:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenícia"], ["question_id", 478], ["correct", false], ["created_at", 2016-08-19 02:47:05 UTC], ["updated_at", 2016-08-19 02:47:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Grécia"], ["question_id", 478], ["correct", false], ["created_at", 2016-08-19 02:47:05 UTC], ["updated_at", 2016-08-19 02:47:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Medo-pérsia"], ["question_id", 478], ["correct", false], ["created_at", 2016-08-19 02:47:05 UTC], ["updated_at", 2016-08-19 02:47:05 UTC]]  (141.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Miriã ficou enciumada por qual motivo?\n1,"], ["created_at", 2016-08-19 02:47:05 UTC], ["updated_at", 2016-08-19 02:47:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Êxito de Seu Irmão Mais Novo"], ["question_id", 479], ["correct", true], ["created_at", 2016-08-19 02:47:05 UTC], ["updated_at", 2016-08-19 02:47:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Seu Marido Tinha Uma Concubina"], ["question_id", 479], ["correct", false], ["created_at", 2016-08-19 02:47:05 UTC], ["updated_at", 2016-08-19 02:47:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Jamais Ter Casado A Quem Amava"], ["question_id", 479], ["correct", false], ["created_at", 2016-08-19 02:47:05 UTC], ["updated_at", 2016-08-19 02:47:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Não Poder Ter Filhos"], ["question_id", 479], ["correct", false], ["created_at", 2016-08-19 02:47:05 UTC], ["updated_at", 2016-08-19 02:47:05 UTC]]  (124.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na 1ª vez que Noé soltou uma pomba, o que ela trouxe em seu bico?"], ["created_at", 2016-08-19 02:47:05 UTC], ["updated_at", 2016-08-19 02:47:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nada"], ["question_id", 480], ["correct", true], ["created_at", 2016-08-19 02:47:05 UTC], ["updated_at", 2016-08-19 02:47:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Ramo de Oliveira"], ["question_id", 480], ["correct", false], ["created_at", 2016-08-19 02:47:05 UTC], ["updated_at", 2016-08-19 02:47:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Graveto de Figueira"], ["question_id", 480], ["correct", false], ["created_at", 2016-08-19 02:47:05 UTC], ["updated_at", 2016-08-19 02:47:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Peixe"], ["question_id", 480], ["correct", false], ["created_at", 2016-08-19 02:47:05 UTC], ["updated_at", 2016-08-19 02:47:05 UTC]]  (149.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na 3ª vez que Noé soltou uma pomba, o que ela trouxe?"], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ela Não Retornou À Arca"], ["question_id", 481], ["correct", true], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Ramo de Oliveira"], ["question_id", 481], ["correct", false], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Peixe"], ["question_id", 481], ["correct", false], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Veio Acompanhada Por Uma Outra Pomba"], ["question_id", 481], ["correct", false], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]]  (149.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na 5ª praga enviada por Deus ao Egito, quem foi poupado de uma pestilência muito grave?"], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Animais dos Israelitas"], ["question_id", 482], ["correct", true], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Animais dos Egípcios"], ["question_id", 482], ["correct", false], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Filhos dos Israelitas"], ["question_id", 482], ["correct", false], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Animais dos Egípcios"], ["question_id", 482], ["correct", false], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]]  (108.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na 7ª praga que se abateu sobre os egípcios, além das pedras de fogo Deus enviou também:"], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trovões"], ["question_id", 483], ["correct", true], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vento"], ["question_id", 483], ["correct", false], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Neve"], ["question_id", 483], ["correct", false], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Chuva"], ["question_id", 483], ["correct", false], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]]  (133.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na biblioteca da Universidade de Gottingen, Alemanha, existe uma Bíblia que foi escrita em 470 folhas de:"], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Palmeira"], ["question_id", 484], ["correct", true], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Coqueiro"], ["question_id", 484], ["correct", false], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acácia"], ["question_id", 484], ["correct", false], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Limoeiro"], ["question_id", 484], ["correct", false], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]]  (150.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na biblioteca da Universidade de Gottingen, Alemanha, existe uma Bíblia que foi escrita em quantas folhas de palmeira?\n1,"], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "470"], ["question_id", 485], ["correct", true], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1930"], ["question_id", 485], ["correct", false], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "940"], ["question_id", 485], ["correct", false], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "251"], ["question_id", 485], ["correct", false], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]]  (124.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na casa de quem Jesus teve seus pés ungidos por uma mulher?"], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Simão"], ["question_id", 486], ["correct", true], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 486], ["correct", false], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marta"], ["question_id", 486], ["correct", false], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zaqueu"], ["question_id", 486], ["correct", false], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]]  (116.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na cidade de Jericó, em que local Raabe escondeu os espias enviados por Josué?"], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Entre As Canas do Linho"], ["question_id", 487], ["correct", true], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Um Vasto Campo"], ["question_id", 487], ["correct", false], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Um Estábulo"], ["question_id", 487], ["correct", false], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dentro do Palácio Real"], ["question_id", 487], ["correct", false], ["created_at", 2016-08-19 02:47:06 UTC], ["updated_at", 2016-08-19 02:47:06 UTC]]  (141.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na cidade de Nazaré morou:"], ["created_at", 2016-08-19 02:47:07 UTC], ["updated_at", 2016-08-19 02:47:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria, Mãe de Jesus"], ["question_id", 488], ["correct", true], ["created_at", 2016-08-19 02:47:07 UTC], ["updated_at", 2016-08-19 02:47:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Agripa"], ["question_id", 488], ["correct", false], ["created_at", 2016-08-19 02:47:07 UTC], ["updated_at", 2016-08-19 02:47:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodias"], ["question_id", 488], ["correct", false], ["created_at", 2016-08-19 02:47:07 UTC], ["updated_at", 2016-08-19 02:47:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 488], ["correct", false], ["created_at", 2016-08-19 02:47:07 UTC], ["updated_at", 2016-08-19 02:47:07 UTC]]  (158.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na entrada triunfal de Jesus em Jerusalém, foram estendidos ramos de:\n1,"], ["created_at", 2016-08-19 02:47:07 UTC], ["updated_at", 2016-08-19 02:47:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Palmeira"], ["question_id", 489], ["correct", true], ["created_at", 2016-08-19 02:47:07 UTC], ["updated_at", 2016-08-19 02:47:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cipreste"], ["question_id", 489], ["correct", false], ["created_at", 2016-08-19 02:47:07 UTC], ["updated_at", 2016-08-19 02:47:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cedro do Líbano"], ["question_id", 489], ["correct", false], ["created_at", 2016-08-19 02:47:07 UTC], ["updated_at", 2016-08-19 02:47:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zimbro"], ["question_id", 489], ["correct", false], ["created_at", 2016-08-19 02:47:07 UTC], ["updated_at", 2016-08-19 02:47:07 UTC]]  (157.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na época de Moisés, o povo israelita era tido no Egito como um povo:"], ["created_at", 2016-08-19 02:47:07 UTC], ["updated_at", 2016-08-19 02:47:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escravo"], ["question_id", 490], ["correct", true], ["created_at", 2016-08-19 02:47:07 UTC], ["updated_at", 2016-08-19 02:47:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Convidado"], ["question_id", 490], ["correct", false], ["created_at", 2016-08-19 02:47:07 UTC], ["updated_at", 2016-08-19 02:47:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amigo"], ["question_id", 490], ["correct", false], ["created_at", 2016-08-19 02:47:07 UTC], ["updated_at", 2016-08-19 02:47:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Intruso"], ["question_id", 490], ["correct", false], ["created_at", 2016-08-19 02:47:07 UTC], ["updated_at", 2016-08-19 02:47:07 UTC]]  (124.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na época de Moisés, quantas pragas ocorreram no Egito pelo fato do Faraó não autorizar a saída do povo hebreu?"], ["created_at", 2016-08-19 02:47:07 UTC], ["updated_at", 2016-08-19 02:47:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10"], ["question_id", 491], ["correct", true], ["created_at", 2016-08-19 02:47:07 UTC], ["updated_at", 2016-08-19 02:47:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "8"], ["question_id", 491], ["correct", false], ["created_at", 2016-08-19 02:47:07 UTC], ["updated_at", 2016-08-19 02:47:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 491], ["correct", false], ["created_at", 2016-08-19 02:47:07 UTC], ["updated_at", 2016-08-19 02:47:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 491], ["correct", false], ["created_at", 2016-08-19 02:47:07 UTC], ["updated_at", 2016-08-19 02:47:07 UTC]]  (125.0ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na época do povo israelita, Babilônia estava situada às margens do rio:"], ["created_at", 2016-08-19 02:47:07 UTC], ["updated_at", 2016-08-19 02:47:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eufrates"], ["question_id", 492], ["correct", true], ["created_at", 2016-08-19 02:47:07 UTC], ["updated_at", 2016-08-19 02:47:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jordão"], ["question_id", 492], ["correct", false], ["created_at", 2016-08-19 02:47:07 UTC], ["updated_at", 2016-08-19 02:47:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nilo"], ["question_id", 492], ["correct", false], ["created_at", 2016-08-19 02:47:07 UTC], ["updated_at", 2016-08-19 02:47:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Manessés"], ["question_id", 492], ["correct", false], ["created_at", 2016-08-19 02:47:07 UTC], ["updated_at", 2016-08-19 02:47:07 UTC]]  (149.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na época em que Jesus viveu, a cidade de Nazaré estava localizada em qual região?"], ["created_at", 2016-08-19 02:47:07 UTC], ["updated_at", 2016-08-19 02:47:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Galiléia"], ["question_id", 493], ["correct", true], ["created_at", 2016-08-19 02:47:07 UTC], ["updated_at", 2016-08-19 02:47:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judéia"], ["question_id", 493], ["correct", false], ["created_at", 2016-08-19 02:47:07 UTC], ["updated_at", 2016-08-19 02:47:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 493], ["correct", false], ["created_at", 2016-08-19 02:47:07 UTC], ["updated_at", 2016-08-19 02:47:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenícia"], ["question_id", 493], ["correct", false], ["created_at", 2016-08-19 02:47:07 UTC], ["updated_at", 2016-08-19 02:47:07 UTC]]  (157.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na época em que Jesus viveu, a Judéia era governada por:"], ["created_at", 2016-08-19 02:47:08 UTC], ["updated_at", 2016-08-19 02:47:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 494], ["correct", true], ["created_at", 2016-08-19 02:47:08 UTC], ["updated_at", 2016-08-19 02:47:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes, O Grande"], ["question_id", 494], ["correct", false], ["created_at", 2016-08-19 02:47:08 UTC], ["updated_at", 2016-08-19 02:47:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "César Augusto"], ["question_id", 494], ["correct", false], ["created_at", 2016-08-19 02:47:08 UTC], ["updated_at", 2016-08-19 02:47:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 494], ["correct", false], ["created_at", 2016-08-19 02:47:08 UTC], ["updated_at", 2016-08-19 02:47:08 UTC]]  (150.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na época em que Jesus viveu, em qual província localizava-se a cidade de Caná?"], ["created_at", 2016-08-19 02:47:08 UTC], ["updated_at", 2016-08-19 02:47:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Galiléia"], ["question_id", 495], ["correct", true], ["created_at", 2016-08-19 02:47:08 UTC], ["updated_at", 2016-08-19 02:47:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judéia"], ["question_id", 495], ["correct", false], ["created_at", 2016-08-19 02:47:08 UTC], ["updated_at", 2016-08-19 02:47:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 495], ["correct", false], ["created_at", 2016-08-19 02:47:08 UTC], ["updated_at", 2016-08-19 02:47:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Iduméia"], ["question_id", 495], ["correct", false], ["created_at", 2016-08-19 02:47:08 UTC], ["updated_at", 2016-08-19 02:47:08 UTC]]  (158.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na época que Jesus viveu, a estrada que ligava Jerusalém a Jericó era conhecida por haver muitos:"], ["created_at", 2016-08-19 02:47:08 UTC], ["updated_at", 2016-08-19 02:47:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assaltantes"], ["question_id", 496], ["correct", true], ["created_at", 2016-08-19 02:47:08 UTC], ["updated_at", 2016-08-19 02:47:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Buracos"], ["question_id", 496], ["correct", false], ["created_at", 2016-08-19 02:47:08 UTC], ["updated_at", 2016-08-19 02:47:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pastores de Ovelhas"], ["question_id", 496], ["correct", false], ["created_at", 2016-08-19 02:47:08 UTC], ["updated_at", 2016-08-19 02:47:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Precipícios"], ["question_id", 496], ["correct", false], ["created_at", 2016-08-19 02:47:08 UTC], ["updated_at", 2016-08-19 02:47:08 UTC]]  (199.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na estrada para Emaús, 2 discípulos de Jesus encontraram-se com:"], ["created_at", 2016-08-19 02:47:08 UTC], ["updated_at", 2016-08-19 02:47:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 497], ["correct", true], ["created_at", 2016-08-19 02:47:08 UTC], ["updated_at", 2016-08-19 02:47:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria, Mãe de Jesus"], ["question_id", 497], ["correct", false], ["created_at", 2016-08-19 02:47:08 UTC], ["updated_at", 2016-08-19 02:47:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Soldados Romanos"], ["question_id", 497], ["correct", false], ["created_at", 2016-08-19 02:47:08 UTC], ["updated_at", 2016-08-19 02:47:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria Madalena"], ["question_id", 497], ["correct", false], ["created_at", 2016-08-19 02:47:08 UTC], ["updated_at", 2016-08-19 02:47:08 UTC]]  (190.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na estrada para qual cidade Jesus apareceu para 2 de Seus discípulos?"], ["created_at", 2016-08-19 02:47:08 UTC], ["updated_at", 2016-08-19 02:47:08 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Emaús"], ["question_id", 498], ["correct", true], ["created_at", 2016-08-19 02:47:08 UTC], ["updated_at", 2016-08-19 02:47:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cafarnaum"], ["question_id", 498], ["correct", false], ["created_at", 2016-08-19 02:47:08 UTC], ["updated_at", 2016-08-19 02:47:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 498], ["correct", false], ["created_at", 2016-08-19 02:47:08 UTC], ["updated_at", 2016-08-19 02:47:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 498], ["correct", false], ["created_at", 2016-08-19 02:47:08 UTC], ["updated_at", 2016-08-19 02:47:08 UTC]]  (142.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na igreja primitiva, quem deveria ungir os enfermos com óleo?"], ["created_at", 2016-08-19 02:47:08 UTC], ["updated_at", 2016-08-19 02:47:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Anciãos"], ["question_id", 499], ["correct", true], ["created_at", 2016-08-19 02:47:08 UTC], ["updated_at", 2016-08-19 02:47:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Sacerdotes"], ["question_id", 499], ["correct", false], ["created_at", 2016-08-19 02:47:08 UTC], ["updated_at", 2016-08-19 02:47:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas O Sumo-sacerdote"], ["question_id", 499], ["correct", false], ["created_at", 2016-08-19 02:47:08 UTC], ["updated_at", 2016-08-19 02:47:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Escribas"], ["question_id", 499], ["correct", false], ["created_at", 2016-08-19 02:47:08 UTC], ["updated_at", 2016-08-19 02:47:08 UTC]]  (149.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na parábola do Bom Samaritano, na estrada para qual cidade um homem havia sido surrado?"], ["created_at", 2016-08-19 02:47:09 UTC], ["updated_at", 2016-08-19 02:47:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jericó"], ["question_id", 500], ["correct", true], ["created_at", 2016-08-19 02:47:09 UTC], ["updated_at", 2016-08-19 02:47:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belém"], ["question_id", 500], ["correct", false], ["created_at", 2016-08-19 02:47:09 UTC], ["updated_at", 2016-08-19 02:47:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Damasco"], ["question_id", 500], ["correct", false], ["created_at", 2016-08-19 02:47:09 UTC], ["updated_at", 2016-08-19 02:47:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 500], ["correct", false], ["created_at", 2016-08-19 02:47:09 UTC], ["updated_at", 2016-08-19 02:47:09 UTC]]  (302.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na parábola do Filho Pródigo, o que fez o filho pródigo?"], ["created_at", 2016-08-19 02:47:09 UTC], ["updated_at", 2016-08-19 02:47:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deixou Sua Casa Após Ter Pego Sua Parte Na Herança"], ["question_id", 501], ["correct", true], ["created_at", 2016-08-19 02:47:09 UTC], ["updated_at", 2016-08-19 02:47:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Casou Com Sua Mãe"], ["question_id", 501], ["correct", false], ["created_at", 2016-08-19 02:47:09 UTC], ["updated_at", 2016-08-19 02:47:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matou Seu Irmão Abel"], ["question_id", 501], ["correct", false], ["created_at", 2016-08-19 02:47:09 UTC], ["updated_at", 2016-08-19 02:47:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deu Uma Surra Em Seu Pai"], ["question_id", 501], ["correct", false], ["created_at", 2016-08-19 02:47:09 UTC], ["updated_at", 2016-08-19 02:47:09 UTC]]  (150.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na parábola do Filho Pródigo, o que o filho pródigo fez ao se arrepender?"], ["created_at", 2016-08-19 02:47:09 UTC], ["updated_at", 2016-08-19 02:47:09 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Voltou Para Casa do Pai"], ["question_id", 502], ["correct", true], ["created_at", 2016-08-19 02:47:09 UTC], ["updated_at", 2016-08-19 02:47:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Suicidou-se"], ["question_id", 502], ["correct", false], ["created_at", 2016-08-19 02:47:09 UTC], ["updated_at", 2016-08-19 02:47:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Se Tornou Governador do Egito"], ["question_id", 502], ["correct", false], ["created_at", 2016-08-19 02:47:09 UTC], ["updated_at", 2016-08-19 02:47:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Promovido A Governador da Babilônia"], ["question_id", 502], ["correct", false], ["created_at", 2016-08-19 02:47:09 UTC], ["updated_at", 2016-08-19 02:47:09 UTC]]  (141.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na parábola do Filho Pródigo, quantos filhos tinha o homem?"], ["created_at", 2016-08-19 02:47:09 UTC], ["updated_at", 2016-08-19 02:47:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 503], ["correct", true], ["created_at", 2016-08-19 02:47:09 UTC], ["updated_at", 2016-08-19 02:47:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 503], ["correct", false], ["created_at", 2016-08-19 02:47:09 UTC], ["updated_at", 2016-08-19 02:47:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 503], ["correct", false], ["created_at", 2016-08-19 02:47:09 UTC], ["updated_at", 2016-08-19 02:47:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 503], ["correct", false], ["created_at", 2016-08-19 02:47:09 UTC], ["updated_at", 2016-08-19 02:47:09 UTC]]  (132.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na presença de quem Jesus foi culpado de blasfêmia?"], ["created_at", 2016-08-19 02:47:09 UTC], ["updated_at", 2016-08-19 02:47:09 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sumo Sacerdote e dos Anciãos"], ["question_id", 504], ["correct", true], ["created_at", 2016-08-19 02:47:09 UTC], ["updated_at", 2016-08-19 02:47:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Soldados Romanos"], ["question_id", 504], ["correct", false], ["created_at", 2016-08-19 02:47:09 UTC], ["updated_at", 2016-08-19 02:47:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 504], ["correct", false], ["created_at", 2016-08-19 02:47:09 UTC], ["updated_at", 2016-08-19 02:47:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes"], ["question_id", 504], ["correct", false], ["created_at", 2016-08-19 02:47:09 UTC], ["updated_at", 2016-08-19 02:47:09 UTC]]  (183.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na região montanhosa de Gileade, Jacó fez uma aliança com:"], ["created_at", 2016-08-19 02:47:10 UTC], ["updated_at", 2016-08-19 02:47:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Labão"], ["question_id", 505], ["correct", true], ["created_at", 2016-08-19 02:47:10 UTC], ["updated_at", 2016-08-19 02:47:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 505], ["correct", false], ["created_at", 2016-08-19 02:47:10 UTC], ["updated_at", 2016-08-19 02:47:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 505], ["correct", false], ["created_at", 2016-08-19 02:47:10 UTC], ["updated_at", 2016-08-19 02:47:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nicolau"], ["question_id", 505], ["correct", false], ["created_at", 2016-08-19 02:47:10 UTC], ["updated_at", 2016-08-19 02:47:10 UTC]]  (149.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na região montanhosa de Gileade, Labão fez uma aliança com:"], ["created_at", 2016-08-19 02:47:10 UTC], ["updated_at", 2016-08-19 02:47:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 506], ["correct", true], ["created_at", 2016-08-19 02:47:10 UTC], ["updated_at", 2016-08-19 02:47:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 506], ["correct", false], ["created_at", 2016-08-19 02:47:10 UTC], ["updated_at", 2016-08-19 02:47:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 506], ["correct", false], ["created_at", 2016-08-19 02:47:10 UTC], ["updated_at", 2016-08-19 02:47:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 506], ["correct", false], ["created_at", 2016-08-19 02:47:10 UTC], ["updated_at", 2016-08-19 02:47:10 UTC]]  (124.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na semana da criação, em que dia Deus descansou?"], ["created_at", 2016-08-19 02:47:10 UTC], ["updated_at", 2016-08-19 02:47:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No 7º"], ["question_id", 507], ["correct", true], ["created_at", 2016-08-19 02:47:10 UTC], ["updated_at", 2016-08-19 02:47:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No 5º"], ["question_id", 507], ["correct", false], ["created_at", 2016-08-19 02:47:10 UTC], ["updated_at", 2016-08-19 02:47:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No 1º"], ["question_id", 507], ["correct", false], ["created_at", 2016-08-19 02:47:10 UTC], ["updated_at", 2016-08-19 02:47:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No 4º"], ["question_id", 507], ["correct", false], ["created_at", 2016-08-19 02:47:10 UTC], ["updated_at", 2016-08-19 02:47:10 UTC]]  (108.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na visão que Deus deu ao centurião romano Cornélio, o anjo mandou buscar Pedro de qual cidade?"], ["created_at", 2016-08-19 02:47:10 UTC], ["updated_at", 2016-08-19 02:47:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jope"], ["question_id", 508], ["correct", true], ["created_at", 2016-08-19 02:47:10 UTC], ["updated_at", 2016-08-19 02:47:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nínive"], ["question_id", 508], ["correct", false], ["created_at", 2016-08-19 02:47:10 UTC], ["updated_at", 2016-08-19 02:47:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Roma"], ["question_id", 508], ["correct", false], ["created_at", 2016-08-19 02:47:10 UTC], ["updated_at", 2016-08-19 02:47:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Patmos"], ["question_id", 508], ["correct", false], ["created_at", 2016-08-19 02:47:10 UTC], ["updated_at", 2016-08-19 02:47:10 UTC]]  (141.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na visão que Deus deu ao centurião romano Cornélio, qual discípulo o anjo mandou buscar?"], ["created_at", 2016-08-19 02:47:10 UTC], ["updated_at", 2016-08-19 02:47:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 509], ["correct", true], ["created_at", 2016-08-19 02:47:10 UTC], ["updated_at", 2016-08-19 02:47:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 509], ["correct", false], ["created_at", 2016-08-19 02:47:10 UTC], ["updated_at", 2016-08-19 02:47:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mateus"], ["question_id", 509], ["correct", false], ["created_at", 2016-08-19 02:47:10 UTC], ["updated_at", 2016-08-19 02:47:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 509], ["correct", false], ["created_at", 2016-08-19 02:47:10 UTC], ["updated_at", 2016-08-19 02:47:10 UTC]]  (191.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Nabucodonosor era rei de qual país?"], ["created_at", 2016-08-19 02:47:10 UTC], ["updated_at", 2016-08-19 02:47:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônia"], ["question_id", 510], ["correct", true], ["created_at", 2016-08-19 02:47:10 UTC], ["updated_at", 2016-08-19 02:47:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assíria"], ["question_id", 510], ["correct", false], ["created_at", 2016-08-19 02:47:10 UTC], ["updated_at", 2016-08-19 02:47:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arábia"], ["question_id", 510], ["correct", false], ["created_at", 2016-08-19 02:47:10 UTC], ["updated_at", 2016-08-19 02:47:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Grécia"], ["question_id", 510], ["correct", false], ["created_at", 2016-08-19 02:47:10 UTC], ["updated_at", 2016-08-19 02:47:10 UTC]]  (182.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Nabucodonosor mandou jogar os amigos de Daniel em uma fornalha ardente pois os mesmos se recusaram a:"], ["created_at", 2016-08-19 02:47:10 UTC], ["updated_at", 2016-08-19 02:47:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Idolatrar Uma Grande Estátua"], ["question_id", 511], ["correct", true], ["created_at", 2016-08-19 02:47:10 UTC], ["updated_at", 2016-08-19 02:47:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Alimentar-se À Mesa do Rei"], ["question_id", 511], ["correct", false], ["created_at", 2016-08-19 02:47:10 UTC], ["updated_at", 2016-08-19 02:47:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Beber do Vinho do Rei"], ["question_id", 511], ["correct", false], ["created_at", 2016-08-19 02:47:11 UTC], ["updated_at", 2016-08-19 02:47:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cortar O Cabelo do Rei"], ["question_id", 511], ["correct", false], ["created_at", 2016-08-19 02:47:11 UTC], ["updated_at", 2016-08-19 02:47:11 UTC]]  (249.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Nabucodonosor reconstruiu a cidade de:"], ["created_at", 2016-08-19 02:47:11 UTC], ["updated_at", 2016-08-19 02:47:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônia"], ["question_id", 512], ["correct", true], ["created_at", 2016-08-19 02:47:11 UTC], ["updated_at", 2016-08-19 02:47:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 512], ["correct", false], ["created_at", 2016-08-19 02:47:11 UTC], ["updated_at", 2016-08-19 02:47:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nínive"], ["question_id", 512], ["correct", false], ["created_at", 2016-08-19 02:47:11 UTC], ["updated_at", 2016-08-19 02:47:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ogã-oblade"], ["question_id", 512], ["correct", false], ["created_at", 2016-08-19 02:47:11 UTC], ["updated_at", 2016-08-19 02:47:11 UTC]]  (132.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Nas bodas de Caná, Jesus operou o 1º milagre, transformando água em:"], ["created_at", 2016-08-19 02:47:11 UTC], ["updated_at", 2016-08-19 02:47:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vinho"], ["question_id", 513], ["correct", true], ["created_at", 2016-08-19 02:47:11 UTC], ["updated_at", 2016-08-19 02:47:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Azeite"], ["question_id", 513], ["correct", false], ["created_at", 2016-08-19 02:47:11 UTC], ["updated_at", 2016-08-19 02:47:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Água Mineral"], ["question_id", 513], ["correct", false], ["created_at", 2016-08-19 02:47:11 UTC], ["updated_at", 2016-08-19 02:47:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Óleo"], ["question_id", 513], ["correct", false], ["created_at", 2016-08-19 02:47:11 UTC], ["updated_at", 2016-08-19 02:47:11 UTC]]  (125.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Nas bodas de Caná, quantos jarros de água Jesus transformou em vinho?"], ["created_at", 2016-08-19 02:47:11 UTC], ["updated_at", 2016-08-19 02:47:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "6"], ["question_id", 514], ["correct", true], ["created_at", 2016-08-19 02:47:11 UTC], ["updated_at", 2016-08-19 02:47:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 514], ["correct", false], ["created_at", 2016-08-19 02:47:11 UTC], ["updated_at", 2016-08-19 02:47:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 514], ["correct", false], ["created_at", 2016-08-19 02:47:11 UTC], ["updated_at", 2016-08-19 02:47:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "8"], ["question_id", 514], ["correct", false], ["created_at", 2016-08-19 02:47:11 UTC], ["updated_at", 2016-08-19 02:47:11 UTC]]  (116.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Nas bodas de Caná, quem pediu a Jesus que transformasse a água em vinho?"], ["created_at", 2016-08-19 02:47:11 UTC], ["updated_at", 2016-08-19 02:47:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Mãe"], ["question_id", 515], ["correct", true], ["created_at", 2016-08-19 02:47:11 UTC], ["updated_at", 2016-08-19 02:47:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Pai da Noiva"], ["question_id", 515], ["correct", false], ["created_at", 2016-08-19 02:47:11 UTC], ["updated_at", 2016-08-19 02:47:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Pai"], ["question_id", 515], ["correct", false], ["created_at", 2016-08-19 02:47:11 UTC], ["updated_at", 2016-08-19 02:47:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Discípulos"], ["question_id", 515], ["correct", false], ["created_at", 2016-08-19 02:47:11 UTC], ["updated_at", 2016-08-19 02:47:11 UTC]]  (124.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Nas bodas de Caná, sua mãe pediu a Jesus que:"], ["created_at", 2016-08-19 02:47:11 UTC], ["updated_at", 2016-08-19 02:47:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Transformasse Água Em Vinho"], ["question_id", 516], ["correct", true], ["created_at", 2016-08-19 02:47:11 UTC], ["updated_at", 2016-08-19 02:47:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fossem Embora, Pois Estava Tarde"], ["question_id", 516], ["correct", false], ["created_at", 2016-08-19 02:47:11 UTC], ["updated_at", 2016-08-19 02:47:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fossem Embora, Pois Foram Expulsos do Casamento"], ["question_id", 516], ["correct", false], ["created_at", 2016-08-19 02:47:11 UTC], ["updated_at", 2016-08-19 02:47:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Transformasse Vinho Em Água"], ["question_id", 516], ["correct", false], ["created_at", 2016-08-19 02:47:11 UTC], ["updated_at", 2016-08-19 02:47:11 UTC]]  (200.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Nebo era um ídolo adotado pelos:"], ["created_at", 2016-08-19 02:47:11 UTC], ["updated_at", 2016-08-19 02:47:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônicos"], ["question_id", 517], ["correct", true], ["created_at", 2016-08-19 02:47:12 UTC], ["updated_at", 2016-08-19 02:47:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenícios"], ["question_id", 517], ["correct", false], ["created_at", 2016-08-19 02:47:12 UTC], ["updated_at", 2016-08-19 02:47:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egípcios"], ["question_id", 517], ["correct", false], ["created_at", 2016-08-19 02:47:12 UTC], ["updated_at", 2016-08-19 02:47:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assírios"], ["question_id", 517], ["correct", false], ["created_at", 2016-08-19 02:47:12 UTC], ["updated_at", 2016-08-19 02:47:12 UTC]]  (157.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Neustã foi o nome dado à:"], ["created_at", 2016-08-19 02:47:12 UTC], ["updated_at", 2016-08-19 02:47:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Serpente Levantada No Deserto"], ["question_id", 518], ["correct", true], ["created_at", 2016-08-19 02:47:12 UTC], ["updated_at", 2016-08-19 02:47:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filha de Maria Madalena"], ["question_id", 518], ["correct", false], ["created_at", 2016-08-19 02:47:12 UTC], ["updated_at", 2016-08-19 02:47:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Prima de Isabel"], ["question_id", 518], ["correct", false], ["created_at", 2016-08-19 02:47:12 UTC], ["updated_at", 2016-08-19 02:47:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jezabel, Após Seu Casamento Com O Rei Acabe"], ["question_id", 518], ["correct", false], ["created_at", 2016-08-19 02:47:12 UTC], ["updated_at", 2016-08-19 02:47:12 UTC]]  (117.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Ninrode, bisneto de Noé, construiu a cidade de:"], ["created_at", 2016-08-19 02:47:12 UTC], ["updated_at", 2016-08-19 02:47:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nínive"], ["question_id", 519], ["correct", true], ["created_at", 2016-08-19 02:47:12 UTC], ["updated_at", 2016-08-19 02:47:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 519], ["correct", false], ["created_at", 2016-08-19 02:47:12 UTC], ["updated_at", 2016-08-19 02:47:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 519], ["correct", false], ["created_at", 2016-08-19 02:47:12 UTC], ["updated_at", 2016-08-19 02:47:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gomorra"], ["question_id", 519], ["correct", false], ["created_at", 2016-08-19 02:47:12 UTC], ["updated_at", 2016-08-19 02:47:12 UTC]]  (234.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "No 1º ataque de Nabucodonosor à Jerusalém, quem foi ajudar o reino de Judá?"], ["created_at", 2016-08-19 02:47:12 UTC], ["updated_at", 2016-08-19 02:47:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egito"], ["question_id", 520], ["correct", true], ["created_at", 2016-08-19 02:47:12 UTC], ["updated_at", 2016-08-19 02:47:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Reino de Israel"], ["question_id", 520], ["correct", false], ["created_at", 2016-08-19 02:47:12 UTC], ["updated_at", 2016-08-19 02:47:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenícia"], ["question_id", 520], ["correct", false], ["created_at", 2016-08-19 02:47:12 UTC], ["updated_at", 2016-08-19 02:47:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Roma"], ["question_id", 520], ["correct", false], ["created_at", 2016-08-19 02:47:12 UTC], ["updated_at", 2016-08-19 02:47:12 UTC]]  (133.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "No 1º ataque de Nabucodonosor a Jerusalém, quem se tornou servo deste?"], ["created_at", 2016-08-19 02:47:12 UTC], ["updated_at", 2016-08-19 02:47:12 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeoaquim"], ["question_id", 521], ["correct", true], ["created_at", 2016-08-19 02:47:12 UTC], ["updated_at", 2016-08-19 02:47:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ezequias"], ["question_id", 521], ["correct", false], ["created_at", 2016-08-19 02:47:12 UTC], ["updated_at", 2016-08-19 02:47:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zedequias"], ["question_id", 521], ["correct", false], ["created_at", 2016-08-19 02:47:12 UTC], ["updated_at", 2016-08-19 02:47:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 521], ["correct", false], ["created_at", 2016-08-19 02:47:12 UTC], ["updated_at", 2016-08-19 02:47:12 UTC]]  (199.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "No 7º dia, o que Deus criou?"], ["created_at", 2016-08-19 02:47:12 UTC], ["updated_at", 2016-08-19 02:47:12 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nada, Apenas Descansou"], ["question_id", 522], ["correct", true], ["created_at", 2016-08-19 02:47:12 UTC], ["updated_at", 2016-08-19 02:47:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Sol"], ["question_id", 522], ["correct", false], ["created_at", 2016-08-19 02:47:12 UTC], ["updated_at", 2016-08-19 02:47:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Animais"], ["question_id", 522], ["correct", false], ["created_at", 2016-08-19 02:47:12 UTC], ["updated_at", 2016-08-19 02:47:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adão e Eva"], ["question_id", 522], ["correct", false], ["created_at", 2016-08-19 02:47:12 UTC], ["updated_at", 2016-08-19 02:47:12 UTC]]  (132.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "No 8º dia de vida, o que deveria ser feito ao bebê do sexo masculino?"], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Circuncidado"], ["question_id", 523], ["correct", true], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apresentado Ao Templo"], ["question_id", 523], ["correct", false], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Enrolado Em Uma Manta"], ["question_id", 523], ["correct", false], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ter Suas Unhas Aparadas Pela 1ª Vez"], ["question_id", 523], ["correct", false], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]]  (216.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "No cenáculo, ocorreu uma contenda entre os discípulos de Jesus sobre quem dentre eles era o:"], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mais Importante"], ["question_id", 524], ["correct", true], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mais Idoso"], ["question_id", 524], ["correct", false], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mais Sábio"], ["question_id", 524], ["correct", false], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mais Amado"], ["question_id", 524], ["correct", false], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]]  (141.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "No cenáculo, pelo fato de Jesus estar ciente de que em breve iria sofrer uma traição, o seu espírito estava:"], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Perturbado"], ["question_id", 525], ["correct", true], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aliviado"], ["question_id", 525], ["correct", false], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Alegre"], ["question_id", 525], ["correct", false], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sem Fé"], ["question_id", 525], ["correct", false], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]]  (108.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "No cenáculo, por que Jesus disse que estava com o espírito perturbado?"], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Sabia Que Iria Ser Traído"], ["question_id", 526], ["correct", true], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Estava Preocupado Com O Futuro e Sua Mãe"], ["question_id", 526], ["correct", false], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Estava Receoso Em Deixar Os Discípulos A Sós"], ["question_id", 526], ["correct", false], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Sabia Que Judas Iria Se Suicidar"], ["question_id", 526], ["correct", false], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]]  (133.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "No cenáculo, qual foi o motivo que gerou uma contenda entre os discípulos de Jesus?"], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quem Seria O Mais Importante No Reino Por Vir"], ["question_id", 527], ["correct", true], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quem Cuidaria da Tesouraria"], ["question_id", 527], ["correct", false], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quem Seria Escolhido Para Ser Um dos 12 Apóstolos"], ["question_id", 527], ["correct", false], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quem Seria O Discípulo Que Iria Cuidar das Ovelhas"], ["question_id", 527], ["correct", false], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]]  (108.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "No decreto baixado por Nabucodonosor, o que aconteceria se alguém não louvasse o Deus de Sadraque, Mesaque e Abede-Nego?"], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Pessoa Seria Despedaçada"], ["question_id", 528], ["correct", true], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Pessoa Seria Decepada"], ["question_id", 528], ["correct", false], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Pessoa Seria Colocada Na Fornalha Ardente"], ["question_id", 528], ["correct", false], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Pessoa Seria Atirada Na Cova dos Leões"], ["question_id", 528], ["correct", false], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]]  (107.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "No dia seguinte à sua entrada triunfal em Jerusalém, que espécie de árvore Jesus amaldiçoou?"], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Figueira"], ["question_id", 529], ["correct", true], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oliveira"], ["question_id", 529], ["correct", false], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Palmeira"], ["question_id", 529], ["correct", false], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tamareira"], ["question_id", 529], ["correct", false], ["created_at", 2016-08-19 02:47:13 UTC], ["updated_at", 2016-08-19 02:47:13 UTC]]  (151.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "No jantar oferecido por Simão, o leproso, quem mais estava presente neste Jantar?"], ["created_at", 2016-08-19 02:47:14 UTC], ["updated_at", 2016-08-19 02:47:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lázaro"], ["question_id", 530], ["correct", true], ["created_at", 2016-08-19 02:47:14 UTC], ["updated_at", 2016-08-19 02:47:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 530], ["correct", false], ["created_at", 2016-08-19 02:47:14 UTC], ["updated_at", 2016-08-19 02:47:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodias"], ["question_id", 530], ["correct", false], ["created_at", 2016-08-19 02:47:14 UTC], ["updated_at", 2016-08-19 02:47:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sumo-sacerdote Caifás"], ["question_id", 530], ["correct", false], ["created_at", 2016-08-19 02:47:14 UTC], ["updated_at", 2016-08-19 02:47:14 UTC]]  (116.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "No livro de Josué, Sesai, Aimã e Talmai eram filhos de quem?"], ["created_at", 2016-08-19 02:47:14 UTC], ["updated_at", 2016-08-19 02:47:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anaque"], ["question_id", 531], ["correct", true], ["created_at", 2016-08-19 02:47:14 UTC], ["updated_at", 2016-08-19 02:47:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abedenego"], ["question_id", 531], ["correct", false], ["created_at", 2016-08-19 02:47:14 UTC], ["updated_at", 2016-08-19 02:47:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mesaque"], ["question_id", 531], ["correct", false], ["created_at", 2016-08-19 02:47:14 UTC], ["updated_at", 2016-08-19 02:47:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sadraque"], ["question_id", 531], ["correct", false], ["created_at", 2016-08-19 02:47:14 UTC], ["updated_at", 2016-08-19 02:47:14 UTC]]  (107.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "No Monte das Oliveiras, Jesus chorou pela cidade de:"], ["created_at", 2016-08-19 02:47:14 UTC], ["updated_at", 2016-08-19 02:47:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 532], ["correct", true], ["created_at", 2016-08-19 02:47:14 UTC], ["updated_at", 2016-08-19 02:47:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nazaré"], ["question_id", 532], ["correct", false], ["created_at", 2016-08-19 02:47:14 UTC], ["updated_at", 2016-08-19 02:47:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nínive"], ["question_id", 532], ["correct", false], ["created_at", 2016-08-19 02:47:14 UTC], ["updated_at", 2016-08-19 02:47:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cafarnaum"], ["question_id", 532], ["correct", false], ["created_at", 2016-08-19 02:47:14 UTC], ["updated_at", 2016-08-19 02:47:14 UTC]]  (141.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "No sonho de José, para onde Deus o instruiu a levar Maria e o menino Jesus?"], ["created_at", 2016-08-19 02:47:14 UTC], ["updated_at", 2016-08-19 02:47:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egito"], ["question_id", 533], ["correct", true], ["created_at", 2016-08-19 02:47:14 UTC], ["updated_at", 2016-08-19 02:47:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Síria"], ["question_id", 533], ["correct", false], ["created_at", 2016-08-19 02:47:14 UTC], ["updated_at", 2016-08-19 02:47:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arábia"], ["question_id", 533], ["correct", false], ["created_at", 2016-08-19 02:47:14 UTC], ["updated_at", 2016-08-19 02:47:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mesopotâmia"], ["question_id", 533], ["correct", false], ["created_at", 2016-08-19 02:47:14 UTC], ["updated_at", 2016-08-19 02:47:14 UTC]]  (183.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "No túmulo de quem um morto foi jogado e reviveu?"], ["created_at", 2016-08-19 02:47:14 UTC], ["updated_at", 2016-08-19 02:47:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 534], ["correct", true], ["created_at", 2016-08-19 02:47:14 UTC], ["updated_at", 2016-08-19 02:47:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 534], ["correct", false], ["created_at", 2016-08-19 02:47:14 UTC], ["updated_at", 2016-08-19 02:47:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matusalém"], ["question_id", 534], ["correct", false], ["created_at", 2016-08-19 02:47:14 UTC], ["updated_at", 2016-08-19 02:47:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias"], ["question_id", 534], ["correct", false], ["created_at", 2016-08-19 02:47:14 UTC], ["updated_at", 2016-08-19 02:47:14 UTC]]  (132.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "No vale de Tofete, o povo hebreu oferecia sacrifícios vivos de crianças ao deus:"], ["created_at", 2016-08-19 02:47:14 UTC], ["updated_at", 2016-08-19 02:47:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moloque"], ["question_id", 535], ["correct", true], ["created_at", 2016-08-19 02:47:14 UTC], ["updated_at", 2016-08-19 02:47:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Baal"], ["question_id", 535], ["correct", false], ["created_at", 2016-08-19 02:47:14 UTC], ["updated_at", 2016-08-19 02:47:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jizreel"], ["question_id", 535], ["correct", false], ["created_at", 2016-08-19 02:47:14 UTC], ["updated_at", 2016-08-19 02:47:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiglete-pileser"], ["question_id", 535], ["correct", false], ["created_at", 2016-08-19 02:47:14 UTC], ["updated_at", 2016-08-19 02:47:14 UTC]]  (241.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O 1º filho de Abraão com Sara se chamou:"], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 536], ["correct", true], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 536], ["correct", false], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel"], ["question_id", 536], ["correct", false], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mesaque"], ["question_id", 536], ["correct", false], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]]  (216.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O altar de Moleque, profanado por Josias através da queima de ossos humanos, situava-se no:"], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vale do Hinom"], ["question_id", 537], ["correct", true], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Monte Ararat"], ["question_id", 537], ["correct", false], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vale da Sombra e da Morte"], ["question_id", 537], ["correct", false], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Planície Hebrom"], ["question_id", 537], ["correct", false], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]]  (141.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O anjo Gabriel comunicou à Maria que ela:"], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Iria Ter Um Bebê Chamado Jesus"], ["question_id", 538], ["correct", true], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Iria Se Casar Com José"], ["question_id", 538], ["correct", false], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Teria Um Sobrinho Que Seria Chamado João Batista"], ["question_id", 538], ["correct", false], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Iria Morrer Em Breve"], ["question_id", 538], ["correct", false], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]]  (149.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O apóstolo Paulo foi morto:"], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Decapitado"], ["question_id", 539], ["correct", true], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Crucificado"], ["question_id", 539], ["correct", false], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Enforcado"], ["question_id", 539], ["correct", false], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Afogado"], ["question_id", 539], ["correct", false], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]]  (124.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O apóstolo Tiago foi morto:"], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Decapitado"], ["question_id", 540], ["correct", true], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Enforcado"], ["question_id", 540], ["correct", false], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fuzilado"], ["question_id", 540], ["correct", false], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Crucificado de Cabeça Para Baixo"], ["question_id", 540], ["correct", false], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]]  (133.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O bezerro de ouro construído por Arão foi confeccionado a partir de:"], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jóias dos Israelitas"], ["question_id", 541], ["correct", true], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Peças de Ouro do Tabernáculo"], ["question_id", 541], ["correct", false], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Garimpo No Deserto"], ["question_id", 541], ["correct", false], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Bezerro Era de Bronze"], ["question_id", 541], ["correct", false], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]]  (126.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O Dilúvio durou quantos dias?"], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "40 Dias"], ["question_id", 542], ["correct", true], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "20 Dias"], ["question_id", 542], ["correct", false], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10 Dias"], ["question_id", 542], ["correct", false], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "30 Dias"], ["question_id", 542], ["correct", false], ["created_at", 2016-08-19 02:47:15 UTC], ["updated_at", 2016-08-19 02:47:15 UTC]]  (91.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O filho do rei Davi morreu pelo fato deste ter:"], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todas As Alternativas Estão Corretas"], ["question_id", 543], ["correct", true], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Desejado A Esposa de Urias"], ["question_id", 543], ["correct", false], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mantido Relações Sexuais Com Bate-seba"], ["question_id", 543], ["correct", false], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Planejar A Morte do Oficial Urias"], ["question_id", 543], ["correct", false], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]]  (124.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O gigante Golias foi morto por:"], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 544], ["correct", true], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel"], ["question_id", 544], ["correct", false], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 544], ["correct", false], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caim"], ["question_id", 544], ["correct", false], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]]  (121.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O Gólgota foi o local onde:"], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus Foi Crucificado"], ["question_id", 545], ["correct", true], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés Avistou A Terra Prometida"], ["question_id", 545], ["correct", false], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão Construiu O Templo do Senhor"], ["question_id", 545], ["correct", false], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi Cortou Um Pedaço da Túnica do Rei Saul"], ["question_id", 545], ["correct", false], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]]  (124.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O imperador Nero mandou decapitar o apóstolo:"], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 546], ["correct", true], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 546], ["correct", false], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas"], ["question_id", 546], ["correct", false], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 546], ["correct", false], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]]  (116.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O Mar Morto ficava em qual dos reinos:"], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fazia Divisa Entre Israel e Judá"], ["question_id", 547], ["correct", true], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judá"], ["question_id", 547], ["correct", false], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Israel"], ["question_id", 547], ["correct", false], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Suas Águas Não Banhavam Esses Reinos"], ["question_id", 547], ["correct", false], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]]  (141.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O Mar Vermelho foi aberto e dividido em 2 partes para permitir que o povo hebreu escapasse:"], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Faraó"], ["question_id", 548], ["correct", true], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dos Filisteus"], ["question_id", 548], ["correct", false], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dos Babilônicos"], ["question_id", 548], ["correct", false], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dos Assírios"], ["question_id", 548], ["correct", false], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]]  (142.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O menino Jesus nasceu em um:"], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Estábulo"], ["question_id", 549], ["correct", true], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cocheira"], ["question_id", 549], ["correct", false], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porão"], ["question_id", 549], ["correct", false], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sótão"], ["question_id", 549], ["correct", false], ["created_at", 2016-08-19 02:47:16 UTC], ["updated_at", 2016-08-19 02:47:16 UTC]]  (157.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O Monte Carmelo ficava na tribo israelita de:"], ["created_at", 2016-08-19 02:47:17 UTC], ["updated_at", 2016-08-19 02:47:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aser"], ["question_id", 550], ["correct", true], ["created_at", 2016-08-19 02:47:17 UTC], ["updated_at", 2016-08-19 02:47:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Efraim"], ["question_id", 550], ["correct", false], ["created_at", 2016-08-19 02:47:17 UTC], ["updated_at", 2016-08-19 02:47:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Simeão"], ["question_id", 550], ["correct", false], ["created_at", 2016-08-19 02:47:17 UTC], ["updated_at", 2016-08-19 02:47:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rúben"], ["question_id", 550], ["correct", false], ["created_at", 2016-08-19 02:47:17 UTC], ["updated_at", 2016-08-19 02:47:17 UTC]]  (158.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O Monte Hermom marcava ao norte a fronteira de:"], ["created_at", 2016-08-19 02:47:17 UTC], ["updated_at", 2016-08-19 02:47:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Israel"], ["question_id", 551], ["correct", true], ["created_at", 2016-08-19 02:47:17 UTC], ["updated_at", 2016-08-19 02:47:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônia"], ["question_id", 551], ["correct", false], ["created_at", 2016-08-19 02:47:17 UTC], ["updated_at", 2016-08-19 02:47:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Império Romano"], ["question_id", 551], ["correct", false], ["created_at", 2016-08-19 02:47:17 UTC], ["updated_at", 2016-08-19 02:47:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egito"], ["question_id", 551], ["correct", false], ["created_at", 2016-08-19 02:47:17 UTC], ["updated_at", 2016-08-19 02:47:17 UTC]]  (149.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O nome de qual Sumo Sacerdote significava \"sumo, altíssimo\"?"], ["created_at", 2016-08-19 02:47:17 UTC], ["updated_at", 2016-08-19 02:47:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eli"], ["question_id", 552], ["correct", true], ["created_at", 2016-08-19 02:47:17 UTC], ["updated_at", 2016-08-19 02:47:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ananias"], ["question_id", 552], ["correct", false], ["created_at", 2016-08-19 02:47:17 UTC], ["updated_at", 2016-08-19 02:47:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel"], ["question_id", 552], ["correct", false], ["created_at", 2016-08-19 02:47:17 UTC], ["updated_at", 2016-08-19 02:47:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 552], ["correct", false], ["created_at", 2016-08-19 02:47:17 UTC], ["updated_at", 2016-08-19 02:47:17 UTC]]  (266.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O Novo Testamento foi escrito em:"], ["created_at", 2016-08-19 02:47:17 UTC], ["updated_at", 2016-08-19 02:47:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Grego"], ["question_id", 553], ["correct", true], ["created_at", 2016-08-19 02:47:17 UTC], ["updated_at", 2016-08-19 02:47:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aramaico"], ["question_id", 553], ["correct", false], ["created_at", 2016-08-19 02:47:17 UTC], ["updated_at", 2016-08-19 02:47:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Latim"], ["question_id", 553], ["correct", false], ["created_at", 2016-08-19 02:47:17 UTC], ["updated_at", 2016-08-19 02:47:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hebraico"], ["question_id", 553], ["correct", false], ["created_at", 2016-08-19 02:47:17 UTC], ["updated_at", 2016-08-19 02:47:17 UTC]]  (166.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O oficial Urias morto em batalha foi casado com:"], ["created_at", 2016-08-19 02:47:17 UTC], ["updated_at", 2016-08-19 02:47:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bate-seba"], ["question_id", 554], ["correct", true], ["created_at", 2016-08-19 02:47:17 UTC], ["updated_at", 2016-08-19 02:47:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vasti"], ["question_id", 554], ["correct", false], ["created_at", 2016-08-19 02:47:17 UTC], ["updated_at", 2016-08-19 02:47:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elcana"], ["question_id", 554], ["correct", false], ["created_at", 2016-08-19 02:47:17 UTC], ["updated_at", 2016-08-19 02:47:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Priscila"], ["question_id", 554], ["correct", false], ["created_at", 2016-08-19 02:47:17 UTC], ["updated_at", 2016-08-19 02:47:17 UTC]]  (117.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O povo pediu a Pôncio Pilatos que soltassem Barrabás ao invés de:"], ["created_at", 2016-08-19 02:47:17 UTC], ["updated_at", 2016-08-19 02:47:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 555], ["correct", true], ["created_at", 2016-08-19 02:47:17 UTC], ["updated_at", 2016-08-19 02:47:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 555], ["correct", false], ["created_at", 2016-08-19 02:47:17 UTC], ["updated_at", 2016-08-19 02:47:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 555], ["correct", false], ["created_at", 2016-08-19 02:47:17 UTC], ["updated_at", 2016-08-19 02:47:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12 Apóstolos"], ["question_id", 555], ["correct", false], ["created_at", 2016-08-19 02:47:17 UTC], ["updated_at", 2016-08-19 02:47:17 UTC]]  (133.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O profeta Aías foi consultado pelo rei Jeroboão para saber sobre:"], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Condição de Saúde de Seu Filho"], ["question_id", 556], ["correct", true], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Se A Seca Ainda Continuaria Por Muito Tempo"], ["question_id", 556], ["correct", false], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Se A Colheita de Grãos Seria Suficiente Para Todos"], ["question_id", 556], ["correct", false], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Se As Pragas do Egito Também Cairiam Sobre Eles"], ["question_id", 556], ["correct", false], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]]  (126.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O profeta Namã questionou o rei Davi pelo fato deste ter mantido relações sexuais com:"], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bate-seba"], ["question_id", 557], ["correct", true], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Urias"], ["question_id", 557], ["correct", false], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 557], ["correct", false], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elcana"], ["question_id", 557], ["correct", false], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]]  (109.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O profeta Zacarias foi o pai de:"], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 558], ["correct", true], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas Iscariotes"], ["question_id", 558], ["correct", false], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 558], ["correct", false], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "André"], ["question_id", 558], ["correct", false], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]]  (108.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O profeta Zacarias impulsionou o povo judeu para que terminasse a construção:"], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Templo"], ["question_id", 559], ["correct", true], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Palácio Real"], ["question_id", 559], ["correct", false], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Da Ponte Sobre O Rio Jordão"], ["question_id", 559], ["correct", false], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Muro da Cidade de Jerusalém"], ["question_id", 559], ["correct", false], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]]  (116.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que a filha do Faraó encontrou preso junto aos juncos do rio Nilo?"], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Cesta"], ["question_id", 560], ["correct", true], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Rolo de Papiro"], ["question_id", 560], ["correct", false], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Cabeça do Deus Amon"], ["question_id", 560], ["correct", false], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Muitas Rãs"], ["question_id", 560], ["correct", false], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]]  (108.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que a mulher sunamita e seu marido ofereceram a Eliseu quando este os estava visitando?"], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Quarto Na Parte de Cima da Casa"], ["question_id", 561], ["correct", true], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Refeição Especial"], ["question_id", 561], ["correct", false], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lavar Suas Roupas"], ["question_id", 561], ["correct", false], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assar Um Cozido de Javali"], ["question_id", 561], ["correct", false], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]]  (125.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que a multidão gritou para Pôncio Pilatos após ele ter apresentado Jesus à esta?"], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Crucifica-o!"], ["question_id", 562], ["correct", true], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Liberta-o!"], ["question_id", 562], ["correct", false], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Devolva-o Para Nós!"], ["question_id", 562], ["correct", false], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Surre-o Mais!"], ["question_id", 562], ["correct", false], ["created_at", 2016-08-19 02:47:18 UTC], ["updated_at", 2016-08-19 02:47:18 UTC]]  (125.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Absalão cortava no fim de cada ano?"], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Cabelos"], ["question_id", 563], ["correct", true], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Suas Unhas"], ["question_id", 563], ["correct", false], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Mãos dos Seus Inimigos"], ["question_id", 563], ["correct", false], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Sobrancelhas"], ["question_id", 563], ["correct", false], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]]  (134.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que aconteceria aos animais se por ventura eles tocassem o monte Sinai no 3º dia?"], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Morreriam"], ["question_id", 564], ["correct", true], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seriam Petrificados"], ["question_id", 564], ["correct", false], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Virariam Estátuas de Sal"], ["question_id", 564], ["correct", false], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bolas de Fogo do Céu Os Atingiriam"], ["question_id", 564], ["correct", false], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]]  (132.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que aconteceu a Bate-Seba quando seu período de luto por Urias terminou?"], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Desposada Por Davi"], ["question_id", 565], ["correct", true], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Executada"], ["question_id", 565], ["correct", false], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Levada Como Escrava"], ["question_id", 565], ["correct", false], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Apredrejada"], ["question_id", 565], ["correct", false], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]]  (124.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que aconteceu a Eliseu após ter sido oferecido ao mesmo um caldo venenoso por acidente?"], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Sofreu Nada"], ["question_id", 566], ["correct", true], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Morreu"], ["question_id", 566], ["correct", false], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Xingou O Cozinheiro"], ["question_id", 566], ["correct", false], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matou O Cozinheiro"], ["question_id", 566], ["correct", false], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]]  (133.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que aconteceu a Êutico após este ter adormecido enquanto ouvia a mensagem de Paulo?"], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caiu da Janela"], ["question_id", 567], ["correct", true], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caiu da Cama"], ["question_id", 567], ["correct", false], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caiu do Alpendre"], ["question_id", 567], ["correct", false], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caiu da Escada"], ["question_id", 567], ["correct", false], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]]  (132.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que aconteceu a Êutico após ter caído de uma janela pelo fato de ter adormecido enquanto Paulo pregava?"], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Morreu"], ["question_id", 568], ["correct", true], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acordou Assustado"], ["question_id", 568], ["correct", false], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quebrou As Pernas"], ["question_id", 568], ["correct", false], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quebrou As Costelas"], ["question_id", 568], ["correct", false], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]]  (133.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que aconteceu a Jesus após os 2 discípulos O terem reconhecido após Sua ressurreição?"], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Desapareceu"], ["question_id", 569], ["correct", true], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Voou Para O Céu"], ["question_id", 569], ["correct", false], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Abraçou"], ["question_id", 569], ["correct", false], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saiu Correndo"], ["question_id", 569], ["correct", false], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]]  (134.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que aconteceu a Judas Iscariotes imediatamente após ter recebido um pedaço de pão diretamente de Jesus na Última Ceia?"], ["created_at", 2016-08-19 02:47:19 UTC], ["updated_at", 2016-08-19 02:47:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Satanás Entrou Em Seu Corpo"], ["question_id", 570], ["correct", true], ["created_at", 2016-08-19 02:47:20 UTC], ["updated_at", 2016-08-19 02:47:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Comeu Verozmente O Pão"], ["question_id", 570], ["correct", false], ["created_at", 2016-08-19 02:47:20 UTC], ["updated_at", 2016-08-19 02:47:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jogou O Pão No Chão e Amaldiçoou-o"], ["question_id", 570], ["correct", false], ["created_at", 2016-08-19 02:47:20 UTC], ["updated_at", 2016-08-19 02:47:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Recusou, Pois Estava Sem Fome"], ["question_id", 570], ["correct", false], ["created_at", 2016-08-19 02:47:20 UTC], ["updated_at", 2016-08-19 02:47:20 UTC]]  (133.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que aconteceu a Raquel, esposa de Jacó, após ter dado a luz a Benjamim?"], ["created_at", 2016-08-19 02:47:20 UTC], ["updated_at", 2016-08-19 02:47:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Morreu"], ["question_id", 571], ["correct", true], ["created_at", 2016-08-19 02:47:20 UTC], ["updated_at", 2016-08-19 02:47:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Teve Uma Visão"], ["question_id", 571], ["correct", false], ["created_at", 2016-08-19 02:47:20 UTC], ["updated_at", 2016-08-19 02:47:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pediu Que Sua Irmão Lia Casasse Com Jacó"], ["question_id", 571], ["correct", false], ["created_at", 2016-08-19 02:47:20 UTC], ["updated_at", 2016-08-19 02:47:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Levada Para Os Céus"], ["question_id", 571], ["correct", false], ["created_at", 2016-08-19 02:47:20 UTC], ["updated_at", 2016-08-19 02:47:20 UTC]]  (166.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que aconteceu ao Egito pelo fato do Faraó ter negado a saída do povo hebreu?"], ["created_at", 2016-08-19 02:47:20 UTC], ["updated_at", 2016-08-19 02:47:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caíram Pragas"], ["question_id", 572], ["correct", true], ["created_at", 2016-08-19 02:47:20 UTC], ["updated_at", 2016-08-19 02:47:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Conquistado Pela Babilônia"], ["question_id", 572], ["correct", false], ["created_at", 2016-08-19 02:47:20 UTC], ["updated_at", 2016-08-19 02:47:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Derrotado Pelos Assírios"], ["question_id", 572], ["correct", false], ["created_at", 2016-08-19 02:47:20 UTC], ["updated_at", 2016-08-19 02:47:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Rio Nilo Secou Por 25 Anos"], ["question_id", 572], ["correct", false], ["created_at", 2016-08-19 02:47:20 UTC], ["updated_at", 2016-08-19 02:47:20 UTC]]  (184.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que aconteceu ao rei Davi com a morte de Absalão?"], ["created_at", 2016-08-19 02:47:20 UTC], ["updated_at", 2016-08-19 02:47:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Trono Lhe Foi Restituído"], ["question_id", 573], ["correct", true], ["created_at", 2016-08-19 02:47:20 UTC], ["updated_at", 2016-08-19 02:47:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Foi Para Um Esconderijo"], ["question_id", 573], ["correct", false], ["created_at", 2016-08-19 02:47:20 UTC], ["updated_at", 2016-08-19 02:47:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Indicou Adonias Como Rei"], ["question_id", 573], ["correct", false], ["created_at", 2016-08-19 02:47:20 UTC], ["updated_at", 2016-08-19 02:47:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Morto Pelo Chefe da Guarda"], ["question_id", 573], ["correct", false], ["created_at", 2016-08-19 02:47:20 UTC], ["updated_at", 2016-08-19 02:47:20 UTC]]  (125.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que aconteceu com a mentira de que \"o corpo de Jesus foi roubado pelos discípulos\"?"], ["created_at", 2016-08-19 02:47:20 UTC], ["updated_at", 2016-08-19 02:47:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Espalhou-se Rapidamente Entre Os Judeus"], ["question_id", 574], ["correct", true], ["created_at", 2016-08-19 02:47:20 UTC], ["updated_at", 2016-08-19 02:47:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ninguém Acreditou Nela"], ["question_id", 574], ["correct", false], ["created_at", 2016-08-19 02:47:20 UTC], ["updated_at", 2016-08-19 02:47:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Discípulos Confessaram Ser Verdade"], ["question_id", 574], ["correct", false], ["created_at", 2016-08-19 02:47:20 UTC], ["updated_at", 2016-08-19 02:47:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas A Família de Jesus Acreditou"], ["question_id", 574], ["correct", false], ["created_at", 2016-08-19 02:47:20 UTC], ["updated_at", 2016-08-19 02:47:20 UTC]]  (174.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que aconteceu com as rãs, no final da 2ª praga enviada por Deus contra os egípcios?"], ["created_at", 2016-08-19 02:47:20 UTC], ["updated_at", 2016-08-19 02:47:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elas Morreram"], ["question_id", 575], ["correct", true], ["created_at", 2016-08-19 02:47:20 UTC], ["updated_at", 2016-08-19 02:47:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elas Se Reproduziram Cada Vez Mais"], ["question_id", 575], ["correct", false], ["created_at", 2016-08-19 02:47:20 UTC], ["updated_at", 2016-08-19 02:47:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elas Se Jogaram No Rio Nilo e Desapareceram"], ["question_id", 575], ["correct", false], ["created_at", 2016-08-19 02:47:20 UTC], ["updated_at", 2016-08-19 02:47:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elas Entraram No Palácio do Faraó e Aprodreceram"], ["question_id", 575], ["correct", false], ["created_at", 2016-08-19 02:47:20 UTC], ["updated_at", 2016-08-19 02:47:20 UTC]]  (158.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que aconteceu com os 250 seguidores de Corá, em sua rebelião?"], ["created_at", 2016-08-19 02:47:20 UTC], ["updated_at", 2016-08-19 02:47:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foram Consumidos Pelo Fogo"], ["question_id", 576], ["correct", true], ["created_at", 2016-08-19 02:47:20 UTC], ["updated_at", 2016-08-19 02:47:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foram Lançados Ao Mar"], ["question_id", 576], ["correct", false], ["created_at", 2016-08-19 02:47:20 UTC], ["updated_at", 2016-08-19 02:47:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foram Expulsos do Acampamento"], ["question_id", 576], ["correct", false], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foram Sepultados Vivos"], ["question_id", 576], ["correct", false], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]]  (124.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que aconteceu com Saulo depois de seu encontro com Jesus na estrada para Damasco?"], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Ficou Cego"], ["question_id", 577], ["correct", true], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Ficou Mudo"], ["question_id", 577], ["correct", false], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Ficou Surdo"], ["question_id", 577], ["correct", false], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Ficou Tetraplégico"], ["question_id", 577], ["correct", false], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]]  (141.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que aconteceu quando a esposa de Jeroboão entrou em sua casa após ter retornado da consulta ao profeta Aías?"], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Filho Morreu"], ["question_id", 578], ["correct", true], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Rei Jeroboão Morreu"], ["question_id", 578], ["correct", false], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Filho Que Estava Doente Recuperou A Saúde"], ["question_id", 578], ["correct", false], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todos Morreram"], ["question_id", 578], ["correct", false], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]]  (133.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que aconteceu quando Jesus disse aos discípulos que jogassem suas redes do lado direito do barco?"], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eles Pegaram Muitos Peixes"], ["question_id", 579], ["correct", true], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Rede Se Rompeu de Tanto Peixe"], ["question_id", 579], ["correct", false], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eles Pegaram Poucos Peixes"], ["question_id", 579], ["correct", false], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eles Não Pegaram Nenhum Peixe"], ["question_id", 579], ["correct", false], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]]  (108.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que aconteceu quando Jesus morreu?"], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Terremoto"], ["question_id", 580], ["correct", true], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Vendaval"], ["question_id", 580], ["correct", false], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Tsunâmi"], ["question_id", 580], ["correct", false], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Tempestade"], ["question_id", 580], ["correct", false], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]]  (133.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Ana fazia todos os anos para seu filho Samuel?"], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Túnica"], ["question_id", 581], ["correct", true], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Prato de Comida"], ["question_id", 581], ["correct", false], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Pão Sem Fermento"], ["question_id", 581], ["correct", false], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Visita"], ["question_id", 581], ["correct", false], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]]  (133.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Arão fez para o povo israelita enquanto Moisés estava no monte?"], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bezerro de Ouro"], ["question_id", 582], ["correct", true], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Serpente de Ouro"], ["question_id", 582], ["correct", false], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Coluna de Fogo"], ["question_id", 582], ["correct", false], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tabernáculo do Deserto"], ["question_id", 582], ["correct", false], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]]  (134.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Arão possuía que havia brotado?"], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Vara"], ["question_id", 583], ["correct", true], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Flor"], ["question_id", 583], ["correct", false], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Árvore"], ["question_id", 583], ["correct", false], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Semente"], ["question_id", 583], ["correct", false], ["created_at", 2016-08-19 02:47:21 UTC], ["updated_at", 2016-08-19 02:47:21 UTC]]  (118.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Ararat, Sinai e Nebo têm em comum?"], ["created_at", 2016-08-19 02:47:22 UTC], ["updated_at", 2016-08-19 02:47:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "São Montanhas"], ["question_id", 584], ["correct", true], ["created_at", 2016-08-19 02:47:22 UTC], ["updated_at", 2016-08-19 02:47:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "São Rios"], ["question_id", 584], ["correct", false], ["created_at", 2016-08-19 02:47:22 UTC], ["updated_at", 2016-08-19 02:47:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "São Profetas"], ["question_id", 584], ["correct", false], ["created_at", 2016-08-19 02:47:22 UTC], ["updated_at", 2016-08-19 02:47:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "São Vales"], ["question_id", 584], ["correct", false], ["created_at", 2016-08-19 02:47:22 UTC], ["updated_at", 2016-08-19 02:47:22 UTC]]  (133.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que as esposas hetéias de Esaú levaram para Isaque e Rebeca?"], ["created_at", 2016-08-19 02:47:22 UTC], ["updated_at", 2016-08-19 02:47:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amargura de Espírito"], ["question_id", 585], ["correct", true], ["created_at", 2016-08-19 02:47:22 UTC], ["updated_at", 2016-08-19 02:47:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dotes"], ["question_id", 585], ["correct", false], ["created_at", 2016-08-19 02:47:22 UTC], ["updated_at", 2016-08-19 02:47:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Grande Alegria"], ["question_id", 585], ["correct", false], ["created_at", 2016-08-19 02:47:22 UTC], ["updated_at", 2016-08-19 02:47:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Muitos Netos"], ["question_id", 585], ["correct", false], ["created_at", 2016-08-19 02:47:22 UTC], ["updated_at", 2016-08-19 02:47:22 UTC]]  (124.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que cada chefe das tribos de Israel possuía?"], ["created_at", 2016-08-19 02:47:22 UTC], ["updated_at", 2016-08-19 02:47:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Vara"], ["question_id", 586], ["correct", true], ["created_at", 2016-08-19 02:47:22 UTC], ["updated_at", 2016-08-19 02:47:22 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Família Numerosa"], ["question_id", 586], ["correct", false], ["created_at", 2016-08-19 02:47:22 UTC], ["updated_at", 2016-08-19 02:47:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas 1 Único Filho"], ["question_id", 586], ["correct", false], ["created_at", 2016-08-19 02:47:22 UTC], ["updated_at", 2016-08-19 02:47:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Cachorro"], ["question_id", 586], ["correct", false], ["created_at", 2016-08-19 02:47:22 UTC], ["updated_at", 2016-08-19 02:47:22 UTC]]  (182.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que César Augusto decretou?"], ["created_at", 2016-08-19 02:47:22 UTC], ["updated_at", 2016-08-19 02:47:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Todos Deveriam Pagar Impostos"], ["question_id", 587], ["correct", true], ["created_at", 2016-08-19 02:47:22 UTC], ["updated_at", 2016-08-19 02:47:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Os Cidadãos Romanos Não Deveriam Pagar Imposto"], ["question_id", 587], ["correct", false], ["created_at", 2016-08-19 02:47:22 UTC], ["updated_at", 2016-08-19 02:47:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Ninguém Precisava Pagar Imposto"], ["question_id", 587], ["correct", false], ["created_at", 2016-08-19 02:47:22 UTC], ["updated_at", 2016-08-19 02:47:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Apenas Os Estrangeiros Deveriam Pagar Imposto"], ["question_id", 587], ["correct", false], ["created_at", 2016-08-19 02:47:22 UTC], ["updated_at", 2016-08-19 02:47:22 UTC]]  (209.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Davi ajuntou em um riacho próximo, antes de sua batalha contra Golias?"], ["created_at", 2016-08-19 02:47:22 UTC], ["updated_at", 2016-08-19 02:47:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5 Pedras Lisas"], ["question_id", 588], ["correct", true], ["created_at", 2016-08-19 02:47:22 UTC], ["updated_at", 2016-08-19 02:47:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Peixe Grande"], ["question_id", 588], ["correct", false], ["created_at", 2016-08-19 02:47:22 UTC], ["updated_at", 2016-08-19 02:47:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Junco"], ["question_id", 588], ["correct", false], ["created_at", 2016-08-19 02:47:22 UTC], ["updated_at", 2016-08-19 02:47:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Feixe de Vime"], ["question_id", 588], ["correct", false], ["created_at", 2016-08-19 02:47:22 UTC], ["updated_at", 2016-08-19 02:47:22 UTC]]  (142.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Deus disse a Moisés para tirar, quando este viu a sarça em chamas que não se consumia pelo fogo?"], ["created_at", 2016-08-19 02:47:22 UTC], ["updated_at", 2016-08-19 02:47:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sandálias"], ["question_id", 589], ["correct", true], ["created_at", 2016-08-19 02:47:22 UTC], ["updated_at", 2016-08-19 02:47:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Túnica"], ["question_id", 589], ["correct", false], ["created_at", 2016-08-19 02:47:22 UTC], ["updated_at", 2016-08-19 02:47:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Barba"], ["question_id", 589], ["correct", false], ["created_at", 2016-08-19 02:47:22 UTC], ["updated_at", 2016-08-19 02:47:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cabelo"], ["question_id", 589], ["correct", false], ["created_at", 2016-08-19 02:47:22 UTC], ["updated_at", 2016-08-19 02:47:22 UTC]]  (190.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Deus fez aos 185.000 que estavam acampados ao redor da cidade de Jerusalém?"], ["created_at", 2016-08-19 02:47:23 UTC], ["updated_at", 2016-08-19 02:47:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matou-os"], ["question_id", 590], ["correct", true], ["created_at", 2016-08-19 02:47:23 UTC], ["updated_at", 2016-08-19 02:47:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tornou-os Inválidos"], ["question_id", 590], ["correct", false], ["created_at", 2016-08-19 02:47:23 UTC], ["updated_at", 2016-08-19 02:47:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cegou-os"], ["question_id", 590], ["correct", false], ["created_at", 2016-08-19 02:47:23 UTC], ["updated_at", 2016-08-19 02:47:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tornou-os Leprosos"], ["question_id", 590], ["correct", false], ["created_at", 2016-08-19 02:47:23 UTC], ["updated_at", 2016-08-19 02:47:23 UTC]]  (133.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Deus fez no 7º dia da criação?"], ["created_at", 2016-08-19 02:47:23 UTC], ["updated_at", 2016-08-19 02:47:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Descansou"], ["question_id", 591], ["correct", true], ["created_at", 2016-08-19 02:47:23 UTC], ["updated_at", 2016-08-19 02:47:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Criou Adão e Eva"], ["question_id", 591], ["correct", false], ["created_at", 2016-08-19 02:47:23 UTC], ["updated_at", 2016-08-19 02:47:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Criou Os Animais Terrestres"], ["question_id", 591], ["correct", false], ["created_at", 2016-08-19 02:47:23 UTC], ["updated_at", 2016-08-19 02:47:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Criou Os Pássaros"], ["question_id", 591], ["correct", false], ["created_at", 2016-08-19 02:47:23 UTC], ["updated_at", 2016-08-19 02:47:23 UTC]]  (108.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que devemos fazer com aqueles que nos amaldiçoam?"], ["created_at", 2016-08-19 02:47:23 UTC], ["updated_at", 2016-08-19 02:47:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bendizê-los"], ["question_id", 592], ["correct", true], ["created_at", 2016-08-19 02:47:23 UTC], ["updated_at", 2016-08-19 02:47:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Confrontá-los"], ["question_id", 592], ["correct", false], ["created_at", 2016-08-19 02:47:23 UTC], ["updated_at", 2016-08-19 02:47:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ignorá-los"], ["question_id", 592], ["correct", false], ["created_at", 2016-08-19 02:47:23 UTC], ["updated_at", 2016-08-19 02:47:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Também Amaldiçoá-los"], ["question_id", 592], ["correct", false], ["created_at", 2016-08-19 02:47:23 UTC], ["updated_at", 2016-08-19 02:47:23 UTC]]  (132.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que devemos fazer com aqueles que nos maltratam?"], ["created_at", 2016-08-19 02:47:23 UTC], ["updated_at", 2016-08-19 02:47:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Orar Por Eles"], ["question_id", 593], ["correct", true], ["created_at", 2016-08-19 02:47:23 UTC], ["updated_at", 2016-08-19 02:47:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Surrá-los"], ["question_id", 593], ["correct", false], ["created_at", 2016-08-19 02:47:23 UTC], ["updated_at", 2016-08-19 02:47:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jogá-los Na Prisão"], ["question_id", 593], ["correct", false], ["created_at", 2016-08-19 02:47:23 UTC], ["updated_at", 2016-08-19 02:47:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Denunciá-los Às Autoridades"], ["question_id", 593], ["correct", false], ["created_at", 2016-08-19 02:47:23 UTC], ["updated_at", 2016-08-19 02:47:23 UTC]]  (125.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que devemos nos vestir para nos proteger contra as tentações de Satanás?"], ["created_at", 2016-08-19 02:47:23 UTC], ["updated_at", 2016-08-19 02:47:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Armadura de Deus"], ["question_id", 594], ["correct", true], ["created_at", 2016-08-19 02:47:23 UTC], ["updated_at", 2016-08-19 02:47:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Roupas Limpas"], ["question_id", 594], ["correct", false], ["created_at", 2016-08-19 02:47:23 UTC], ["updated_at", 2016-08-19 02:47:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Óculos Espirituais"], ["question_id", 594], ["correct", false], ["created_at", 2016-08-19 02:47:23 UTC], ["updated_at", 2016-08-19 02:47:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Justiça de Cristo"], ["question_id", 594], ["correct", false], ["created_at", 2016-08-19 02:47:23 UTC], ["updated_at", 2016-08-19 02:47:23 UTC]]  (184.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que dizia a placa que foi pregada na cruz de Jesus?"], ["created_at", 2016-08-19 02:47:23 UTC], ["updated_at", 2016-08-19 02:47:23 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Rei dos Judeus"], ["question_id", 595], ["correct", true], ["created_at", 2016-08-19 02:47:23 UTC], ["updated_at", 2016-08-19 02:47:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Rei do Universo"], ["question_id", 595], ["correct", false], ["created_at", 2016-08-19 02:47:23 UTC], ["updated_at", 2016-08-19 02:47:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Príncipe da Terra"], ["question_id", 595], ["correct", false], ["created_at", 2016-08-19 02:47:23 UTC], ["updated_at", 2016-08-19 02:47:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deus dos Deuses"], ["question_id", 595], ["correct", false], ["created_at", 2016-08-19 02:47:23 UTC], ["updated_at", 2016-08-19 02:47:23 UTC]]  (233.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Eliseu fez para transformar o caldo venenoso novamente comestível?"], ["created_at", 2016-08-19 02:47:24 UTC], ["updated_at", 2016-08-19 02:47:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Colocou Farinha"], ["question_id", 596], ["correct", true], ["created_at", 2016-08-19 02:47:24 UTC], ["updated_at", 2016-08-19 02:47:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jogou Fora e Fez Novo Caldo"], ["question_id", 596], ["correct", false], ["created_at", 2016-08-19 02:47:24 UTC], ["updated_at", 2016-08-19 02:47:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assoprou No Interior da Panela"], ["question_id", 596], ["correct", false], ["created_at", 2016-08-19 02:47:24 UTC], ["updated_at", 2016-08-19 02:47:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cuspiu No Caldo"], ["question_id", 596], ["correct", false], ["created_at", 2016-08-19 02:47:24 UTC], ["updated_at", 2016-08-19 02:47:24 UTC]]  (108.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que En-dor era?\n1,"], ["created_at", 2016-08-19 02:47:24 UTC], ["updated_at", 2016-08-19 02:47:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Médium"], ["question_id", 597], ["correct", true], ["created_at", 2016-08-19 02:47:24 UTC], ["updated_at", 2016-08-19 02:47:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sacerdotisa"], ["question_id", 597], ["correct", false], ["created_at", 2016-08-19 02:47:24 UTC], ["updated_at", 2016-08-19 02:47:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rainha"], ["question_id", 597], ["correct", false], ["created_at", 2016-08-19 02:47:24 UTC], ["updated_at", 2016-08-19 02:47:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esposa de Ló"], ["question_id", 597], ["correct", false], ["created_at", 2016-08-19 02:47:24 UTC], ["updated_at", 2016-08-19 02:47:24 UTC]]  (208.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que era incomum na sarça em chamas que Moisés viu?"], ["created_at", 2016-08-19 02:47:24 UTC], ["updated_at", 2016-08-19 02:47:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Se Consumia Com O Fogo"], ["question_id", 598], ["correct", true], ["created_at", 2016-08-19 02:47:24 UTC], ["updated_at", 2016-08-19 02:47:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Era Extremamente Quente O Calor"], ["question_id", 598], ["correct", false], ["created_at", 2016-08-19 02:47:24 UTC], ["updated_at", 2016-08-19 02:47:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caia Neve da Sarça"], ["question_id", 598], ["correct", false], ["created_at", 2016-08-19 02:47:24 UTC], ["updated_at", 2016-08-19 02:47:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jorrava Água da Sarça"], ["question_id", 598], ["correct", false], ["created_at", 2016-08-19 02:47:24 UTC], ["updated_at", 2016-08-19 02:47:24 UTC]]  (108.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Esaú vendeu a Jacó, seu irmão?"], ["created_at", 2016-08-19 02:47:24 UTC], ["updated_at", 2016-08-19 02:47:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Direito de Primogenitura"], ["question_id", 599], ["correct", true], ["created_at", 2016-08-19 02:47:24 UTC], ["updated_at", 2016-08-19 02:47:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Bênção"], ["question_id", 599], ["correct", false], ["created_at", 2016-08-19 02:47:24 UTC], ["updated_at", 2016-08-19 02:47:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carne"], ["question_id", 599], ["correct", false], ["created_at", 2016-08-19 02:47:24 UTC], ["updated_at", 2016-08-19 02:47:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Propriedade Rural"], ["question_id", 599], ["correct", false], ["created_at", 2016-08-19 02:47:24 UTC], ["updated_at", 2016-08-19 02:47:24 UTC]]  (124.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Esaú vendeu em troca de um ensopado?\n1,"], ["created_at", 2016-08-19 02:47:24 UTC], ["updated_at", 2016-08-19 02:47:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Direito de Filho Mais Velho"], ["question_id", 600], ["correct", true], ["created_at", 2016-08-19 02:47:24 UTC], ["updated_at", 2016-08-19 02:47:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "24 Camêlos"], ["question_id", 600], ["correct", false], ["created_at", 2016-08-19 02:47:24 UTC], ["updated_at", 2016-08-19 02:47:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1.300 Côvados de Terra Fértil"], ["question_id", 600], ["correct", false], ["created_at", 2016-08-19 02:47:24 UTC], ["updated_at", 2016-08-19 02:47:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oásis"], ["question_id", 600], ["correct", false], ["created_at", 2016-08-19 02:47:24 UTC], ["updated_at", 2016-08-19 02:47:24 UTC]]  (133.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que estava dentro da Arca da Aliança?"], ["created_at", 2016-08-19 02:47:24 UTC], ["updated_at", 2016-08-19 02:47:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Tábuas da Lei de Deus"], ["question_id", 601], ["correct", true], ["created_at", 2016-08-19 02:47:24 UTC], ["updated_at", 2016-08-19 02:47:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Manto de Arão"], ["question_id", 601], ["correct", false], ["created_at", 2016-08-19 02:47:24 UTC], ["updated_at", 2016-08-19 02:47:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Cajado de Moisés"], ["question_id", 601], ["correct", false], ["created_at", 2016-08-19 02:47:24 UTC], ["updated_at", 2016-08-19 02:47:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Manto de Moisés"], ["question_id", 601], ["correct", false], ["created_at", 2016-08-19 02:47:24 UTC], ["updated_at", 2016-08-19 02:47:24 UTC]]  (192.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Ezequias, rei de Judá, sabiamente retirou de seu reino?"], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Altares dos Deuses Pagãos"], ["question_id", 602], ["correct", true], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Sucessores Ao Trono Real"], ["question_id", 602], ["correct", false], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todos Os Fracos Espiritualmente"], ["question_id", 602], ["correct", false], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todos Os Escravos Conquistados"], ["question_id", 602], ["correct", false], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]]  (143.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que foi pregado na cruz acima da cabeça de Jesus Cristo?"], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Placa Contendo Uma Inscrição"], ["question_id", 603], ["correct", true], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Coroa de Espinhos"], ["question_id", 603], ["correct", false], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Cajado de Arão"], ["question_id", 603], ["correct", false], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Túnica Real"], ["question_id", 603], ["correct", false], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]]  (157.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Golias disse a Davi quando viu o cajado na mão de Davi?"], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sou Eu Um Cão, Para Que Venhas A Mim Com Cajados?"], ["question_id", 604], ["correct", true], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Acaso Sou Ovelha Para Ser Pastoreada Por Ti?"], ["question_id", 604], ["correct", false], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isso É O Melhor Que Você Tem Para Me Enfrentar?"], ["question_id", 604], ["correct", false], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Usarei Seu Cajado Para Tirar Sua Cabeça!"], ["question_id", 604], ["correct", false], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]]  (108.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que guiou os reis Magos em sua jornada a partir do oriente?"], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Estrela"], ["question_id", 605], ["correct", true], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Pomba"], ["question_id", 605], ["correct", false], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Nuvem"], ["question_id", 605], ["correct", false], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Anjo"], ["question_id", 605], ["correct", false], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]]  (116.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que houve durante as últimas 3 horas em que Jesus esteve crucificado?"], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escuridão"], ["question_id", 606], ["correct", true], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Muitos Gemidos de Jesus"], ["question_id", 606], ["correct", false], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Muita Oração Por Parte dos Discípulos"], ["question_id", 606], ["correct", false], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus Foi Surrado Mais Algumas Vezes"], ["question_id", 606], ["correct", false], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]]  (141.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Jacó comprou de seu irmão, Esaú?"], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Direito À Primogenitura"], ["question_id", 607], ["correct", true], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carne"], ["question_id", 607], ["correct", false], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bênção"], ["question_id", 607], ["correct", false], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Grande Propriedade Rural"], ["question_id", 607], ["correct", false], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]]  (141.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Jacó tomou de Esaú?"], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Bênção"], ["question_id", 608], ["correct", true], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Direito de Primogenitura"], ["question_id", 608], ["correct", false], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Lugar Na Família"], ["question_id", 608], ["correct", false], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Grandes Propriedades Rurais"], ["question_id", 608], ["correct", false], ["created_at", 2016-08-19 02:47:25 UTC], ["updated_at", 2016-08-19 02:47:25 UTC]]  (132.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Jesus disse à mulher pecadora, em resposta pelo fato da mesma ter-lhe ungido seus pés?"], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Teus Pecados Estão Perdoados"], ["question_id", 609], ["correct", true], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tu É Muito Gentil"], ["question_id", 609], ["correct", false], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tua Vida Agora É Minha"], ["question_id", 609], ["correct", false], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vá Em Paz"], ["question_id", 609], ["correct", false], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]]  (175.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Jesus disse quando Ele apareceu para os discípulos?"], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Paz Esteja Convosco"], ["question_id", 610], ["correct", true], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vocês Não Me Reconhecem?"], ["question_id", 610], ["correct", false], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Duvidem!"], ["question_id", 610], ["correct", false], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Desejam Me Tocar?"], ["question_id", 610], ["correct", false], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]]  (100.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Jesus disse que as pessoas haviam transformado o Templo de Deus?"], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Um Antro de Ladrões"], ["question_id", 611], ["correct", true], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Um Covil de Lobos"], ["question_id", 611], ["correct", false], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Um Cemitério Com Túmulos Abertos"], ["question_id", 611], ["correct", false], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Uma Casa de Oração"], ["question_id", 611], ["correct", false], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]]  (168.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Jesus disse que havia superado?"], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Mundo"], ["question_id", 612], ["correct", true], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Fome"], ["question_id", 612], ["correct", false], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Sono"], ["question_id", 612], ["correct", false], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Inimizade"], ["question_id", 612], ["correct", false], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]]  (149.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Jesus ensinou que acontecerá à uma casa ou cidade que estiver dividida?"], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Substistirá"], ["question_id", 613], ["correct", true], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Será Mais Fácil de Ser Governada"], ["question_id", 613], ["correct", false], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Parecerá Maior"], ["question_id", 613], ["correct", false], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Será Melhor Conhecida"], ["question_id", 613], ["correct", false], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]]  (124.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Jesus ensinou que devemos fazer quando forçados a andar 1 milha?"], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Andarmos Duas"], ["question_id", 614], ["correct", true], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marcharmos"], ["question_id", 614], ["correct", false], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nos Recusarmos A Ir"], ["question_id", 614], ["correct", false], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sair Correndo"], ["question_id", 614], ["correct", false], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]]  (117.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Jesus fez para ensinar os seus discípulos sobre servir ao próximo?"], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Lavou Os Pés de Seus Discípulos"], ["question_id", 615], ["correct", true], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Discípulos Lavaram Os Pés de Jesus"], ["question_id", 615], ["correct", false], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todos Lavaram Os Pés Uns dos Outros"], ["question_id", 615], ["correct", false], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas Foram Lavados Os Pés de Judas, O Traidor"], ["question_id", 615], ["correct", false], ["created_at", 2016-08-19 02:47:26 UTC], ["updated_at", 2016-08-19 02:47:26 UTC]]  (141.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Jesus instruiu a seus discípulos a dizerem se alguém se recusasse a emprestar o jumento?"], ["created_at", 2016-08-19 02:47:27 UTC], ["updated_at", 2016-08-19 02:47:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Senhor Precisa Dele"], ["question_id", 616], ["correct", true], ["created_at", 2016-08-19 02:47:27 UTC], ["updated_at", 2016-08-19 02:47:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vamos Trocá-lo Por Alimento"], ["question_id", 616], ["correct", false], ["created_at", 2016-08-19 02:47:27 UTC], ["updated_at", 2016-08-19 02:47:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pagaremos Depois"], ["question_id", 616], ["correct", false], ["created_at", 2016-08-19 02:47:27 UTC], ["updated_at", 2016-08-19 02:47:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Temos Dinheiro Para Comprar"], ["question_id", 616], ["correct", false], ["created_at", 2016-08-19 02:47:27 UTC], ["updated_at", 2016-08-19 02:47:27 UTC]]  (142.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Jesus nos diz para não arremessar aos porcos?"], ["created_at", 2016-08-19 02:47:27 UTC], ["updated_at", 2016-08-19 02:47:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pérolas"], ["question_id", 617], ["correct", true], ["created_at", 2016-08-19 02:47:27 UTC], ["updated_at", 2016-08-19 02:47:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Diamantes"], ["question_id", 617], ["correct", false], ["created_at", 2016-08-19 02:47:27 UTC], ["updated_at", 2016-08-19 02:47:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moedas"], ["question_id", 617], ["correct", false], ["created_at", 2016-08-19 02:47:27 UTC], ["updated_at", 2016-08-19 02:47:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lavagem"], ["question_id", 617], ["correct", false], ["created_at", 2016-08-19 02:47:27 UTC], ["updated_at", 2016-08-19 02:47:27 UTC]]  (149.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Jesus nos ensinou se alguém nos pede nossa camisa?"], ["created_at", 2016-08-19 02:47:27 UTC], ["updated_at", 2016-08-19 02:47:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dar O Nosso Casaco Também"], ["question_id", 618], ["correct", true], ["created_at", 2016-08-19 02:47:27 UTC], ["updated_at", 2016-08-19 02:47:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vendê-lo A Quem Pediu"], ["question_id", 618], ["correct", false], ["created_at", 2016-08-19 02:47:27 UTC], ["updated_at", 2016-08-19 02:47:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dá-la A Quem Pediu"], ["question_id", 618], ["correct", false], ["created_at", 2016-08-19 02:47:27 UTC], ["updated_at", 2016-08-19 02:47:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Emprestá-la A Quem Pediu"], ["question_id", 618], ["correct", false], ["created_at", 2016-08-19 02:47:27 UTC], ["updated_at", 2016-08-19 02:47:27 UTC]]  (125.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Jesus nos instruiu a fazer quando nos batem na face direita?"], ["created_at", 2016-08-19 02:47:27 UTC], ["updated_at", 2016-08-19 02:47:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dar A Outra Face"], ["question_id", 619], ["correct", true], ["created_at", 2016-08-19 02:47:27 UTC], ["updated_at", 2016-08-19 02:47:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Revidar"], ["question_id", 619], ["correct", false], ["created_at", 2016-08-19 02:47:27 UTC], ["updated_at", 2016-08-19 02:47:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Buscar Ajuda Legal"], ["question_id", 619], ["correct", false], ["created_at", 2016-08-19 02:47:27 UTC], ["updated_at", 2016-08-19 02:47:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matar O Agressor"], ["question_id", 619], ["correct", false], ["created_at", 2016-08-19 02:47:27 UTC], ["updated_at", 2016-08-19 02:47:27 UTC]]  (134.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Jesus oferecia para aqueles que o seguiam?"], ["created_at", 2016-08-19 02:47:27 UTC], ["updated_at", 2016-08-19 02:47:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Vida Eterna"], ["question_id", 620], ["correct", true], ["created_at", 2016-08-19 02:47:27 UTC], ["updated_at", 2016-08-19 02:47:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tudo O Que Eles Queriam"], ["question_id", 620], ["correct", false], ["created_at", 2016-08-19 02:47:27 UTC], ["updated_at", 2016-08-19 02:47:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Vida de Luxo"], ["question_id", 620], ["correct", false], ["created_at", 2016-08-19 02:47:27 UTC], ["updated_at", 2016-08-19 02:47:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Vida de Pobreza e Perseguição"], ["question_id", 620], ["correct", false], ["created_at", 2016-08-19 02:47:27 UTC], ["updated_at", 2016-08-19 02:47:27 UTC]]  (133.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Joabe fez a seu irmão enquanto o beijava?\n1,"], ["created_at", 2016-08-19 02:47:27 UTC], ["updated_at", 2016-08-19 02:47:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matou-o"], ["question_id", 621], ["correct", true], ["created_at", 2016-08-19 02:47:27 UTC], ["updated_at", 2016-08-19 02:47:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraçou-o"], ["question_id", 621], ["correct", false], ["created_at", 2016-08-19 02:47:27 UTC], ["updated_at", 2016-08-19 02:47:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Coroou-o Rei"], ["question_id", 621], ["correct", false], ["created_at", 2016-08-19 02:47:27 UTC], ["updated_at", 2016-08-19 02:47:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Desferiu-lhe Um Tapa"], ["question_id", 621], ["correct", false], ["created_at", 2016-08-19 02:47:27 UTC], ["updated_at", 2016-08-19 02:47:27 UTC]]  (232.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Jônatas foi?"], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todas As Alternativas Estão Corretas"], ["question_id", 622], ["correct", true], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Melhor Amigo de Davi"], ["question_id", 622], ["correct", false], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filho de Saul"], ["question_id", 622], ["correct", false], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cunhado de Davi"], ["question_id", 622], ["correct", false], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]]  (134.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que José disse ao Faraó sobre o significado dos sonhos que este tivera?"], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "De Que Haveria Um Grande Período de Fome No Egito"], ["question_id", 623], ["correct", true], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "De Que Haveria Uma Grande Tempestade"], ["question_id", 623], ["correct", false], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "De Que Haveria Uma Pestilência Muito Grave"], ["question_id", 623], ["correct", false], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Da Necessidade Em Libertar O Povo Hebreu"], ["question_id", 623], ["correct", false], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]]  (132.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que José fez com seus irmãos por 3 dias, quando estes foram comprar grãos?"], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Manteve-os Preso Em Uma Prisão"], ["question_id", 624], ["correct", true], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hospedou-os No Palácio do Faraó"], ["question_id", 624], ["correct", false], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mandou Açoitá-los"], ["question_id", 624], ["correct", false], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Impediu Que Falassem"], ["question_id", 624], ["correct", false], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]]  (124.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que José ganhou de seu pai que deixou seus irmãos com muito ciúme?"], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Túnica de Muitas Cores"], ["question_id", 625], ["correct", true], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Rebanho de Ovelhas"], ["question_id", 625], ["correct", false], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Bênção da Primogenitura"], ["question_id", 625], ["correct", false], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Herança de Toda A Família"], ["question_id", 625], ["correct", false], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]]  (149.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que José, filho de Jaco, interpretou para o Faraó?"], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sonhos"], ["question_id", 626], ["correct", true], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Livros"], ["question_id", 626], ["correct", false], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Escrita Na Parede"], ["question_id", 626], ["correct", false], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Língua Estrangeira"], ["question_id", 626], ["correct", false], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]]  (158.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Josué enviou para a cidade de Jericó?"], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Espias"], ["question_id", 627], ["correct", true], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Presentes"], ["question_id", 627], ["correct", false], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gado"], ["question_id", 627], ["correct", false], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Cavalo de Tróia"], ["question_id", 627], ["correct", false], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]]  (124.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que o servo de Abraão deu a Rebeca como agradecimento, próximo ao poço?\n1,"], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Argola de Ouro e 2 Pulseiras de Ouro"], ["question_id", 628], ["correct", true], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "24 Kg de Ouro"], ["question_id", 628], ["correct", false], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12 Camêlos"], ["question_id", 628], ["correct", false], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1.300 Côvados de Terra Fértil"], ["question_id", 628], ["correct", false], ["created_at", 2016-08-19 02:47:28 UTC], ["updated_at", 2016-08-19 02:47:28 UTC]]  (116.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que ocorreu durante o reinado de Oséias?"], ["created_at", 2016-08-19 02:47:29 UTC], ["updated_at", 2016-08-19 02:47:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Reino Foi Conquistado Pelos Assírios"], ["question_id", 629], ["correct", true], ["created_at", 2016-08-19 02:47:29 UTC], ["updated_at", 2016-08-19 02:47:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Reino Enfrentou Uma Grande Revolução"], ["question_id", 629], ["correct", false], ["created_at", 2016-08-19 02:47:29 UTC], ["updated_at", 2016-08-19 02:47:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Perseguido Pela Própria Família Real"], ["question_id", 629], ["correct", false], ["created_at", 2016-08-19 02:47:29 UTC], ["updated_at", 2016-08-19 02:47:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Sacerdotes do Templo Desejavam Expulsá-lo"], ["question_id", 629], ["correct", false], ["created_at", 2016-08-19 02:47:29 UTC], ["updated_at", 2016-08-19 02:47:29 UTC]]  (138.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que os apóstolos deveriam fazer se uma casa ou cidade não os recebesse?"], ["created_at", 2016-08-19 02:47:29 UTC], ["updated_at", 2016-08-19 02:47:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sacudir O Pó dos Pés"], ["question_id", 630], ["correct", true], ["created_at", 2016-08-19 02:47:29 UTC], ["updated_at", 2016-08-19 02:47:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Voltar Outro Dia"], ["question_id", 630], ["correct", false], ["created_at", 2016-08-19 02:47:29 UTC], ["updated_at", 2016-08-19 02:47:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ficar e Orar Por Eles"], ["question_id", 630], ["correct", false], ["created_at", 2016-08-19 02:47:29 UTC], ["updated_at", 2016-08-19 02:47:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sair Correndo"], ["question_id", 630], ["correct", false], ["created_at", 2016-08-19 02:47:29 UTC], ["updated_at", 2016-08-19 02:47:29 UTC]]  (120.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que os discípulos de Jesus fizeram ao verem Jesus ser levado preso pelos soldados romanos?"], ["created_at", 2016-08-19 02:47:29 UTC], ["updated_at", 2016-08-19 02:47:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fugiram"], ["question_id", 631], ["correct", true], ["created_at", 2016-08-19 02:47:29 UTC], ["updated_at", 2016-08-19 02:47:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Investiram Contra Os Soldados"], ["question_id", 631], ["correct", false], ["created_at", 2016-08-19 02:47:29 UTC], ["updated_at", 2016-08-19 02:47:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jogaram Lanças Sobre Os Soldados"], ["question_id", 631], ["correct", false], ["created_at", 2016-08-19 02:47:29 UTC], ["updated_at", 2016-08-19 02:47:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Xingaram Os Soldados"], ["question_id", 631], ["correct", false], ["created_at", 2016-08-19 02:47:29 UTC], ["updated_at", 2016-08-19 02:47:29 UTC]]  (158.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que os filisteus colocaram dentro da Arca da Aliança quando a devolveram aos israelitas?"], ["created_at", 2016-08-19 02:47:29 UTC], ["updated_at", 2016-08-19 02:47:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5 Camundongos de Ouro"], ["question_id", 632], ["correct", true], ["created_at", 2016-08-19 02:47:29 UTC], ["updated_at", 2016-08-19 02:47:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 Sapos de Ouro"], ["question_id", 632], ["correct", false], ["created_at", 2016-08-19 02:47:29 UTC], ["updated_at", 2016-08-19 02:47:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Bezerro de Ouro"], ["question_id", 632], ["correct", false], ["created_at", 2016-08-19 02:47:29 UTC], ["updated_at", 2016-08-19 02:47:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Gatos de Ouro"], ["question_id", 632], ["correct", false], ["created_at", 2016-08-19 02:47:29 UTC], ["updated_at", 2016-08-19 02:47:29 UTC]]  (191.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que os irmãos de José foram fazer no Egito?"], ["created_at", 2016-08-19 02:47:29 UTC], ["updated_at", 2016-08-19 02:47:29 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Comprar Grãos"], ["question_id", 633], ["correct", true], ["created_at", 2016-08-19 02:47:29 UTC], ["updated_at", 2016-08-19 02:47:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Comprar Água do Rio Nilo"], ["question_id", 633], ["correct", false], ["created_at", 2016-08-19 02:47:29 UTC], ["updated_at", 2016-08-19 02:47:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Comprar Uma Esposa Para José"], ["question_id", 633], ["correct", false], ["created_at", 2016-08-19 02:47:29 UTC], ["updated_at", 2016-08-19 02:47:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Comprar Novamente A José Que Foi Vendido Escravo"], ["question_id", 633], ["correct", false], ["created_at", 2016-08-19 02:47:29 UTC], ["updated_at", 2016-08-19 02:47:29 UTC]]  (141.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que os israelitas fizeram a Jericó após a queda do muro?"], ["created_at", 2016-08-19 02:47:29 UTC], ["updated_at", 2016-08-19 02:47:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Queimaram"], ["question_id", 634], ["correct", true], ["created_at", 2016-08-19 02:47:29 UTC], ["updated_at", 2016-08-19 02:47:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Limparam"], ["question_id", 634], ["correct", false], ["created_at", 2016-08-19 02:47:29 UTC], ["updated_at", 2016-08-19 02:47:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Se Mudaram Para Lá"], ["question_id", 634], ["correct", false], ["created_at", 2016-08-19 02:47:29 UTC], ["updated_at", 2016-08-19 02:47:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Reconstruíram O Muro"], ["question_id", 634], ["correct", false], ["created_at", 2016-08-19 02:47:29 UTC], ["updated_at", 2016-08-19 02:47:29 UTC]]  (174.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que os israelitas fizeram para derrubar as muralhas de Jericó?"], ["created_at", 2016-08-19 02:47:30 UTC], ["updated_at", 2016-08-19 02:47:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gritaram"], ["question_id", 635], ["correct", true], ["created_at", 2016-08-19 02:47:30 UTC], ["updated_at", 2016-08-19 02:47:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jogaram Tochas de Fogo"], ["question_id", 635], ["correct", false], ["created_at", 2016-08-19 02:47:30 UTC], ["updated_at", 2016-08-19 02:47:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pularam Sobre A Mesma"], ["question_id", 635], ["correct", false], ["created_at", 2016-08-19 02:47:30 UTC], ["updated_at", 2016-08-19 02:47:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jogaram Água Fervente"], ["question_id", 635], ["correct", false], ["created_at", 2016-08-19 02:47:30 UTC], ["updated_at", 2016-08-19 02:47:30 UTC]]  (174.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que os outros 2 Presidentes nomeados pelo rei Dario sentiam em relação ao cargo de Daniel?"], ["created_at", 2016-08-19 02:47:30 UTC], ["updated_at", 2016-08-19 02:47:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Inveja"], ["question_id", 636], ["correct", true], ["created_at", 2016-08-19 02:47:30 UTC], ["updated_at", 2016-08-19 02:47:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Indiferença"], ["question_id", 636], ["correct", false], ["created_at", 2016-08-19 02:47:30 UTC], ["updated_at", 2016-08-19 02:47:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Simpatia"], ["question_id", 636], ["correct", false], ["created_at", 2016-08-19 02:47:30 UTC], ["updated_at", 2016-08-19 02:47:30 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amizade"], ["question_id", 636], ["correct", false], ["created_at", 2016-08-19 02:47:30 UTC], ["updated_at", 2016-08-19 02:47:30 UTC]]  (124.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que os pastores fizeram logo após terem recebido a notícia do nascimento do menino Jesus?"], ["created_at", 2016-08-19 02:47:30 UTC], ["updated_at", 2016-08-19 02:47:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foram Ver O Messias"], ["question_id", 637], ["correct", true], ["created_at", 2016-08-19 02:47:30 UTC], ["updated_at", 2016-08-19 02:47:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fugiram de Medo"], ["question_id", 637], ["correct", false], ["created_at", 2016-08-19 02:47:30 UTC], ["updated_at", 2016-08-19 02:47:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Desmaiaram de Terror"], ["question_id", 637], ["correct", false], ["created_at", 2016-08-19 02:47:30 UTC], ["updated_at", 2016-08-19 02:47:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foram Atrás das Ovelhas Que Se Perderam"], ["question_id", 637], ["correct", false], ["created_at", 2016-08-19 02:47:30 UTC], ["updated_at", 2016-08-19 02:47:30 UTC]]  (134.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que os soldados romanos disseram a Jesus quando colocaram a coroa de espinhos sobre Sua cabeça?"], ["created_at", 2016-08-19 02:47:30 UTC], ["updated_at", 2016-08-19 02:47:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salve, Rei dos Judeus!"], ["question_id", 638], ["correct", true], ["created_at", 2016-08-19 02:47:30 UTC], ["updated_at", 2016-08-19 02:47:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fique Em Pé Como Um Rei!"], ["question_id", 638], ["correct", false], ["created_at", 2016-08-19 02:47:30 UTC], ["updated_at", 2016-08-19 02:47:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Onde Estão Seus Amigos Agora, Ó Rei?"], ["question_id", 638], ["correct", false], ["created_at", 2016-08-19 02:47:30 UTC], ["updated_at", 2016-08-19 02:47:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Querem Que Façamos, Vossa Majestade?"], ["question_id", 638], ["correct", false], ["created_at", 2016-08-19 02:47:30 UTC], ["updated_at", 2016-08-19 02:47:30 UTC]]  (158.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que os soldados romanos faziam para apressar a morte das pessoas crucificadas?"], ["created_at", 2016-08-19 02:47:30 UTC], ["updated_at", 2016-08-19 02:47:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quebravam Suas Pernas"], ["question_id", 639], ["correct", true], ["created_at", 2016-08-19 02:47:30 UTC], ["updated_at", 2016-08-19 02:47:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Drogavam-nas"], ["question_id", 639], ["correct", false], ["created_at", 2016-08-19 02:47:30 UTC], ["updated_at", 2016-08-19 02:47:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Açoitavam-nas"], ["question_id", 639], ["correct", false], ["created_at", 2016-08-19 02:47:30 UTC], ["updated_at", 2016-08-19 02:47:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quebravam Suas Costelas"], ["question_id", 639], ["correct", false], ["created_at", 2016-08-19 02:47:30 UTC], ["updated_at", 2016-08-19 02:47:30 UTC]]  (200.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que os soldados romanos fizeram com Jesus enquanto batiam-No com a cana em sua cabeça?"], ["created_at", 2016-08-19 02:47:30 UTC], ["updated_at", 2016-08-19 02:47:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cuspiam-no"], ["question_id", 640], ["correct", true], ["created_at", 2016-08-19 02:47:30 UTC], ["updated_at", 2016-08-19 02:47:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Xingavam-no"], ["question_id", 640], ["correct", false], ["created_at", 2016-08-19 02:47:30 UTC], ["updated_at", 2016-08-19 02:47:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Açoitavam-no"], ["question_id", 640], ["correct", false], ["created_at", 2016-08-19 02:47:30 UTC], ["updated_at", 2016-08-19 02:47:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Soqueavam-no"], ["question_id", 640], ["correct", false], ["created_at", 2016-08-19 02:47:30 UTC], ["updated_at", 2016-08-19 02:47:30 UTC]]  (124.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Pedro encontrou dentro da boca de um peixe?"], ["created_at", 2016-08-19 02:47:30 UTC], ["updated_at", 2016-08-19 02:47:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Moeda"], ["question_id", 641], ["correct", true], ["created_at", 2016-08-19 02:47:30 UTC], ["updated_at", 2016-08-19 02:47:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Diamante"], ["question_id", 641], ["correct", false], ["created_at", 2016-08-19 02:47:30 UTC], ["updated_at", 2016-08-19 02:47:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Outro Peixe Menor"], ["question_id", 641], ["correct", false], ["created_at", 2016-08-19 02:47:31 UTC], ["updated_at", 2016-08-19 02:47:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Recado de Jonas"], ["question_id", 641], ["correct", false], ["created_at", 2016-08-19 02:47:31 UTC], ["updated_at", 2016-08-19 02:47:31 UTC]]  (125.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Pedro, Tiago e João fizeram como resposta após Jesus tê-los instruídos para vigiarem no Jardim do Getsêmani?"], ["created_at", 2016-08-19 02:47:31 UTC], ["updated_at", 2016-08-19 02:47:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dormiram"], ["question_id", 642], ["correct", true], ["created_at", 2016-08-19 02:47:31 UTC], ["updated_at", 2016-08-19 02:47:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ficaram Conversando Entre Si"], ["question_id", 642], ["correct", false], ["created_at", 2016-08-19 02:47:31 UTC], ["updated_at", 2016-08-19 02:47:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Discutiram Quem Era O Maior Dentre Eles"], ["question_id", 642], ["correct", false], ["created_at", 2016-08-19 02:47:31 UTC], ["updated_at", 2016-08-19 02:47:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oraram"], ["question_id", 642], ["correct", false], ["created_at", 2016-08-19 02:47:31 UTC], ["updated_at", 2016-08-19 02:47:31 UTC]]  (150.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que pertencia a Esaú que lhe foi tomado por seu irmão Jacó?"], ["created_at", 2016-08-19 02:47:31 UTC], ["updated_at", 2016-08-19 02:47:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Bênção"], ["question_id", 643], ["correct", true], ["created_at", 2016-08-19 02:47:31 UTC], ["updated_at", 2016-08-19 02:47:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Direito de Primogenitura"], ["question_id", 643], ["correct", false], ["created_at", 2016-08-19 02:47:31 UTC], ["updated_at", 2016-08-19 02:47:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Maiores Propriedades Rurais da Família"], ["question_id", 643], ["correct", false], ["created_at", 2016-08-19 02:47:31 UTC], ["updated_at", 2016-08-19 02:47:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Filhos"], ["question_id", 643], ["correct", false], ["created_at", 2016-08-19 02:47:31 UTC], ["updated_at", 2016-08-19 02:47:31 UTC]]  (225.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Pôncio Pilatos disse quando trouxe Jesus do Pretório e O apresetou à multidão?"], ["created_at", 2016-08-19 02:47:31 UTC], ["updated_at", 2016-08-19 02:47:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eis O Homem!"], ["question_id", 644], ["correct", true], ["created_at", 2016-08-19 02:47:31 UTC], ["updated_at", 2016-08-19 02:47:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Confessou!"], ["question_id", 644], ["correct", false], ["created_at", 2016-08-19 02:47:31 UTC], ["updated_at", 2016-08-19 02:47:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Já Foi Punido O Suficiente!"], ["question_id", 644], ["correct", false], ["created_at", 2016-08-19 02:47:31 UTC], ["updated_at", 2016-08-19 02:47:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Querem Ele Ou Barrabás?"], ["question_id", 644], ["correct", false], ["created_at", 2016-08-19 02:47:31 UTC], ["updated_at", 2016-08-19 02:47:31 UTC]]  (125.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Pôncio Pilatos fez enquanto disse: \"Sou inocente do sangue deste homem\"?"], ["created_at", 2016-08-19 02:47:31 UTC], ["updated_at", 2016-08-19 02:47:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lavou As Mãos"], ["question_id", 645], ["correct", true], ["created_at", 2016-08-19 02:47:31 UTC], ["updated_at", 2016-08-19 02:47:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Chorou"], ["question_id", 645], ["correct", false], ["created_at", 2016-08-19 02:47:31 UTC], ["updated_at", 2016-08-19 02:47:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fugiu da Presença de Jesus"], ["question_id", 645], ["correct", false], ["created_at", 2016-08-19 02:47:31 UTC], ["updated_at", 2016-08-19 02:47:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Consultou Seus Conselheiros"], ["question_id", 645], ["correct", false], ["created_at", 2016-08-19 02:47:31 UTC], ["updated_at", 2016-08-19 02:47:31 UTC]]  (135.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Raabe fez descer quando os israelitas invadiram a cidade de Jericó?"], ["created_at", 2016-08-19 02:47:31 UTC], ["updated_at", 2016-08-19 02:47:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Corda"], ["question_id", 646], ["correct", true], ["created_at", 2016-08-19 02:47:31 UTC], ["updated_at", 2016-08-19 02:47:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Escada"], ["question_id", 646], ["correct", false], ["created_at", 2016-08-19 02:47:31 UTC], ["updated_at", 2016-08-19 02:47:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Porta"], ["question_id", 646], ["correct", false], ["created_at", 2016-08-19 02:47:31 UTC], ["updated_at", 2016-08-19 02:47:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Espada"], ["question_id", 646], ["correct", false], ["created_at", 2016-08-19 02:47:31 UTC], ["updated_at", 2016-08-19 02:47:31 UTC]]  (133.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Raabe pediu aos espias em troca de sua colaboração em escondê-los?"], ["created_at", 2016-08-19 02:47:31 UTC], ["updated_at", 2016-08-19 02:47:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Sua Família Fosse Poupada"], ["question_id", 647], ["correct", true], ["created_at", 2016-08-19 02:47:31 UTC], ["updated_at", 2016-08-19 02:47:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Perdão das Dívidas Que Possuía"], ["question_id", 647], ["correct", false], ["created_at", 2016-08-19 02:47:31 UTC], ["updated_at", 2016-08-19 02:47:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Recompensa Financeira"], ["question_id", 647], ["correct", false], ["created_at", 2016-08-19 02:47:31 UTC], ["updated_at", 2016-08-19 02:47:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Casar-se Com Josué"], ["question_id", 647], ["correct", false], ["created_at", 2016-08-19 02:47:31 UTC], ["updated_at", 2016-08-19 02:47:31 UTC]]  (132.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que representavam os 5 camundongos de ouro que foram colocados pelos filisteus dentro da Arca da Aliança?"], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]]  (103.9ms) SELECT COUNT(*) FROM "quizzes_answers" SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os 5 Chefes dos Filisteus"], ["question_id", 648], ["correct", true], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As 5 Vitórias Obtidas Em Batalhas"], ["question_id", 648], ["correct", false], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Os Israelitas Deveriam Pagar 5 Baús de Ouro"], ["question_id", 648], ["correct", false], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todas As Alternativas"], ["question_id", 648], ["correct", false], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]]  (117.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Rubens, o filho mais velho de Jacó, perdeu?"], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Primogenitura"], ["question_id", 649], ["correct", true], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Mãe Em Um Acidente"], ["question_id", 649], ["correct", false], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Irmão José Na Cova dos Leões"], ["question_id", 649], ["correct", false], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Direito de Comprar Novamente A José"], ["question_id", 649], ["correct", false], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]]  (109.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Salomão construiu?"], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Templo de Deus"], ["question_id", 650], ["correct", true], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Jardins da Babilônia"], ["question_id", 650], ["correct", false], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Torre de Babel"], ["question_id", 650], ["correct", false], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Arca da Aliança"], ["question_id", 650], ["correct", false], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]]  (133.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Sansão amarrou nas caudas de 300 raposas?"], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fachos Incendiados"], ["question_id", 651], ["correct", true], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Coleira"], ["question_id", 651], ["correct", false], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sino"], ["question_id", 651], ["correct", false], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sapo"], ["question_id", 651], ["correct", false], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]]  (124.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Sansão e seus pais encontraram quando estavam a caminho de Timnate?"], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Leão"], ["question_id", 652], ["correct", true], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Multidão Enfurecida"], ["question_id", 652], ["correct", false], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Serpente"], ["question_id", 652], ["correct", false], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Queixada de Jumento"], ["question_id", 652], ["correct", false], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]]  (108.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Sansão fez ao leão com o qual lutou?"], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Despedaçou-o"], ["question_id", 653], ["correct", true], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cortou Sua Juba"], ["question_id", 653], ["correct", false], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cortou Sua Língua"], ["question_id", 653], ["correct", false], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quebrou-lhe As Pernas"], ["question_id", 653], ["correct", false], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]]  (134.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Sansão fez com a queixada de um jumento?"], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Usou Para Matar 1.000 Homens"], ["question_id", 654], ["correct", true], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Usou Para Cavar Um Túnel e Fugir"], ["question_id", 654], ["correct", false], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Usou Para Cavar Um Poço Para Matar Sua Sede"], ["question_id", 654], ["correct", false], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Usou Para Colher Uma Plantação de Trigo"], ["question_id", 654], ["correct", false], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]]  (126.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que se apossou de Sansão quando este encontrou-se com um leão?"], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Espírito do Senhor"], ["question_id", 655], ["correct", true], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Medo da Morte"], ["question_id", 655], ["correct", false], ["created_at", 2016-08-19 02:47:32 UTC], ["updated_at", 2016-08-19 02:47:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Visão"], ["question_id", 655], ["correct", false], ["created_at", 2016-08-19 02:47:33 UTC], ["updated_at", 2016-08-19 02:47:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Vontade de Fugir Muito Grande"], ["question_id", 655], ["correct", false], ["created_at", 2016-08-19 02:47:33 UTC], ["updated_at", 2016-08-19 02:47:33 UTC]]  (133.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que siginica o nome de Abraão?"], ["created_at", 2016-08-19 02:47:33 UTC], ["updated_at", 2016-08-19 02:47:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pai de Uma Multidão"], ["question_id", 656], ["correct", true], ["created_at", 2016-08-19 02:47:33 UTC], ["updated_at", 2016-08-19 02:47:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Homem de Fé"], ["question_id", 656], ["correct", false], ["created_at", 2016-08-19 02:47:33 UTC], ["updated_at", 2016-08-19 02:47:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caráter Elevado"], ["question_id", 656], ["correct", false], ["created_at", 2016-08-19 02:47:33 UTC], ["updated_at", 2016-08-19 02:47:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Servo Bom e Fiel"], ["question_id", 656], ["correct", false], ["created_at", 2016-08-19 02:47:33 UTC], ["updated_at", 2016-08-19 02:47:33 UTC]]  (175.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que significavam os sonhos do Faraó do Egito, interpretados por José?"], ["created_at", 2016-08-19 02:47:33 UTC], ["updated_at", 2016-08-19 02:47:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Períodos de Fartura e Estiagem Na Terra do Egito"], ["question_id", 657], ["correct", true], ["created_at", 2016-08-19 02:47:33 UTC], ["updated_at", 2016-08-19 02:47:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Animais Domésticos Contrairiam Uma Doença"], ["question_id", 657], ["correct", false], ["created_at", 2016-08-19 02:47:33 UTC], ["updated_at", 2016-08-19 02:47:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Pessoas Contrairiam Doença dos Animais"], ["question_id", 657], ["correct", false], ["created_at", 2016-08-19 02:47:33 UTC], ["updated_at", 2016-08-19 02:47:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Rio Nilo Iria Se Transformar Em Sangue"], ["question_id", 657], ["correct", false], ["created_at", 2016-08-19 02:47:33 UTC], ["updated_at", 2016-08-19 02:47:33 UTC]]  (167.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que um jovem chamado Êutico estava fazendo enquanto Paulo estava dando uma mensagem em Trôade?"], ["created_at", 2016-08-19 02:47:33 UTC], ["updated_at", 2016-08-19 02:47:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dormindo"], ["question_id", 658], ["correct", true], ["created_at", 2016-08-19 02:47:33 UTC], ["updated_at", 2016-08-19 02:47:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gritando"], ["question_id", 658], ["correct", false], ["created_at", 2016-08-19 02:47:33 UTC], ["updated_at", 2016-08-19 02:47:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Comendo"], ["question_id", 658], ["correct", false], ["created_at", 2016-08-19 02:47:33 UTC], ["updated_at", 2016-08-19 02:47:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Interrompendo-o A Todo Instante"], ["question_id", 658], ["correct", false], ["created_at", 2016-08-19 02:47:33 UTC], ["updated_at", 2016-08-19 02:47:33 UTC]]  (133.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O rei Acabe foi morto pelo fato de ter sido alvo ao acaso de uma:"], ["created_at", 2016-08-19 02:47:33 UTC], ["updated_at", 2016-08-19 02:47:33 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Flecha"], ["question_id", 659], ["correct", true], ["created_at", 2016-08-19 02:47:33 UTC], ["updated_at", 2016-08-19 02:47:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedra"], ["question_id", 659], ["correct", false], ["created_at", 2016-08-19 02:47:33 UTC], ["updated_at", 2016-08-19 02:47:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cuspida"], ["question_id", 659], ["correct", false], ["created_at", 2016-08-19 02:47:33 UTC], ["updated_at", 2016-08-19 02:47:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Surra"], ["question_id", 659], ["correct", false], ["created_at", 2016-08-19 02:47:33 UTC], ["updated_at", 2016-08-19 02:47:33 UTC]]  (141.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O rei Davi viajou pelo Monte das Oliveiras pois estava fugindo:"], ["created_at", 2016-08-19 02:47:33 UTC], ["updated_at", 2016-08-19 02:47:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Seu Filho Rebelde"], ["question_id", 660], ["correct", true], ["created_at", 2016-08-19 02:47:33 UTC], ["updated_at", 2016-08-19 02:47:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Povo Filisteu"], ["question_id", 660], ["correct", false], ["created_at", 2016-08-19 02:47:33 UTC], ["updated_at", 2016-08-19 02:47:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Da Revolta do Povo Hebreu"], ["question_id", 660], ["correct", false], ["created_at", 2016-08-19 02:47:33 UTC], ["updated_at", 2016-08-19 02:47:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "De Deus"], ["question_id", 660], ["correct", false], ["created_at", 2016-08-19 02:47:33 UTC], ["updated_at", 2016-08-19 02:47:33 UTC]]  (133.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O rei Ezequias construiu um túnel para abastecer de água a cidade de:"], ["created_at", 2016-08-19 02:47:33 UTC], ["updated_at", 2016-08-19 02:47:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 661], ["correct", true], ["created_at", 2016-08-19 02:47:33 UTC], ["updated_at", 2016-08-19 02:47:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nazaré"], ["question_id", 661], ["correct", false], ["created_at", 2016-08-19 02:47:33 UTC], ["updated_at", 2016-08-19 02:47:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 661], ["correct", false], ["created_at", 2016-08-19 02:47:33 UTC], ["updated_at", 2016-08-19 02:47:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cafarnaum"], ["question_id", 661], ["correct", false], ["created_at", 2016-08-19 02:47:33 UTC], ["updated_at", 2016-08-19 02:47:33 UTC]]  (117.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O rei Herodes Agripa I mandou decapitar à espada o apóstolo:"], ["created_at", 2016-08-19 02:47:34 UTC], ["updated_at", 2016-08-19 02:47:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 662], ["correct", true], ["created_at", 2016-08-19 02:47:34 UTC], ["updated_at", 2016-08-19 02:47:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 662], ["correct", false], ["created_at", 2016-08-19 02:47:34 UTC], ["updated_at", 2016-08-19 02:47:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 662], ["correct", false], ["created_at", 2016-08-19 02:47:34 UTC], ["updated_at", 2016-08-19 02:47:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas"], ["question_id", 662], ["correct", false], ["created_at", 2016-08-19 02:47:34 UTC], ["updated_at", 2016-08-19 02:47:34 UTC]]  (127.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O rei Nabucodonosor mandou chamar magos e adivinhos para decifrar?"], ["created_at", 2016-08-19 02:47:34 UTC], ["updated_at", 2016-08-19 02:47:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sonhos"], ["question_id", 663], ["correct", true], ["created_at", 2016-08-19 02:47:34 UTC], ["updated_at", 2016-08-19 02:47:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cartas Enigmáticas"], ["question_id", 663], ["correct", false], ["created_at", 2016-08-19 02:47:34 UTC], ["updated_at", 2016-08-19 02:47:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Manuscritos Na Parede"], ["question_id", 663], ["correct", false], ["created_at", 2016-08-19 02:47:34 UTC], ["updated_at", 2016-08-19 02:47:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pergaminhos"], ["question_id", 663], ["correct", false], ["created_at", 2016-08-19 02:47:34 UTC], ["updated_at", 2016-08-19 02:47:34 UTC]]  (116.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O rei Nabucodonosor viu uma grande estátua quando:"], ["created_at", 2016-08-19 02:47:34 UTC], ["updated_at", 2016-08-19 02:47:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Estava Sonhando"], ["question_id", 664], ["correct", true], ["created_at", 2016-08-19 02:47:34 UTC], ["updated_at", 2016-08-19 02:47:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Estava Viajando Em Outra Nação"], ["question_id", 664], ["correct", false], ["created_at", 2016-08-19 02:47:34 UTC], ["updated_at", 2016-08-19 02:47:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Apriosonado Pelos Assírios"], ["question_id", 664], ["correct", false], ["created_at", 2016-08-19 02:47:34 UTC], ["updated_at", 2016-08-19 02:47:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Comido Por Um Grande Peixe"], ["question_id", 664], ["correct", false], ["created_at", 2016-08-19 02:47:34 UTC], ["updated_at", 2016-08-19 02:47:34 UTC]]  (109.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O rei persa Dario jogou Daniel em uma cova infestada de:"], ["created_at", 2016-08-19 02:47:34 UTC], ["updated_at", 2016-08-19 02:47:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Leões"], ["question_id", 665], ["correct", true], ["created_at", 2016-08-19 02:47:34 UTC], ["updated_at", 2016-08-19 02:47:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ursos"], ["question_id", 665], ["correct", false], ["created_at", 2016-08-19 02:47:34 UTC], ["updated_at", 2016-08-19 02:47:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cobras"], ["question_id", 665], ["correct", false], ["created_at", 2016-08-19 02:47:34 UTC], ["updated_at", 2016-08-19 02:47:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aranhas"], ["question_id", 665], ["correct", false], ["created_at", 2016-08-19 02:47:34 UTC], ["updated_at", 2016-08-19 02:47:34 UTC]]  (125.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O sacerdote Zadoque ungiu qual rei?"], ["created_at", 2016-08-19 02:47:34 UTC], ["updated_at", 2016-08-19 02:47:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 666], ["correct", true], ["created_at", 2016-08-19 02:47:34 UTC], ["updated_at", 2016-08-19 02:47:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 666], ["correct", false], ["created_at", 2016-08-19 02:47:34 UTC], ["updated_at", 2016-08-19 02:47:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 666], ["correct", false], ["created_at", 2016-08-19 02:47:34 UTC], ["updated_at", 2016-08-19 02:47:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 666], ["correct", false], ["created_at", 2016-08-19 02:47:34 UTC], ["updated_at", 2016-08-19 02:47:34 UTC]]  (148.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O Templo de Jerusalém encheu-se de uma nuvem após ter sido colocada:"], ["created_at", 2016-08-19 02:47:34 UTC], ["updated_at", 2016-08-19 02:47:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Arca da Aliança"], ["question_id", 667], ["correct", true], ["created_at", 2016-08-19 02:47:34 UTC], ["updated_at", 2016-08-19 02:47:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Castiçal de Ouro"], ["question_id", 667], ["correct", false], ["created_at", 2016-08-19 02:47:34 UTC], ["updated_at", 2016-08-19 02:47:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Porta Anti-fogo"], ["question_id", 667], ["correct", false], ["created_at", 2016-08-19 02:47:34 UTC], ["updated_at", 2016-08-19 02:47:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Cortina Púrpura"], ["question_id", 667], ["correct", false], ["created_at", 2016-08-19 02:47:34 UTC], ["updated_at", 2016-08-19 02:47:34 UTC]]  (278.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde Abraão nasceu?"], ["created_at", 2016-08-19 02:47:35 UTC], ["updated_at", 2016-08-19 02:47:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ur"], ["question_id", 668], ["correct", true], ["created_at", 2016-08-19 02:47:35 UTC], ["updated_at", 2016-08-19 02:47:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tâmis"], ["question_id", 668], ["correct", false], ["created_at", 2016-08-19 02:47:35 UTC], ["updated_at", 2016-08-19 02:47:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônia"], ["question_id", 668], ["correct", false], ["created_at", 2016-08-19 02:47:35 UTC], ["updated_at", 2016-08-19 02:47:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Canaã"], ["question_id", 668], ["correct", false], ["created_at", 2016-08-19 02:47:35 UTC], ["updated_at", 2016-08-19 02:47:35 UTC]]  (158.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde aconteceu o primeiro milagre de Jesus?"], ["created_at", 2016-08-19 02:47:35 UTC], ["updated_at", 2016-08-19 02:47:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caná"], ["question_id", 669], ["correct", true], ["created_at", 2016-08-19 02:47:35 UTC], ["updated_at", 2016-08-19 02:47:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nazaré"], ["question_id", 669], ["correct", false], ["created_at", 2016-08-19 02:47:35 UTC], ["updated_at", 2016-08-19 02:47:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 669], ["correct", false], ["created_at", 2016-08-19 02:47:35 UTC], ["updated_at", 2016-08-19 02:47:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mar da Galiléia"], ["question_id", 669], ["correct", false], ["created_at", 2016-08-19 02:47:35 UTC], ["updated_at", 2016-08-19 02:47:35 UTC]]  (201.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde estava a força de Sansão:"], ["created_at", 2016-08-19 02:47:35 UTC], ["updated_at", 2016-08-19 02:47:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Seus Cabelos"], ["question_id", 670], ["correct", true], ["created_at", 2016-08-19 02:47:35 UTC], ["updated_at", 2016-08-19 02:47:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Seus Olhos"], ["question_id", 670], ["correct", false], ["created_at", 2016-08-19 02:47:35 UTC], ["updated_at", 2016-08-19 02:47:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Suas Mãos"], ["question_id", 670], ["correct", false], ["created_at", 2016-08-19 02:47:35 UTC], ["updated_at", 2016-08-19 02:47:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Seus Braços"], ["question_id", 670], ["correct", false], ["created_at", 2016-08-19 02:47:35 UTC], ["updated_at", 2016-08-19 02:47:35 UTC]]  (143.3ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde Êutico estava sentado e caiu após ter adormecido enquanto ouvia a mensagem de Paulo?"], ["created_at", 2016-08-19 02:47:35 UTC], ["updated_at", 2016-08-19 02:47:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Janela"], ["question_id", 671], ["correct", true], ["created_at", 2016-08-19 02:47:35 UTC], ["updated_at", 2016-08-19 02:47:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Alpendre"], ["question_id", 671], ["correct", false], ["created_at", 2016-08-19 02:47:35 UTC], ["updated_at", 2016-08-19 02:47:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escada"], ["question_id", 671], ["correct", false], ["created_at", 2016-08-19 02:47:35 UTC], ["updated_at", 2016-08-19 02:47:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cama"], ["question_id", 671], ["correct", false], ["created_at", 2016-08-19 02:47:35 UTC], ["updated_at", 2016-08-19 02:47:35 UTC]]  (145.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde Felipe encontrou o eunuco etíope ao qual batizou?"], ["created_at", 2016-08-19 02:47:35 UTC], ["updated_at", 2016-08-19 02:47:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Caminho Para Gaza"], ["question_id", 672], ["correct", true], ["created_at", 2016-08-19 02:47:35 UTC], ["updated_at", 2016-08-19 02:47:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Estrada de Damasco"], ["question_id", 672], ["correct", false], ["created_at", 2016-08-19 02:47:35 UTC], ["updated_at", 2016-08-19 02:47:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Caminho Para Jerusalém"], ["question_id", 672], ["correct", false], ["created_at", 2016-08-19 02:47:35 UTC], ["updated_at", 2016-08-19 02:47:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Estrada de Samaria"], ["question_id", 672], ["correct", false], ["created_at", 2016-08-19 02:47:35 UTC], ["updated_at", 2016-08-19 02:47:35 UTC]]  (191.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde foi celebrada pela 1ª vez a Páscoa?"], ["created_at", 2016-08-19 02:47:35 UTC], ["updated_at", 2016-08-19 02:47:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deserto do Sinai"], ["question_id", 673], ["correct", true], ["created_at", 2016-08-19 02:47:35 UTC], ["updated_at", 2016-08-19 02:47:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mar Vermelho"], ["question_id", 673], ["correct", false], ["created_at", 2016-08-19 02:47:35 UTC], ["updated_at", 2016-08-19 02:47:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mar da Galiléia"], ["question_id", 673], ["correct", false], ["created_at", 2016-08-19 02:47:35 UTC], ["updated_at", 2016-08-19 02:47:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jardim do Éden"], ["question_id", 673], ["correct", false], ["created_at", 2016-08-19 02:47:35 UTC], ["updated_at", 2016-08-19 02:47:35 UTC]]  (117.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde Jesus foi preso?"], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Getsêmani"], ["question_id", 674], ["correct", true], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gólgota"], ["question_id", 674], ["correct", false], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Monte das Oliveiras"], ["question_id", 674], ["correct", false], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Templo"], ["question_id", 674], ["correct", false], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]]  (126.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde Jesus foi rejeitado pela 1ª fez, quando iniciou suas orações?"], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nazaré"], ["question_id", 675], ["correct", true], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cafarmaum"], ["question_id", 675], ["correct", false], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Betânia"], ["question_id", 675], ["correct", false], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 675], ["correct", false], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]]  (144.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde Jesus pediu aos seus discípulos que tomassem um jumento emprestado para entrar em Jerusalém?"], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Betfagé"], ["question_id", 676], ["correct", true], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 676], ["correct", false], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 676], ["correct", false], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cafarnaum"], ["question_id", 676], ["correct", false], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]]  (124.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde Jesus se encontrava quando foi preso pelos soldados romanos, a mando dos líderes religiosos?"], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Jardim do Getsêmani"], ["question_id", 677], ["correct", true], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Templo de Jerusalém"], ["question_id", 677], ["correct", false], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Palácio de Pôncio Pilatos"], ["question_id", 677], ["correct", false], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Casa de Um dos Discípulos"], ["question_id", 677], ["correct", false], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]]  (133.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde Jesus se encontrava quando Satanás o tentou a saltar, informando que os anjos de Deus o segurariam?"], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Pináculo do Templo"], ["question_id", 678], ["correct", true], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Monte Sinai"], ["question_id", 678], ["correct", false], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Torre de Babel"], ["question_id", 678], ["correct", false], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Monte Ararat"], ["question_id", 678], ["correct", false], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]]  (149.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde Jonas passou 3 dias e 3 noites?"], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dentro de Um Grande Peixe"], ["question_id", 679], ["correct", true], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Uma Caverna"], ["question_id", 679], ["correct", false], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Porão de Um Navio"], ["question_id", 679], ["correct", false], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deitado Embaixo de Uma Árvore"], ["question_id", 679], ["correct", false], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]]  (157.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde Moisés recebeu as tábuas dos 10 Mandamentos?"], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Monte Sinai"], ["question_id", 680], ["correct", true], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Monte Carmelo"], ["question_id", 680], ["correct", false], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Monte Ararat"], ["question_id", 680], ["correct", false], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]]  (2130.6ms) SELECT COUNT(*) FROM "quizzes_answers" SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Monte Nebo"], ["question_id", 680], ["correct", false], ["created_at", 2016-08-19 02:47:36 UTC], ["updated_at", 2016-08-19 02:47:36 UTC]]  (191.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde o anjo Gabriel comunicou a Zacarias de que ele teria um filho?"], ["created_at", 2016-08-19 02:47:37 UTC], ["updated_at", 2016-08-19 02:47:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Templo de Deus"], ["question_id", 681], ["correct", true], ["created_at", 2016-08-19 02:47:37 UTC], ["updated_at", 2016-08-19 02:47:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Sua Própria Casa"], ["question_id", 681], ["correct", false], ["created_at", 2016-08-19 02:47:37 UTC], ["updated_at", 2016-08-19 02:47:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Caminho Para Emaús"], ["question_id", 681], ["correct", false], ["created_at", 2016-08-19 02:47:37 UTC], ["updated_at", 2016-08-19 02:47:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Estrada Para Damasco"], ["question_id", 681], ["correct", false], ["created_at", 2016-08-19 02:47:37 UTC], ["updated_at", 2016-08-19 02:47:37 UTC]]  (149.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde o profeta Jeremias foi atirado para morrer?"], ["created_at", 2016-08-19 02:47:37 UTC], ["updated_at", 2016-08-19 02:47:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Uma Cisterna Com Lama"], ["question_id", 682], ["correct", true], ["created_at", 2016-08-19 02:47:37 UTC], ["updated_at", 2016-08-19 02:47:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Um Precipício"], ["question_id", 682], ["correct", false], ["created_at", 2016-08-19 02:47:37 UTC], ["updated_at", 2016-08-19 02:47:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Uma Lagoa"], ["question_id", 682], ["correct", false], ["created_at", 2016-08-19 02:47:37 UTC], ["updated_at", 2016-08-19 02:47:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Mar Morto"], ["question_id", 682], ["correct", false], ["created_at", 2016-08-19 02:47:37 UTC], ["updated_at", 2016-08-19 02:47:37 UTC]]  (157.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde o rei de Babilônia mandou jogar os amigos de Daniel?"], ["created_at", 2016-08-19 02:47:37 UTC], ["updated_at", 2016-08-19 02:47:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Uma Fornalha Ardente"], ["question_id", 683], ["correct", true], ["created_at", 2016-08-19 02:47:37 UTC], ["updated_at", 2016-08-19 02:47:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Cova dos Leões"], ["question_id", 683], ["correct", false], ["created_at", 2016-08-19 02:47:37 UTC], ["updated_at", 2016-08-19 02:47:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Uma Cisterna"], ["question_id", 683], ["correct", false], ["created_at", 2016-08-19 02:47:37 UTC], ["updated_at", 2016-08-19 02:47:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Um Precipício"], ["question_id", 683], ["correct", false], ["created_at", 2016-08-19 02:47:37 UTC], ["updated_at", 2016-08-19 02:47:37 UTC]]  (166.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde os discípulos foram chamados de cristãos pela primeira vez?"], ["created_at", 2016-08-19 02:47:37 UTC], ["updated_at", 2016-08-19 02:47:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Antioquia"], ["question_id", 684], ["correct", true], ["created_at", 2016-08-19 02:47:37 UTC], ["updated_at", 2016-08-19 02:47:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 684], ["correct", false], ["created_at", 2016-08-19 02:47:37 UTC], ["updated_at", 2016-08-19 02:47:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judéia"], ["question_id", 684], ["correct", false], ["created_at", 2016-08-19 02:47:37 UTC], ["updated_at", 2016-08-19 02:47:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 684], ["correct", false], ["created_at", 2016-08-19 02:47:37 UTC], ["updated_at", 2016-08-19 02:47:37 UTC]]  (141.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde os Reis Magos estavam procurando o bebê que nasceu \"Rei dos Judeus\"?"], ["created_at", 2016-08-19 02:47:37 UTC], ["updated_at", 2016-08-19 02:47:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 685], ["correct", true], ["created_at", 2016-08-19 02:47:37 UTC], ["updated_at", 2016-08-19 02:47:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belém"], ["question_id", 685], ["correct", false], ["created_at", 2016-08-19 02:47:37 UTC], ["updated_at", 2016-08-19 02:47:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nazaré"], ["question_id", 685], ["correct", false], ["created_at", 2016-08-19 02:47:37 UTC], ["updated_at", 2016-08-19 02:47:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Masada"], ["question_id", 685], ["correct", false], ["created_at", 2016-08-19 02:47:37 UTC], ["updated_at", 2016-08-19 02:47:37 UTC]]  (140.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde Paulo foi proclamado publicamente Rei?"], ["created_at", 2016-08-19 02:47:37 UTC], ["updated_at", 2016-08-19 02:47:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gilgal"], ["question_id", 686], ["correct", true], ["created_at", 2016-08-19 02:47:37 UTC], ["updated_at", 2016-08-19 02:47:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Efraim"], ["question_id", 686], ["correct", false], ["created_at", 2016-08-19 02:47:37 UTC], ["updated_at", 2016-08-19 02:47:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Qumram"], ["question_id", 686], ["correct", false], ["created_at", 2016-08-19 02:47:37 UTC], ["updated_at", 2016-08-19 02:47:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "En-gedi"], ["question_id", 686], ["correct", false], ["created_at", 2016-08-19 02:47:37 UTC], ["updated_at", 2016-08-19 02:47:37 UTC]]  (124.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde Pedro estava quando ele cortou a orelha de um homem?"], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Jardim do Getsêmani"], ["question_id", 687], ["correct", true], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Monte Carmelo"], ["question_id", 687], ["correct", false], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Monte Gólgota"], ["question_id", 687], ["correct", false], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Templo"], ["question_id", 687], ["correct", false], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]]  (142.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde Sansão construiu o Templo de Deus?"], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Jerusalém"], ["question_id", 688], ["correct", true], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Deserto"], ["question_id", 688], ["correct", false], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Galiléia"], ["question_id", 688], ["correct", false], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Judá"], ["question_id", 688], ["correct", false], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]]  (124.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Os 10 Mandamentos dados por Deus a Moisés foram escritos em:"], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 Tábuas de Pedra"], ["question_id", 689], ["correct", true], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 Tábuas de Madeira"], ["question_id", 689], ["correct", false], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 Rolos de Pergaminho"], ["question_id", 689], ["correct", false], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Tábua de Pedra e 1 Tábua de Madeira"], ["question_id", 689], ["correct", false], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]]  (125.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Os anciãos da igreja primitiva deviam ungir os enfermos com:"], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Óleo"], ["question_id", 690], ["correct", true], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vinho"], ["question_id", 690], ["correct", false], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Água Benta"], ["question_id", 690], ["correct", false], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Azeite"], ["question_id", 690], ["correct", false], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]]  (127.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Os guardas que estavam guardando o sepulcro de Jesus receberam uma grande quantia de dinheiro para dizer:"], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Os Discípulos Haviam Roubado O Corpo"], ["question_id", 691], ["correct", true], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que A Família de Jesus Havia Levado O Corpo"], ["question_id", 691], ["correct", false], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Jesus Havia Ressuscitado dos Mortos"], ["question_id", 691], ["correct", false], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Os Líderes Judeus Haviam Roubado O Corpo"], ["question_id", 691], ["correct", false], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]]  (109.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Os israelitas, em sua peregrinação pelo deserto, foi provido por Deus com:"], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maná"], ["question_id", 692], ["correct", true], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Figos e Tâmaras"], ["question_id", 692], ["correct", false], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pão"], ["question_id", 692], ["correct", false], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uvas"], ["question_id", 692], ["correct", false], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]]  (192.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Os livros de Mateus, Marcos, Lucas e João também são conhecidos como:"], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Evangelhos"], ["question_id", 693], ["correct", true], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apostólicos"], ["question_id", 693], ["correct", false], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Narrativa da Vida de Jesus"], ["question_id", 693], ["correct", false], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Biografia de Jesus"], ["question_id", 693], ["correct", false], ["created_at", 2016-08-19 02:47:38 UTC], ["updated_at", 2016-08-19 02:47:38 UTC]]  (349.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Os muros de qual cidade caíram quando os israelitas gritaram?"], ["created_at", 2016-08-19 02:47:39 UTC], ["updated_at", 2016-08-19 02:47:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jericó"], ["question_id", 694], ["correct", true], ["created_at", 2016-08-19 02:47:39 UTC], ["updated_at", 2016-08-19 02:47:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 694], ["correct", false], ["created_at", 2016-08-19 02:47:39 UTC], ["updated_at", 2016-08-19 02:47:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jizreel"], ["question_id", 694], ["correct", false], ["created_at", 2016-08-19 02:47:39 UTC], ["updated_at", 2016-08-19 02:47:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 694], ["correct", false], ["created_at", 2016-08-19 02:47:39 UTC], ["updated_at", 2016-08-19 02:47:39 UTC]]  (124.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Os piolhos que Deus havia enviado aos egípcios eram feitos:"], ["created_at", 2016-08-19 02:47:39 UTC], ["updated_at", 2016-08-19 02:47:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Pó da Terra"], ["question_id", 695], ["correct", true], ["created_at", 2016-08-19 02:47:39 UTC], ["updated_at", 2016-08-19 02:47:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Da Saliva dos Animais"], ["question_id", 695], ["correct", false], ["created_at", 2016-08-19 02:47:39 UTC], ["updated_at", 2016-08-19 02:47:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Das Águas do Rio Nilo"], ["question_id", 695], ["correct", false], ["created_at", 2016-08-19 02:47:39 UTC], ["updated_at", 2016-08-19 02:47:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Das Areias do Deserto"], ["question_id", 695], ["correct", false], ["created_at", 2016-08-19 02:47:39 UTC], ["updated_at", 2016-08-19 02:47:39 UTC]]  (149.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Os Presidentes invejosos enganaram ao rei Dario, fazendo-o assinar um decreto que duraria:"], ["created_at", 2016-08-19 02:47:39 UTC], ["updated_at", 2016-08-19 02:47:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "30 Dias"], ["question_id", 696], ["correct", true], ["created_at", 2016-08-19 02:47:39 UTC], ["updated_at", 2016-08-19 02:47:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Semana"], ["question_id", 696], ["correct", false], ["created_at", 2016-08-19 02:47:39 UTC], ["updated_at", 2016-08-19 02:47:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Meses"], ["question_id", 696], ["correct", false], ["created_at", 2016-08-19 02:47:39 UTC], ["updated_at", 2016-08-19 02:47:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Ano"], ["question_id", 696], ["correct", false], ["created_at", 2016-08-19 02:47:39 UTC], ["updated_at", 2016-08-19 02:47:39 UTC]]  (175.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Os primeiros filhos de Jó foram mortos através de um:"], ["created_at", 2016-08-19 02:47:39 UTC], ["updated_at", 2016-08-19 02:47:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tufão"], ["question_id", 697], ["correct", true], ["created_at", 2016-08-19 02:47:39 UTC], ["updated_at", 2016-08-19 02:47:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Terremoto"], ["question_id", 697], ["correct", false], ["created_at", 2016-08-19 02:47:39 UTC], ["updated_at", 2016-08-19 02:47:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Atropelamento"], ["question_id", 697], ["correct", false], ["created_at", 2016-08-19 02:47:39 UTC], ["updated_at", 2016-08-19 02:47:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Incêndio"], ["question_id", 697], ["correct", false], ["created_at", 2016-08-19 02:47:39 UTC], ["updated_at", 2016-08-19 02:47:39 UTC]]  (157.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Os raptores de Jesus vendaram-no e disseram para Ele fazer o quê?"], ["created_at", 2016-08-19 02:47:39 UTC], ["updated_at", 2016-08-19 02:47:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Profetizar Quem Iria Bater Nele"], ["question_id", 698], ["correct", true], ["created_at", 2016-08-19 02:47:39 UTC], ["updated_at", 2016-08-19 02:47:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Curvar-se Diante Deles"], ["question_id", 698], ["correct", false], ["created_at", 2016-08-19 02:47:39 UTC], ["updated_at", 2016-08-19 02:47:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Preparar-se Para Morrer"], ["question_id", 698], ["correct", false], ["created_at", 2016-08-19 02:47:39 UTC], ["updated_at", 2016-08-19 02:47:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abaixa A Cabeça Para Receber Sua Coroa"], ["question_id", 698], ["correct", false], ["created_at", 2016-08-19 02:47:39 UTC], ["updated_at", 2016-08-19 02:47:39 UTC]]  (299.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para a construção do Templo de Deus em Jerusalém, o que Salomão contratou de Hirão, rei de Tiro?"], ["created_at", 2016-08-19 02:47:40 UTC], ["updated_at", 2016-08-19 02:47:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cedros"], ["question_id", 699], ["correct", true], ["created_at", 2016-08-19 02:47:40 UTC], ["updated_at", 2016-08-19 02:47:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Romãs"], ["question_id", 699], ["correct", false], ["created_at", 2016-08-19 02:47:40 UTC], ["updated_at", 2016-08-19 02:47:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Palmeiras"], ["question_id", 699], ["correct", false], ["created_at", 2016-08-19 02:47:40 UTC], ["updated_at", 2016-08-19 02:47:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Prataria"], ["question_id", 699], ["correct", false], ["created_at", 2016-08-19 02:47:40 UTC], ["updated_at", 2016-08-19 02:47:40 UTC]]  (115.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para a construção do Templo de Jerusalém, qual rei forneceu a Salomão árvores de cedro?"], ["created_at", 2016-08-19 02:47:40 UTC], ["updated_at", 2016-08-19 02:47:40 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hirão"], ["question_id", 700], ["correct", true], ["created_at", 2016-08-19 02:47:40 UTC], ["updated_at", 2016-08-19 02:47:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiglete-pileser"], ["question_id", 700], ["correct", false], ["created_at", 2016-08-19 02:47:40 UTC], ["updated_at", 2016-08-19 02:47:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 700], ["correct", false], ["created_at", 2016-08-19 02:47:40 UTC], ["updated_at", 2016-08-19 02:47:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Faraó"], ["question_id", 700], ["correct", false], ["created_at", 2016-08-19 02:47:40 UTC], ["updated_at", 2016-08-19 02:47:40 UTC]]  (132.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para ajudar uma viúva pobre, Eliseu pediu à ela tomasse emprestadas várias vasilhas, que foram enchidas com:"], ["created_at", 2016-08-19 02:47:40 UTC], ["updated_at", 2016-08-19 02:47:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Azeite"], ["question_id", 701], ["correct", true], ["created_at", 2016-08-19 02:47:40 UTC], ["updated_at", 2016-08-19 02:47:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Perfume"], ["question_id", 701], ["correct", false], ["created_at", 2016-08-19 02:47:40 UTC], ["updated_at", 2016-08-19 02:47:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Farinha"], ["question_id", 701], ["correct", false], ["created_at", 2016-08-19 02:47:40 UTC], ["updated_at", 2016-08-19 02:47:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mel"], ["question_id", 701], ["correct", false], ["created_at", 2016-08-19 02:47:40 UTC], ["updated_at", 2016-08-19 02:47:40 UTC]]  (124.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para capturar Elias, o rei Acazias enviou:"], ["created_at", 2016-08-19 02:47:40 UTC], ["updated_at", 2016-08-19 02:47:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Capitão e 50 Homens"], ["question_id", 702], ["correct", true], ["created_at", 2016-08-19 02:47:40 UTC], ["updated_at", 2016-08-19 02:47:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Pelotão de 500 Homens"], ["question_id", 702], ["correct", false], ["created_at", 2016-08-19 02:47:40 UTC], ["updated_at", 2016-08-19 02:47:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Exército de 5.000 Homens"], ["question_id", 702], ["correct", false], ["created_at", 2016-08-19 02:47:40 UTC], ["updated_at", 2016-08-19 02:47:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 General, 5 Capitães e 250 Homens"], ["question_id", 702], ["correct", false], ["created_at", 2016-08-19 02:47:40 UTC], ["updated_at", 2016-08-19 02:47:40 UTC]]  (124.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para causar os tumores na 6ª praga a ser enviada contra os egípcios, Moisés e Arão foram instruídos por Deus a usar:"], ["created_at", 2016-08-19 02:47:40 UTC], ["updated_at", 2016-08-19 02:47:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cinzas do Forno"], ["question_id", 703], ["correct", true], ["created_at", 2016-08-19 02:47:40 UTC], ["updated_at", 2016-08-19 02:47:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pólen"], ["question_id", 703], ["correct", false], ["created_at", 2016-08-19 02:47:40 UTC], ["updated_at", 2016-08-19 02:47:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pó da Terra"], ["question_id", 703], ["correct", false], ["created_at", 2016-08-19 02:47:40 UTC], ["updated_at", 2016-08-19 02:47:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lama"], ["question_id", 703], ["correct", false], ["created_at", 2016-08-19 02:47:40 UTC], ["updated_at", 2016-08-19 02:47:40 UTC]]  (124.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para não ir à Nínive dar a advertência final, Jonas se escondeu em um:"], ["created_at", 2016-08-19 02:47:40 UTC], ["updated_at", 2016-08-19 02:47:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Navio"], ["question_id", 704], ["correct", true], ["created_at", 2016-08-19 02:47:40 UTC], ["updated_at", 2016-08-19 02:47:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tonel de Vinho"], ["question_id", 704], ["correct", false], ["created_at", 2016-08-19 02:47:40 UTC], ["updated_at", 2016-08-19 02:47:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Odre de Água"], ["question_id", 704], ["correct", false], ["created_at", 2016-08-19 02:47:40 UTC], ["updated_at", 2016-08-19 02:47:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carro de Boi"], ["question_id", 704], ["correct", false], ["created_at", 2016-08-19 02:47:40 UTC], ["updated_at", 2016-08-19 02:47:40 UTC]]  (116.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para obrigar o povo a prestar obediência à sua autoridade, o rei Nabucodonosor construiu:"], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Estátua de Ouro de Si Próprio"], ["question_id", 705], ["correct", true], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Serpente de Ouro"], ["question_id", 705], ["correct", false], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Bezerro de Ouro"], ["question_id", 705], ["correct", false], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Vaca de Ouro"], ["question_id", 705], ["correct", false], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]]  (141.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para onde Abraão enviou Eliezer em busca de uma esposa para Isaque?"], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mesopotâmia"], ["question_id", 706], ["correct", true], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assíria"], ["question_id", 706], ["correct", false], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egito"], ["question_id", 706], ["correct", false], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arábia"], ["question_id", 706], ["correct", false], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]]  (158.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para onde Jonas foi após ter sido vomitado pelo grande peixe?"], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nínive"], ["question_id", 707], ["correct", true], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 707], ["correct", false], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 707], ["correct", false], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Galiléia"], ["question_id", 707], ["correct", false], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]]  (149.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para onde o profeta Isaías predisse que os tesouros do Templo seriam levados?"], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para A Babilônia"], ["question_id", 708], ["correct", true], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para A Medo-persa"], ["question_id", 708], ["correct", false], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para A Grécia"], ["question_id", 708], ["correct", false], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para A Síria"], ["question_id", 708], ["correct", false], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]]  (185.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para onde os porcos que receberam a legião de demônios expulsos por Jesus se atiraram?"], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Mar da Galiléia"], ["question_id", 709], ["correct", true], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Mar Morto"], ["question_id", 709], ["correct", false], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Precipício do Monte Gólgota"], ["question_id", 709], ["correct", false], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Poço de Jacó"], ["question_id", 709], ["correct", false], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]]  (124.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para onde Sansão foi levado após ter sido cegado pelos filisteus?"], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gaza"], ["question_id", 710], ["correct", true], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hebrom"], ["question_id", 710], ["correct", false], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Masada"], ["question_id", 710], ["correct", false], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filipéia"], ["question_id", 710], ["correct", false], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]]  (133.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para poder enxergar melhor a jesus no meio da multidão, Zaqueu subiu em uma:"], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Árvore"], ["question_id", 711], ["correct", true], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escada"], ["question_id", 711], ["correct", false], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Janela"], ["question_id", 711], ["correct", false], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porta"], ["question_id", 711], ["correct", false], ["created_at", 2016-08-19 02:47:41 UTC], ["updated_at", 2016-08-19 02:47:41 UTC]]  (133.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para proteger Moisés, onde sua mãe o escondeu?"], ["created_at", 2016-08-19 02:47:42 UTC], ["updated_at", 2016-08-19 02:47:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Uma Cesta"], ["question_id", 712], ["correct", true], ["created_at", 2016-08-19 02:47:42 UTC], ["updated_at", 2016-08-19 02:47:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Uma Caverna"], ["question_id", 712], ["correct", false], ["created_at", 2016-08-19 02:47:42 UTC], ["updated_at", 2016-08-19 02:47:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Um Baú"], ["question_id", 712], ["correct", false], ["created_at", 2016-08-19 02:47:42 UTC], ["updated_at", 2016-08-19 02:47:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Um Armário"], ["question_id", 712], ["correct", false], ["created_at", 2016-08-19 02:47:42 UTC], ["updated_at", 2016-08-19 02:47:42 UTC]]  (134.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para provocar a profanação do altar eregido ao deus Moleque, o que Josias queimou neste altar?"], ["created_at", 2016-08-19 02:47:42 UTC], ["updated_at", 2016-08-19 02:47:42 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ossos Humanos"], ["question_id", 713], ["correct", true], ["created_at", 2016-08-19 02:47:42 UTC], ["updated_at", 2016-08-19 02:47:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vinha"], ["question_id", 713], ["correct", false], ["created_at", 2016-08-19 02:47:42 UTC], ["updated_at", 2016-08-19 02:47:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arvoredo"], ["question_id", 713], ["correct", false], ["created_at", 2016-08-19 02:47:42 UTC], ["updated_at", 2016-08-19 02:47:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carne Imunda"], ["question_id", 713], ["correct", false], ["created_at", 2016-08-19 02:47:42 UTC], ["updated_at", 2016-08-19 02:47:42 UTC]]  (132.7ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para qual cidade Josué enviou espias?"], ["created_at", 2016-08-19 02:47:42 UTC], ["updated_at", 2016-08-19 02:47:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jericó"], ["question_id", 714], ["correct", true], ["created_at", 2016-08-19 02:47:42 UTC], ["updated_at", 2016-08-19 02:47:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hebrom"], ["question_id", 714], ["correct", false], ["created_at", 2016-08-19 02:47:42 UTC], ["updated_at", 2016-08-19 02:47:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 714], ["correct", false], ["created_at", 2016-08-19 02:47:42 UTC], ["updated_at", 2016-08-19 02:47:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sodoma"], ["question_id", 714], ["correct", false], ["created_at", 2016-08-19 02:47:42 UTC], ["updated_at", 2016-08-19 02:47:42 UTC]]  (142.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para qual cidade os reis Magos foram conduzidos por uma estrela?"], ["created_at", 2016-08-19 02:47:42 UTC], ["updated_at", 2016-08-19 02:47:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belém"], ["question_id", 715], ["correct", true], ["created_at", 2016-08-19 02:47:42 UTC], ["updated_at", 2016-08-19 02:47:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nazaré"], ["question_id", 715], ["correct", false], ["created_at", 2016-08-19 02:47:42 UTC], ["updated_at", 2016-08-19 02:47:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 715], ["correct", false], ["created_at", 2016-08-19 02:47:42 UTC], ["updated_at", 2016-08-19 02:47:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 715], ["correct", false], ["created_at", 2016-08-19 02:47:42 UTC], ["updated_at", 2016-08-19 02:47:42 UTC]]  (149.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para qual país Daniel foi levado como cativo?"], ["created_at", 2016-08-19 02:47:42 UTC], ["updated_at", 2016-08-19 02:47:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônia"], ["question_id", 716], ["correct", true], ["created_at", 2016-08-19 02:47:42 UTC], ["updated_at", 2016-08-19 02:47:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egito"], ["question_id", 716], ["correct", false], ["created_at", 2016-08-19 02:47:42 UTC], ["updated_at", 2016-08-19 02:47:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assíria"], ["question_id", 716], ["correct", false], ["created_at", 2016-08-19 02:47:42 UTC], ["updated_at", 2016-08-19 02:47:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenícia"], ["question_id", 716], ["correct", false], ["created_at", 2016-08-19 02:47:42 UTC], ["updated_at", 2016-08-19 02:47:42 UTC]]  (132.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para qual país foi Abraão durante a fome?"], ["created_at", 2016-08-19 02:47:42 UTC], ["updated_at", 2016-08-19 02:47:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egito"], ["question_id", 717], ["correct", true], ["created_at", 2016-08-19 02:47:42 UTC], ["updated_at", 2016-08-19 02:47:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assíria"], ["question_id", 717], ["correct", false], ["created_at", 2016-08-19 02:47:42 UTC], ["updated_at", 2016-08-19 02:47:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arábia"], ["question_id", 717], ["correct", false], ["created_at", 2016-08-19 02:47:42 UTC], ["updated_at", 2016-08-19 02:47:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenícia"], ["question_id", 717], ["correct", false], ["created_at", 2016-08-19 02:47:42 UTC], ["updated_at", 2016-08-19 02:47:42 UTC]]  (158.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para que região Moisés fugiu após ter matado o egípcio?"], ["created_at", 2016-08-19 02:47:43 UTC], ["updated_at", 2016-08-19 02:47:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Midiã"], ["question_id", 718], ["correct", true], ["created_at", 2016-08-19 02:47:43 UTC], ["updated_at", 2016-08-19 02:47:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Edom"], ["question_id", 718], ["correct", false], ["created_at", 2016-08-19 02:47:43 UTC], ["updated_at", 2016-08-19 02:47:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moabe"], ["question_id", 718], ["correct", false], ["created_at", 2016-08-19 02:47:43 UTC], ["updated_at", 2016-08-19 02:47:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Canaã"], ["question_id", 718], ["correct", false], ["created_at", 2016-08-19 02:47:43 UTC], ["updated_at", 2016-08-19 02:47:43 UTC]]  (166.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para se apresentar a Isaque, seu futuro marido, Rebeca foi até:"], ["created_at", 2016-08-19 02:47:43 UTC], ["updated_at", 2016-08-19 02:47:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Canaã"], ["question_id", 719], ["correct", true], ["created_at", 2016-08-19 02:47:43 UTC], ["updated_at", 2016-08-19 02:47:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 719], ["correct", false], ["created_at", 2016-08-19 02:47:43 UTC], ["updated_at", 2016-08-19 02:47:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mesopotâmia"], ["question_id", 719], ["correct", false], ["created_at", 2016-08-19 02:47:43 UTC], ["updated_at", 2016-08-19 02:47:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Terra Prometida"], ["question_id", 719], ["correct", false], ["created_at", 2016-08-19 02:47:43 UTC], ["updated_at", 2016-08-19 02:47:43 UTC]]  (124.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para ter certeza de que o gigante Golias estava morto, o que Davi fez após ter jogado a pedra?"], ["created_at", 2016-08-19 02:47:43 UTC], ["updated_at", 2016-08-19 02:47:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cortou A Cabeça Com Uma Espada"], ["question_id", 720], ["correct", true], ["created_at", 2016-08-19 02:47:43 UTC], ["updated_at", 2016-08-19 02:47:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jogou As Outras 4 Pedras Sobre Golias"], ["question_id", 720], ["correct", false], ["created_at", 2016-08-19 02:47:43 UTC], ["updated_at", 2016-08-19 02:47:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Chamou Os Outros Soldados Para Acabar de Matá-lo"], ["question_id", 720], ["correct", false], ["created_at", 2016-08-19 02:47:43 UTC], ["updated_at", 2016-08-19 02:47:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arrancou O Coração do Golias"], ["question_id", 720], ["correct", false], ["created_at", 2016-08-19 02:47:43 UTC], ["updated_at", 2016-08-19 02:47:43 UTC]]  (208.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para tirar a força de Sansão, Dalila:"], ["created_at", 2016-08-19 02:47:43 UTC], ["updated_at", 2016-08-19 02:47:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cortou Os Cabelos de Sansão"], ["question_id", 721], ["correct", true], ["created_at", 2016-08-19 02:47:43 UTC], ["updated_at", 2016-08-19 02:47:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Furou Os Olhos de Sansão"], ["question_id", 721], ["correct", false], ["created_at", 2016-08-19 02:47:43 UTC], ["updated_at", 2016-08-19 02:47:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Costurou A Boca de Sansão"], ["question_id", 721], ["correct", false], ["created_at", 2016-08-19 02:47:43 UTC], ["updated_at", 2016-08-19 02:47:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cortou As Duas Mãos de Sansão"], ["question_id", 721], ["correct", false], ["created_at", 2016-08-19 02:47:43 UTC], ["updated_at", 2016-08-19 02:47:43 UTC]]  (234.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Paulo ficou cego enquanto caminhava em qual estrada?"], ["created_at", 2016-08-19 02:47:43 UTC], ["updated_at", 2016-08-19 02:47:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Damasco"], ["question_id", 722], ["correct", true], ["created_at", 2016-08-19 02:47:43 UTC], ["updated_at", 2016-08-19 02:47:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 722], ["correct", false], ["created_at", 2016-08-19 02:47:43 UTC], ["updated_at", 2016-08-19 02:47:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 722], ["correct", false], ["created_at", 2016-08-19 02:47:43 UTC], ["updated_at", 2016-08-19 02:47:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nazaré"], ["question_id", 722], ["correct", false], ["created_at", 2016-08-19 02:47:43 UTC], ["updated_at", 2016-08-19 02:47:43 UTC]]  (133.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Paulo foi curado da sua cegueira por:"], ["created_at", 2016-08-19 02:47:43 UTC], ["updated_at", 2016-08-19 02:47:43 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ananias"], ["question_id", 723], ["correct", true], ["created_at", 2016-08-19 02:47:43 UTC], ["updated_at", 2016-08-19 02:47:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 723], ["correct", false], ["created_at", 2016-08-19 02:47:43 UTC], ["updated_at", 2016-08-19 02:47:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 723], ["correct", false], ["created_at", 2016-08-19 02:47:43 UTC], ["updated_at", 2016-08-19 02:47:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 723], ["correct", false], ["created_at", 2016-08-19 02:47:43 UTC], ["updated_at", 2016-08-19 02:47:43 UTC]]  (191.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Pedro, apóstolo de Jesus, tinha um irmão pescador que também aceitou o chamado do Mestre. Seu nome era:"], ["created_at", 2016-08-19 02:47:44 UTC], ["updated_at", 2016-08-19 02:47:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "André"], ["question_id", 724], ["correct", true], ["created_at", 2016-08-19 02:47:44 UTC], ["updated_at", 2016-08-19 02:47:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 724], ["correct", false], ["created_at", 2016-08-19 02:47:44 UTC], ["updated_at", 2016-08-19 02:47:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 724], ["correct", false], ["created_at", 2016-08-19 02:47:44 UTC], ["updated_at", 2016-08-19 02:47:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tomé"], ["question_id", 724], ["correct", false], ["created_at", 2016-08-19 02:47:44 UTC], ["updated_at", 2016-08-19 02:47:44 UTC]]  (184.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Pelo fato de Mefibosete ser o último descendente da casa de Saul, o que o rei Davi lhe devolveu?"], ["created_at", 2016-08-19 02:47:44 UTC], ["updated_at", 2016-08-19 02:47:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Propriedades Pessoais de Saul"], ["question_id", 725], ["correct", true], ["created_at", 2016-08-19 02:47:44 UTC], ["updated_at", 2016-08-19 02:47:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Esposas de Saul"], ["question_id", 725], ["correct", false], ["created_at", 2016-08-19 02:47:44 UTC], ["updated_at", 2016-08-19 02:47:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Jumentos de Saul"], ["question_id", 725], ["correct", false], ["created_at", 2016-08-19 02:47:44 UTC], ["updated_at", 2016-08-19 02:47:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Vinhas de Saul"], ["question_id", 725], ["correct", false], ["created_at", 2016-08-19 02:47:44 UTC], ["updated_at", 2016-08-19 02:47:44 UTC]]  (166.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Pelo fato de ter olhado para trás desobedecendo à instrução divina enquanto fugiam, em que a esposa de Ló foi transformada?"], ["created_at", 2016-08-19 02:47:44 UTC], ["updated_at", 2016-08-19 02:47:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Estátua de Sal"], ["question_id", 726], ["correct", true], ["created_at", 2016-08-19 02:47:44 UTC], ["updated_at", 2016-08-19 02:47:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Estátua de Pedra"], ["question_id", 726], ["correct", false], ["created_at", 2016-08-19 02:47:44 UTC], ["updated_at", 2016-08-19 02:47:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Estátua de Bronze"], ["question_id", 726], ["correct", false], ["created_at", 2016-08-19 02:47:44 UTC], ["updated_at", 2016-08-19 02:47:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Estátua de Cobre"], ["question_id", 726], ["correct", false], ["created_at", 2016-08-19 02:47:44 UTC], ["updated_at", 2016-08-19 02:47:44 UTC]]  (133.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Pelo que cada árvore é conhecida?"], ["created_at", 2016-08-19 02:47:44 UTC], ["updated_at", 2016-08-19 02:47:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pelos Seus Frutos"], ["question_id", 727], ["correct", true], ["created_at", 2016-08-19 02:47:44 UTC], ["updated_at", 2016-08-19 02:47:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pelas Suas Folhas"], ["question_id", 727], ["correct", false], ["created_at", 2016-08-19 02:47:44 UTC], ["updated_at", 2016-08-19 02:47:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pelas Suas Raízes"], ["question_id", 727], ["correct", false], ["created_at", 2016-08-19 02:47:44 UTC], ["updated_at", 2016-08-19 02:47:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pelos Seus Ramos"], ["question_id", 727], ["correct", false], ["created_at", 2016-08-19 02:47:44 UTC], ["updated_at", 2016-08-19 02:47:44 UTC]]  (132.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Pôncio Pilatos foi governador de qual região, na época que Jesus viveu?"], ["created_at", 2016-08-19 02:47:44 UTC], ["updated_at", 2016-08-19 02:47:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judéia"], ["question_id", 728], ["correct", true], ["created_at", 2016-08-19 02:47:44 UTC], ["updated_at", 2016-08-19 02:47:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 728], ["correct", false], ["created_at", 2016-08-19 02:47:44 UTC], ["updated_at", 2016-08-19 02:47:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Iduméia"], ["question_id", 728], ["correct", false], ["created_at", 2016-08-19 02:47:44 UTC], ["updated_at", 2016-08-19 02:47:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cafarnaum"], ["question_id", 728], ["correct", false], ["created_at", 2016-08-19 02:47:44 UTC], ["updated_at", 2016-08-19 02:47:44 UTC]]  (150.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Pôncio Pilatos ordenou que Jesus fosse:"], ["created_at", 2016-08-19 02:47:44 UTC], ["updated_at", 2016-08-19 02:47:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Crucificado"], ["question_id", 729], ["correct", true], ["created_at", 2016-08-19 02:47:44 UTC], ["updated_at", 2016-08-19 02:47:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Enforcado"], ["question_id", 729], ["correct", false], ["created_at", 2016-08-19 02:47:44 UTC], ["updated_at", 2016-08-19 02:47:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Decapitado"], ["question_id", 729], ["correct", false], ["created_at", 2016-08-19 02:47:44 UTC], ["updated_at", 2016-08-19 02:47:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Enterrado Vivo"], ["question_id", 729], ["correct", false], ["created_at", 2016-08-19 02:47:44 UTC], ["updated_at", 2016-08-19 02:47:44 UTC]]  (216.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por causa do decreto de César Augusto, José e Maria precisaram mudar-se para:"], ["created_at", 2016-08-19 02:47:45 UTC], ["updated_at", 2016-08-19 02:47:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belém"], ["question_id", 730], ["correct", true], ["created_at", 2016-08-19 02:47:45 UTC], ["updated_at", 2016-08-19 02:47:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nazaré"], ["question_id", 730], ["correct", false], ["created_at", 2016-08-19 02:47:45 UTC], ["updated_at", 2016-08-19 02:47:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 730], ["correct", false], ["created_at", 2016-08-19 02:47:45 UTC], ["updated_at", 2016-08-19 02:47:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cafarnaum"], ["question_id", 730], ["correct", false], ["created_at", 2016-08-19 02:47:45 UTC], ["updated_at", 2016-08-19 02:47:45 UTC]]  (1530.2ms) SELECT COUNT(*) FROM "quizzes_questions"  (158.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por causa do pecado de Acã, quantos homens de Josué morreram?"], ["created_at", 2016-08-19 02:47:45 UTC], ["updated_at", 2016-08-19 02:47:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "36"], ["question_id", 731], ["correct", true], ["created_at", 2016-08-19 02:47:45 UTC], ["updated_at", 2016-08-19 02:47:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "300"], ["question_id", 731], ["correct", false], ["created_at", 2016-08-19 02:47:45 UTC], ["updated_at", 2016-08-19 02:47:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas Acã"], ["question_id", 731], ["correct", false], ["created_at", 2016-08-19 02:47:45 UTC], ["updated_at", 2016-08-19 02:47:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhum"], ["question_id", 731], ["correct", false], ["created_at", 2016-08-19 02:47:45 UTC], ["updated_at", 2016-08-19 02:47:45 UTC]]  (183.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por ciúmes e ódio, os irmãos de José o venderam à uma caravana como:"], ["created_at", 2016-08-19 02:47:45 UTC], ["updated_at", 2016-08-19 02:47:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escravo"], ["question_id", 732], ["correct", true], ["created_at", 2016-08-19 02:47:45 UTC], ["updated_at", 2016-08-19 02:47:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Exímio Economista"], ["question_id", 732], ["correct", false], ["created_at", 2016-08-19 02:47:45 UTC], ["updated_at", 2016-08-19 02:47:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Patrão"], ["question_id", 732], ["correct", false], ["created_at", 2016-08-19 02:47:45 UTC], ["updated_at", 2016-08-19 02:47:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ótimo Funcionário"], ["question_id", 732], ["correct", false], ["created_at", 2016-08-19 02:47:45 UTC], ["updated_at", 2016-08-19 02:47:45 UTC]]  (166.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por dinheiro, Judas Iscariotes traiu a:"], ["created_at", 2016-08-19 02:47:45 UTC], ["updated_at", 2016-08-19 02:47:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 733], ["correct", true], ["created_at", 2016-08-19 02:47:45 UTC], ["updated_at", 2016-08-19 02:47:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 733], ["correct", false], ["created_at", 2016-08-19 02:47:45 UTC], ["updated_at", 2016-08-19 02:47:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José de Arimatéia"], ["question_id", 733], ["correct", false], ["created_at", 2016-08-19 02:47:45 UTC], ["updated_at", 2016-08-19 02:47:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zaqueu"], ["question_id", 733], ["correct", false], ["created_at", 2016-08-19 02:47:45 UTC], ["updated_at", 2016-08-19 02:47:45 UTC]]  (133.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por onde os israelitas vagaram durante 40 anos?"], ["created_at", 2016-08-19 02:47:45 UTC], ["updated_at", 2016-08-19 02:47:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pelo Deserto"], ["question_id", 734], ["correct", true], ["created_at", 2016-08-19 02:47:45 UTC], ["updated_at", 2016-08-19 02:47:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pelas Montanhas"], ["question_id", 734], ["correct", false], ["created_at", 2016-08-19 02:47:45 UTC], ["updated_at", 2016-08-19 02:47:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pelos Vales"], ["question_id", 734], ["correct", false], ["created_at", 2016-08-19 02:47:45 UTC], ["updated_at", 2016-08-19 02:47:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pelos Penhascos"], ["question_id", 734], ["correct", false], ["created_at", 2016-08-19 02:47:45 UTC], ["updated_at", 2016-08-19 02:47:45 UTC]]  (159.7ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por qual Monte o rei Davi passou em sua fuga de seu filho rebelde?"], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Monte das Oliveiras"], ["question_id", 735], ["correct", true], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Monte Ararat"], ["question_id", 735], ["correct", false], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Monte Sinai"], ["question_id", 735], ["correct", false], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Monte Moriá"], ["question_id", 735], ["correct", false], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]]  (141.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por qual motivo Daniel não se alimentava com os alimentos que eram oferecidos na mesa do rei?"], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Eram Impuros"], ["question_id", 736], ["correct", true], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Não Eram Lavados"], ["question_id", 736], ["correct", false], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Não Eram Totalmente Crus"], ["question_id", 736], ["correct", false], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Não Havia Higiene Na Preparação dos Mesmos"], ["question_id", 736], ["correct", false], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]]  (132.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por quanto anos aproximadamente o povo israelita foi escravo do povo egípcio?"], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "400"], ["question_id", 737], ["correct", true], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "200"], ["question_id", 737], ["correct", false], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "100"], ["question_id", 737], ["correct", false], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "700"], ["question_id", 737], ["correct", false], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]]  (151.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por quanto anos Moisés viveu em Midiã?"], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "40"], ["question_id", 738], ["correct", true], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "30"], ["question_id", 738], ["correct", false], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "20"], ["question_id", 738], ["correct", false], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10"], ["question_id", 738], ["correct", false], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]]  (141.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por quanto Moisés foi escondido por sua mãe, enquanto era bebê?\n1,"], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Meses"], ["question_id", 739], ["correct", true], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5 Meses"], ["question_id", 739], ["correct", false], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Mês"], ["question_id", 739], ["correct", false], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7 Meses"], ["question_id", 739], ["correct", false], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]]  (141.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por quanto tempo Absalão refugiou-se na cidade de Gesur, pelo fato de ter matado a Amnom?"], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Anos"], ["question_id", 740], ["correct", true], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Meses"], ["question_id", 740], ["correct", false], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Dias"], ["question_id", 740], ["correct", false], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Semanas"], ["question_id", 740], ["correct", false], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]]  (133.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por quanto tempo durou o período de teste da alimentação de Daniel e seus amigos?"], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10 Dias"], ["question_id", 741], ["correct", true], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10 Meses"], ["question_id", 741], ["correct", false], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "40 Dias"], ["question_id", 741], ["correct", false], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4 Meses"], ["question_id", 741], ["correct", false], ["created_at", 2016-08-19 02:47:46 UTC], ["updated_at", 2016-08-19 02:47:46 UTC]]  (141.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por quanto tempo Jonas ficou preso dentro da barriga de um grande peixe?"], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Dias"], ["question_id", 742], ["correct", true], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Horas"], ["question_id", 742], ["correct", false], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Semanas"], ["question_id", 742], ["correct", false], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Pôr-do-sóis"], ["question_id", 742], ["correct", false], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]]  (125.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por quanto tempo o gigante Golias provocou os israelitas?"], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "40 Dias"], ["question_id", 743], ["correct", true], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4 Dias"], ["question_id", 743], ["correct", false], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4 Semanas"], ["question_id", 743], ["correct", false], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4 Meses"], ["question_id", 743], ["correct", false], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]]  (134.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por quanto tempo o povo de Nínive recebeu as advertências de Jonas?"], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "40 Dias"], ["question_id", 744], ["correct", true], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4 Dias"], ["question_id", 744], ["correct", false], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Semana"], ["question_id", 744], ["correct", false], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Ano"], ["question_id", 744], ["correct", false], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]]  (107.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por quanto tempo o rei Davi jejuou e orou para que Deus mantivesse seu filho vivo?"], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7 Dias"], ["question_id", 745], ["correct", true], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Dias"], ["question_id", 745], ["correct", false], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "30 Dias"], ["question_id", 745], ["correct", false], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Semanas"], ["question_id", 745], ["correct", false], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]]  (142.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por quanto tempo os espias enviados por Josué ficaram escondidos em um monte?"], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Dias"], ["question_id", 746], ["correct", true], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Horas"], ["question_id", 746], ["correct", false], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Semanas"], ["question_id", 746], ["correct", false], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Meses"], ["question_id", 746], ["correct", false], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]]  (134.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por quantos anos Daniel e seus amigos deviam ser educados no serviço do rei?"], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 747], ["correct", true], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 747], ["correct", false], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 747], ["correct", false], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "8"], ["question_id", 747], ["correct", false], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]]  (125.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por quantos anos José ficou na prisão antes do Faraó chamá-lo para interpretar seus sonhos?"], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 748], ["correct", true], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 748], ["correct", false], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "6"], ["question_id", 748], ["correct", false], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12"], ["question_id", 748], ["correct", false], ["created_at", 2016-08-19 02:47:47 UTC], ["updated_at", 2016-08-19 02:47:47 UTC]]  (133.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por quantos dias durou a praga enviada por Deus contra os egícpios que transformava a água em sangue?"], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7"], ["question_id", 749], ["correct", true], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "14"], ["question_id", 749], ["correct", false], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "21"], ["question_id", 749], ["correct", false], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 749], ["correct", false], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]]  (141.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por que Daniel foi atirado na cova dos leões?"], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Ter Orado A Deus"], ["question_id", 750], ["correct", true], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Não Ter Se Alimentado da Comida do Rei"], ["question_id", 750], ["correct", false], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Era Um Estrangeiro Israelita"], ["question_id", 750], ["correct", false], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Não Ajoelhou-se À Estátua do Rei"], ["question_id", 750], ["correct", false], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]]  (141.2ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por que Jesus nasceu em um estábulo?"], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Não Havia Mais Lugar Na Estalagem"], ["question_id", 751], ["correct", true], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Era Mais Conveniente"], ["question_id", 751], ["correct", false], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Maria Gostava de Animais"], ["question_id", 751], ["correct", false], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois José Reformou O Estábulo"], ["question_id", 751], ["correct", false], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]]  (149.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por que José e Maria precisaram viajar para Belém?"], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Participar de Um Recenseamento"], ["question_id", 752], ["correct", true], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Visitar A Família"], ["question_id", 752], ["correct", false], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Eles Moravam Lá"], ["question_id", 752], ["correct", false], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Causa de Um Trabalho Para José"], ["question_id", 752], ["correct", false], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]]  (159.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por que Nadabe e Abiú morreram?"], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Trouxeram Fogo Estranho Na Presença de Deus"], ["question_id", 753], ["correct", true], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Haviam Roubado"], ["question_id", 753], ["correct", false], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Haviam Mcasado Com Mulheres Filistéias"], ["question_id", 753], ["correct", false], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Conspiravam Para Tomar A Coroa de Judá"], ["question_id", 753], ["correct", false], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]]  (166.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por que o faraó mandou matar todos os bebês hebreus do sexo masculino que nascessem?"], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Os Hebreus Estavam Crescendo Mui Rapidamente"], ["question_id", 754], ["correct", true], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Havia Pouquiíssimas Meninas Para Casamento"], ["question_id", 754], ["correct", false], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Os Meninos Eram Considerados Impuros"], ["question_id", 754], ["correct", false], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Os Deuses Egípcios Exigiam Sacrifícios"], ["question_id", 754], ["correct", false], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]]  (124.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por que os irmãos de José decidiram vendê-lo como escravo por 20 moedas de prata?"], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Queriam Se Livrar Dele"], ["question_id", 755], ["correct", true], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Precisavam do Dinheiro"], ["question_id", 755], ["correct", false], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque José Tinha Uma Doença Incurável"], ["question_id", 755], ["correct", false], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque José Tinha Muitas Dívidas Para Pagar"], ["question_id", 755], ["correct", false], ["created_at", 2016-08-19 02:47:48 UTC], ["updated_at", 2016-08-19 02:47:48 UTC]]  (174.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por que os irmãos de José o venderam como escravo?"], ["created_at", 2016-08-19 02:47:49 UTC], ["updated_at", 2016-08-19 02:47:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todas As Alternativas Estão Corretas"], ["question_id", 756], ["correct", true], ["created_at", 2016-08-19 02:47:49 UTC], ["updated_at", 2016-08-19 02:47:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Tinham Ciúmes Dele"], ["question_id", 756], ["correct", false], ["created_at", 2016-08-19 02:47:49 UTC], ["updated_at", 2016-08-19 02:47:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Tinham Ódio Dele"], ["question_id", 756], ["correct", false], ["created_at", 2016-08-19 02:47:49 UTC], ["updated_at", 2016-08-19 02:47:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Queriam Se Livrar Dele"], ["question_id", 756], ["correct", false], ["created_at", 2016-08-19 02:47:49 UTC], ["updated_at", 2016-08-19 02:47:49 UTC]]  (166.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por que Pôncio Pilatos ordenou a colocação de guardas no sepulcro de Jesus?"], ["created_at", 2016-08-19 02:47:49 UTC], ["updated_at", 2016-08-19 02:47:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Evitar Que O Corpo Fosse Roubado"], ["question_id", 757], ["correct", true], ["created_at", 2016-08-19 02:47:49 UTC], ["updated_at", 2016-08-19 02:47:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Era Lei"], ["question_id", 757], ["correct", false], ["created_at", 2016-08-19 02:47:49 UTC], ["updated_at", 2016-08-19 02:47:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Era Hábito No Sepultamento de Judeus"], ["question_id", 757], ["correct", false], ["created_at", 2016-08-19 02:47:49 UTC], ["updated_at", 2016-08-19 02:47:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Manter O Corpo Em Segurança"], ["question_id", 757], ["correct", false], ["created_at", 2016-08-19 02:47:49 UTC], ["updated_at", 2016-08-19 02:47:49 UTC]]  (134.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por que Rubens, o filho mais velho de Jacó, perdeu a sua primogenitura?"], ["created_at", 2016-08-19 02:47:49 UTC], ["updated_at", 2016-08-19 02:47:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Ter Profanado O Leito do Seu Pai."], ["question_id", 758], ["correct", true], ["created_at", 2016-08-19 02:47:49 UTC], ["updated_at", 2016-08-19 02:47:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Ter Assassinado Seu Irmão"], ["question_id", 758], ["correct", false], ["created_at", 2016-08-19 02:47:49 UTC], ["updated_at", 2016-08-19 02:47:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Ter Vendido José Como Escravo Ao Egito"], ["question_id", 758], ["correct", false], ["created_at", 2016-08-19 02:47:49 UTC], ["updated_at", 2016-08-19 02:47:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Ser Filho Bastardo"], ["question_id", 758], ["correct", false], ["created_at", 2016-08-19 02:47:49 UTC], ["updated_at", 2016-08-19 02:47:49 UTC]]  (166.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por quem um homem cego não pode ser guiado?"], ["created_at", 2016-08-19 02:47:49 UTC], ["updated_at", 2016-08-19 02:47:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Um Homem Cego"], ["question_id", 759], ["correct", true], ["created_at", 2016-08-19 02:47:49 UTC], ["updated_at", 2016-08-19 02:47:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Um Homem Manco"], ["question_id", 759], ["correct", false], ["created_at", 2016-08-19 02:47:49 UTC], ["updated_at", 2016-08-19 02:47:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Um Homem Morto"], ["question_id", 759], ["correct", false], ["created_at", 2016-08-19 02:47:49 UTC], ["updated_at", 2016-08-19 02:47:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Um Homem Burro"], ["question_id", 759], ["correct", false], ["created_at", 2016-08-19 02:47:49 UTC], ["updated_at", 2016-08-19 02:47:49 UTC]]  (125.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por várias vezes, quem sofreu várias tentativas de assassinato por parte de Saul, rei de Israel?"], ["created_at", 2016-08-19 02:47:49 UTC], ["updated_at", 2016-08-19 02:47:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 760], ["correct", true], ["created_at", 2016-08-19 02:47:49 UTC], ["updated_at", 2016-08-19 02:47:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei Assuero"], ["question_id", 760], ["correct", false], ["created_at", 2016-08-19 02:47:49 UTC], ["updated_at", 2016-08-19 02:47:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei Nabucodonosor"], ["question_id", 760], ["correct", false], ["created_at", 2016-08-19 02:47:49 UTC], ["updated_at", 2016-08-19 02:47:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei Tiro"], ["question_id", 760], ["correct", false], ["created_at", 2016-08-19 02:47:49 UTC], ["updated_at", 2016-08-19 02:47:49 UTC]]  (150.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Porque Deus pediu a Moisés para que tirasse as sandálias quando este viu a sarça ardente?"], ["created_at", 2016-08-19 02:47:49 UTC], ["updated_at", 2016-08-19 02:47:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Era Solo Sagrado"], ["question_id", 761], ["correct", true], ["created_at", 2016-08-19 02:47:49 UTC], ["updated_at", 2016-08-19 02:47:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Estava Limpo"], ["question_id", 761], ["correct", false], ["created_at", 2016-08-19 02:47:49 UTC], ["updated_at", 2016-08-19 02:47:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois As Sandálias Estavam Cheias de Barro"], ["question_id", 761], ["correct", false], ["created_at", 2016-08-19 02:47:49 UTC], ["updated_at", 2016-08-19 02:47:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Deus Iria Dar Um Outro Par de Sandálias"], ["question_id", 761], ["correct", false], ["created_at", 2016-08-19 02:47:49 UTC], ["updated_at", 2016-08-19 02:47:49 UTC]]  (174.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Porque Deus santificou e descansou no 7º dia da semana da criação?"], ["created_at", 2016-08-19 02:47:50 UTC], ["updated_at", 2016-08-19 02:47:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "P/ Dar Ao Homem Um Padrão Com Relação Ao Trabalho"], ["question_id", 762], ["correct", true], ["created_at", 2016-08-19 02:47:50 UTC], ["updated_at", 2016-08-19 02:47:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Deus Estava Cansado"], ["question_id", 762], ["correct", false], ["created_at", 2016-08-19 02:47:50 UTC], ["updated_at", 2016-08-19 02:47:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Tudo O Que Ele Faz É Santo"], ["question_id", 762], ["correct", false], ["created_at", 2016-08-19 02:47:50 UTC], ["updated_at", 2016-08-19 02:47:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Dar Exemplo de Como Trabalhar Rápido"], ["question_id", 762], ["correct", false], ["created_at", 2016-08-19 02:47:50 UTC], ["updated_at", 2016-08-19 02:47:50 UTC]]  (141.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Porque dos 30.000 trabalhadores designados para construítem o Templo de Jerusalém, apenas 10.000 trabalhavam no mês?"], ["created_at", 2016-08-19 02:47:50 UTC], ["updated_at", 2016-08-19 02:47:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Haver Rotação (trabalhava 1 e Folgava 2)"], ["question_id", 763], ["correct", true], ["created_at", 2016-08-19 02:47:50 UTC], ["updated_at", 2016-08-19 02:47:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Eram Escravos, e Fugiam Constantemente"], ["question_id", 763], ["correct", false], ["created_at", 2016-08-19 02:47:50 UTC], ["updated_at", 2016-08-19 02:47:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Eram Preguiçosos"], ["question_id", 763], ["correct", false], ["created_at", 2016-08-19 02:47:50 UTC], ["updated_at", 2016-08-19 02:47:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois O Restante Eram Apenas Mulheres Cozinheiras"], ["question_id", 763], ["correct", false], ["created_at", 2016-08-19 02:47:50 UTC], ["updated_at", 2016-08-19 02:47:50 UTC]]  (175.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Porque foi preciso que um anjo retirasse a pedra do sepulcro de Jesus?"], ["created_at", 2016-08-19 02:47:50 UTC], ["updated_at", 2016-08-19 02:47:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Que As Pessoas Vissem Que Jesus Ressuscitou"], ["question_id", 764], ["correct", true], ["created_at", 2016-08-19 02:47:50 UTC], ["updated_at", 2016-08-19 02:47:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Era Muito Grande Para Jesus Carregar"], ["question_id", 764], ["correct", false], ["created_at", 2016-08-19 02:47:50 UTC], ["updated_at", 2016-08-19 02:47:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Era Muito Pesasa Para Jesus Carregar"], ["question_id", 764], ["correct", false], ["created_at", 2016-08-19 02:47:50 UTC], ["updated_at", 2016-08-19 02:47:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Estava Presa Entre Outras Rochas"], ["question_id", 764], ["correct", false], ["created_at", 2016-08-19 02:47:50 UTC], ["updated_at", 2016-08-19 02:47:50 UTC]]  (232.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Porquê Hamã ofereceu 10.000 talentos de prata ao Rei Assuero?"], ["created_at", 2016-08-19 02:47:50 UTC], ["updated_at", 2016-08-19 02:47:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Exterminar Os Judeus"], ["question_id", 765], ["correct", true], ["created_at", 2016-08-19 02:47:50 UTC], ["updated_at", 2016-08-19 02:47:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Pagar Uma Dívida Antiga"], ["question_id", 765], ["correct", false], ["created_at", 2016-08-19 02:47:50 UTC], ["updated_at", 2016-08-19 02:47:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Comprar Uma Nova Esposa"], ["question_id", 765], ["correct", false], ["created_at", 2016-08-19 02:47:50 UTC], ["updated_at", 2016-08-19 02:47:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Comprar Sua Liberdade"], ["question_id", 765], ["correct", false], ["created_at", 2016-08-19 02:47:50 UTC], ["updated_at", 2016-08-19 02:47:50 UTC]]  (124.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Porque Nabote não queria vender ao rei Acaz a vinha que havia em suas terras?"], ["created_at", 2016-08-19 02:47:50 UTC], ["updated_at", 2016-08-19 02:47:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois A Vinha Havia Pertencido Aos Seus Ancestrais"], ["question_id", 766], ["correct", true], ["created_at", 2016-08-19 02:47:50 UTC], ["updated_at", 2016-08-19 02:47:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois As Uvas Ainda Estavam Verdes"], ["question_id", 766], ["correct", false], ["created_at", 2016-08-19 02:47:50 UTC], ["updated_at", 2016-08-19 02:47:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois A Vinha Não Produzia Mais"], ["question_id", 766], ["correct", false], ["created_at", 2016-08-19 02:47:50 UTC], ["updated_at", 2016-08-19 02:47:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois A Vinha Ainda Iria Demorar Anos Para Produzir"], ["question_id", 766], ["correct", false], ["created_at", 2016-08-19 02:47:50 UTC], ["updated_at", 2016-08-19 02:47:50 UTC]]  (184.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Porque Saul desejava matar a Davi?"], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois A Popularidade de Davi Estava Crescendo"], ["question_id", 767], ["correct", true], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Davi Era Mais Belo Que Saul"], ["question_id", 767], ["correct", false], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Davi Era Mais Jovem Que Saul"], ["question_id", 767], ["correct", false], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Davi Pretendia Casar-se Com Sua Filha"], ["question_id", 767], ["correct", false], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]]  (174.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Porque um homem morte foi atirado no túmulo de Eliseu?"], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Os Moabitas Estavam Invadindo A Terra"], ["question_id", 768], ["correct", true], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque A Família Não Tinha Onde Enterrá-lo"], ["question_id", 768], ["correct", false], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Ele Foi Executado Pelos Soldados Inimigos"], ["question_id", 768], ["correct", false], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Era O Seu Último Desejo"], ["question_id", 768], ["correct", false], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]]  (167.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Próximo a qual cidade o cego Bartimeu teve sua visão restabelecida por Jesus?"], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jericó"], ["question_id", 769], ["correct", true], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Betânia"], ["question_id", 769], ["correct", false], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Betesda"], ["question_id", 769], ["correct", false], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 769], ["correct", false], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]]  (117.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quais discípulos receberam a orientação para que orassem junto com Jesus no Jardim do Getsêmani?"], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todas As Alternativas Estão Corretas"], ["question_id", 770], ["correct", true], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 770], ["correct", false], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 770], ["correct", false], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 770], ["correct", false], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]]  (118.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quais eram os nomes dos magos do Faraó que conseguiram imitar 2 pragas enviadas por Deus?"], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Janes e Jambres"], ["question_id", 771], ["correct", true], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeser e Joctã"], ["question_id", 771], ["correct", false], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacã e Javá"], ["question_id", 771], ["correct", false], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eolá e Ermafrom"], ["question_id", 771], ["correct", false], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]]  (134.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quais foram as primeiras palavras do anjo para os pastores que receberam as Boas Novas do nascimento do menino Jesus?"], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Tenhais Medo!"], ["question_id", 772], ["correct", true], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Olhai Para Os Céus!"], ["question_id", 772], ["correct", false], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Prostrai-vos Perante O Menino Jesus!"], ["question_id", 772], ["correct", false], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hosana A Deus!"], ["question_id", 772], ["correct", false], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]]  (124.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quais foram as safras da cultura egípcia que foram destruídas, pelo fato de Deus ter enviado as pedras de fogo?"], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Linho e Cevada"], ["question_id", 773], ["correct", true], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Milho e Trigo"], ["question_id", 773], ["correct", false], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Centeio e Cevada"], ["question_id", 773], ["correct", false], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trigo e Linho"], ["question_id", 773], ["correct", false], ["created_at", 2016-08-19 02:47:51 UTC], ["updated_at", 2016-08-19 02:47:51 UTC]]  (125.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quais foram as safras da cultura egípcia que sobreviveram às pedras de fogo enviadas por Deus?"], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trigo e Centeio"], ["question_id", 774], ["correct", true], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Milho e Cevada"], ["question_id", 774], ["correct", false], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Linho e Trigo"], ["question_id", 774], ["correct", false], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cevada e Centeio"], ["question_id", 774], ["correct", false], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]]  (142.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quais personagens bíblicos jejuaram 40 dias e 40 noites?"], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus, Elias e Moisés"], ["question_id", 775], ["correct", true], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 775], ["correct", false], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus e Elias"], ["question_id", 775], ["correct", false], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus e Moisés"], ["question_id", 775], ["correct", false], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]]  (124.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual a mulher que acolheu o seu inimigo e depois o matou?"], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jael"], ["question_id", 776], ["correct", true], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 776], ["correct", false], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elisa"], ["question_id", 776], ["correct", false], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joquebede"], ["question_id", 776], ["correct", false], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]]  (125.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual animal doméstico não é mencionado na Bíblia?"], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gato"], ["question_id", 777], ["correct", true], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cachorro"], ["question_id", 777], ["correct", false], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Boi"], ["question_id", 777], ["correct", false], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ovelha"], ["question_id", 777], ["correct", false], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]]  (132.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual animal feriu Paulo, porém seu veneno não fez efeito algum?"], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cobra"], ["question_id", 778], ["correct", true], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escorpião"], ["question_id", 778], ["correct", false], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aranha"], ["question_id", 778], ["correct", false], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porco-espinho"], ["question_id", 778], ["correct", false], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]]  (108.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual animal Satanás utilizou para enganar a Eva no Jardim do Éden?"], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Serpente"], ["question_id", 779], ["correct", true], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Papagaio"], ["question_id", 779], ["correct", false], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arara"], ["question_id", 779], ["correct", false], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Macaco"], ["question_id", 779], ["correct", false], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]]  (150.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual anjo disse a Zacarias que ele teria um filho?"], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gabriel"], ["question_id", 780], ["correct", true], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miguel"], ["question_id", 780], ["correct", false], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Querubin"], ["question_id", 780], ["correct", false], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arcanjo"], ["question_id", 780], ["correct", false], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]]  (107.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual apóstolo converteu Lídia, a 1ª mulher convertida na Europa?\n1,"], ["created_at", 2016-08-19 02:47:52 UTC], ["updated_at", 2016-08-19 02:47:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 781], ["correct", true], ["created_at", 2016-08-19 02:47:53 UTC], ["updated_at", 2016-08-19 02:47:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 781], ["correct", false], ["created_at", 2016-08-19 02:47:53 UTC], ["updated_at", 2016-08-19 02:47:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filipe"], ["question_id", 781], ["correct", false], ["created_at", 2016-08-19 02:47:53 UTC], ["updated_at", 2016-08-19 02:47:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Barnabé"], ["question_id", 781], ["correct", false], ["created_at", 2016-08-19 02:47:53 UTC], ["updated_at", 2016-08-19 02:47:53 UTC]]  (133.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual apóstolo de Jesus encontrou um eunuco etíope e o batizou na estrada para Gaza?"], ["created_at", 2016-08-19 02:47:53 UTC], ["updated_at", 2016-08-19 02:47:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 782], ["correct", true], ["created_at", 2016-08-19 02:47:53 UTC], ["updated_at", 2016-08-19 02:47:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "André"], ["question_id", 782], ["correct", false], ["created_at", 2016-08-19 02:47:53 UTC], ["updated_at", 2016-08-19 02:47:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tomé"], ["question_id", 782], ["correct", false], ["created_at", 2016-08-19 02:47:53 UTC], ["updated_at", 2016-08-19 02:47:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 782], ["correct", false], ["created_at", 2016-08-19 02:47:53 UTC], ["updated_at", 2016-08-19 02:47:53 UTC]]  (124.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual apóstolo de Jesus estava preso entre 2 guardas a prisão, e foi libertado por um anjo enviado por Deus?"], ["created_at", 2016-08-19 02:47:53 UTC], ["updated_at", 2016-08-19 02:47:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 783], ["correct", true], ["created_at", 2016-08-19 02:47:53 UTC], ["updated_at", 2016-08-19 02:47:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 783], ["correct", false], ["created_at", 2016-08-19 02:47:53 UTC], ["updated_at", 2016-08-19 02:47:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Barnabé"], ["question_id", 783], ["correct", false], ["created_at", 2016-08-19 02:47:53 UTC], ["updated_at", 2016-08-19 02:47:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 783], ["correct", false], ["created_at", 2016-08-19 02:47:53 UTC], ["updated_at", 2016-08-19 02:47:53 UTC]]  (152.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual apóstolo de Jesus tinha como profissão coletor de impostos?"], ["created_at", 2016-08-19 02:47:53 UTC], ["updated_at", 2016-08-19 02:47:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mateus"], ["question_id", 784], ["correct", true], ["created_at", 2016-08-19 02:47:53 UTC], ["updated_at", 2016-08-19 02:47:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 784], ["correct", false], ["created_at", 2016-08-19 02:47:53 UTC], ["updated_at", 2016-08-19 02:47:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 784], ["correct", false], ["created_at", 2016-08-19 02:47:53 UTC], ["updated_at", 2016-08-19 02:47:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "André"], ["question_id", 784], ["correct", false], ["created_at", 2016-08-19 02:47:53 UTC], ["updated_at", 2016-08-19 02:47:53 UTC]]  (141.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual apóstolo escreveu a Epístola aos Romanos?"], ["created_at", 2016-08-19 02:47:53 UTC], ["updated_at", 2016-08-19 02:47:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 785], ["correct", true], ["created_at", 2016-08-19 02:47:53 UTC], ["updated_at", 2016-08-19 02:47:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 785], ["correct", false], ["created_at", 2016-08-19 02:47:53 UTC], ["updated_at", 2016-08-19 02:47:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 785], ["correct", false], ["created_at", 2016-08-19 02:47:53 UTC], ["updated_at", 2016-08-19 02:47:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 785], ["correct", false], ["created_at", 2016-08-19 02:47:53 UTC], ["updated_at", 2016-08-19 02:47:53 UTC]]  (141.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual apóstolo foi confundido pelos gregos como sendo o deus Mercúrio?"], ["created_at", 2016-08-19 02:47:53 UTC], ["updated_at", 2016-08-19 02:47:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 786], ["correct", true], ["created_at", 2016-08-19 02:47:53 UTC], ["updated_at", 2016-08-19 02:47:53 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 786], ["correct", false], ["created_at", 2016-08-19 02:47:53 UTC], ["updated_at", 2016-08-19 02:47:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 786], ["correct", false], ["created_at", 2016-08-19 02:47:53 UTC], ["updated_at", 2016-08-19 02:47:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 786], ["correct", false], ["created_at", 2016-08-19 02:47:53 UTC], ["updated_at", 2016-08-19 02:47:53 UTC]]  (166.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual apóstolo foi morto decapitado:"], ["created_at", 2016-08-19 02:47:53 UTC], ["updated_at", 2016-08-19 02:47:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 787], ["correct", true], ["created_at", 2016-08-19 02:47:53 UTC], ["updated_at", 2016-08-19 02:47:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 787], ["correct", false], ["created_at", 2016-08-19 02:47:53 UTC], ["updated_at", 2016-08-19 02:47:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas"], ["question_id", 787], ["correct", false], ["created_at", 2016-08-19 02:47:53 UTC], ["updated_at", 2016-08-19 02:47:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Estêvão"], ["question_id", 787], ["correct", false], ["created_at", 2016-08-19 02:47:53 UTC], ["updated_at", 2016-08-19 02:47:53 UTC]]  (141.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual apóstolo queria prosseguir sua viagem para a Síria, mas que foi obrigado à retornar à Macedônia pois havia uma cilada?"], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 788], ["correct", true], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 788], ["correct", false], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 788], ["correct", false], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 788], ["correct", false], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]]  (158.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual apóstolo ressuscitou um jovem chamado Êutico, que morreu após ter caído de uma janela ao adormecer?"], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 789], ["correct", true], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Timóteo"], ["question_id", 789], ["correct", false], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "André"], ["question_id", 789], ["correct", false], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 789], ["correct", false], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]]  (141.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual apóstolo também era conhecido por Dídimo?"], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tomé"], ["question_id", 790], ["correct", true], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 790], ["correct", false], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 790], ["correct", false], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "André"], ["question_id", 790], ["correct", false], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]]  (174.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual apóstolo traiu Jesus por dinheiro?"], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas Iscariotes"], ["question_id", 791], ["correct", true], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mateus"], ["question_id", 791], ["correct", false], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Barnabé"], ["question_id", 791], ["correct", false], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 791], ["correct", false], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]]  (133.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual cidade Abraão pediu a Deus para não ser destruída?"], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sodoma"], ["question_id", 792], ["correct", true], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 792], ["correct", false], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nínive"], ["question_id", 792], ["correct", false], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esmirna"], ["question_id", 792], ["correct", false], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]]  (109.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual cidade do Egito disse Faraó a José para acomodar sua família?"], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gósen"], ["question_id", 793], ["correct", true], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaacar"], ["question_id", 793], ["correct", false], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Menén"], ["question_id", 793], ["correct", false], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ofradite"], ["question_id", 793], ["correct", false], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]]  (159.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual cidade também era conhecida por haver muitos gigantes?"], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Astarote"], ["question_id", 794], ["correct", true], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hazor"], ["question_id", 794], ["correct", false], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gebal"], ["question_id", 794], ["correct", false], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gibazém"], ["question_id", 794], ["correct", false], ["created_at", 2016-08-19 02:47:54 UTC], ["updated_at", 2016-08-19 02:47:54 UTC]]  (159.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual comandante de Israel que disse que só iria à batalha se uma mulher fosse com ele?"], ["created_at", 2016-08-19 02:47:55 UTC], ["updated_at", 2016-08-19 02:47:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Baraque"], ["question_id", 795], ["correct", true], ["created_at", 2016-08-19 02:47:55 UTC], ["updated_at", 2016-08-19 02:47:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mesaque"], ["question_id", 795], ["correct", false], ["created_at", 2016-08-19 02:47:55 UTC], ["updated_at", 2016-08-19 02:47:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sadraque"], ["question_id", 795], ["correct", false], ["created_at", 2016-08-19 02:47:55 UTC], ["updated_at", 2016-08-19 02:47:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jefté"], ["question_id", 795], ["correct", false], ["created_at", 2016-08-19 02:47:55 UTC], ["updated_at", 2016-08-19 02:47:55 UTC]]  (199.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual comemoração Jesus e seus pais participavam anualmente em Jerusalém?"], ["created_at", 2016-08-19 02:47:55 UTC], ["updated_at", 2016-08-19 02:47:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Da Páscoa dos Judeus"], ["question_id", 796], ["correct", true], ["created_at", 2016-08-19 02:47:55 UTC], ["updated_at", 2016-08-19 02:47:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Natal Israelita"], ["question_id", 796], ["correct", false], ["created_at", 2016-08-19 02:47:55 UTC], ["updated_at", 2016-08-19 02:47:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Da Vinda do Messias Prometido"], ["question_id", 796], ["correct", false], ["created_at", 2016-08-19 02:47:55 UTC], ["updated_at", 2016-08-19 02:47:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Da Semana Santa Judaica"], ["question_id", 796], ["correct", false], ["created_at", 2016-08-19 02:47:55 UTC], ["updated_at", 2016-08-19 02:47:55 UTC]]  (116.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual deficiência física Jônatas tinha?"], ["created_at", 2016-08-19 02:47:55 UTC], ["updated_at", 2016-08-19 02:47:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Tinha Deficiência Nenhuma"], ["question_id", 797], ["correct", true], ["created_at", 2016-08-19 02:47:55 UTC], ["updated_at", 2016-08-19 02:47:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cegueira"], ["question_id", 797], ["correct", false], ["created_at", 2016-08-19 02:47:55 UTC], ["updated_at", 2016-08-19 02:47:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aleijado"], ["question_id", 797], ["correct", false], ["created_at", 2016-08-19 02:47:55 UTC], ["updated_at", 2016-08-19 02:47:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mudo"], ["question_id", 797], ["correct", false], ["created_at", 2016-08-19 02:47:55 UTC], ["updated_at", 2016-08-19 02:47:55 UTC]]  (125.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual deficiência física Mefibosete possuía?"], ["created_at", 2016-08-19 02:47:55 UTC], ["updated_at", 2016-08-19 02:47:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Era Aleijado"], ["question_id", 798], ["correct", true], ["created_at", 2016-08-19 02:47:55 UTC], ["updated_at", 2016-08-19 02:47:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Era Cego"], ["question_id", 798], ["correct", false], ["created_at", 2016-08-19 02:47:55 UTC], ["updated_at", 2016-08-19 02:47:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Era Surdo"], ["question_id", 798], ["correct", false], ["created_at", 2016-08-19 02:47:55 UTC], ["updated_at", 2016-08-19 02:47:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Era Mudo"], ["question_id", 798], ["correct", false], ["created_at", 2016-08-19 02:47:55 UTC], ["updated_at", 2016-08-19 02:47:55 UTC]]  (109.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual destas tribos não pertencia às 12 tribos de Israel?"], ["created_at", 2016-08-19 02:47:55 UTC], ["updated_at", 2016-08-19 02:47:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Midiã"], ["question_id", 799], ["correct", true], ["created_at", 2016-08-19 02:47:55 UTC], ["updated_at", 2016-08-19 02:47:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Efraim"], ["question_id", 799], ["correct", false], ["created_at", 2016-08-19 02:47:55 UTC], ["updated_at", 2016-08-19 02:47:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dã"], ["question_id", 799], ["correct", false], ["created_at", 2016-08-19 02:47:55 UTC], ["updated_at", 2016-08-19 02:47:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gade"], ["question_id", 799], ["correct", false], ["created_at", 2016-08-19 02:47:55 UTC], ["updated_at", 2016-08-19 02:47:55 UTC]]  (116.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual discípulo recebeu a visão de um lençol cheio de animais?"], ["created_at", 2016-08-19 02:47:55 UTC], ["updated_at", 2016-08-19 02:47:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 800], ["correct", true], ["created_at", 2016-08-19 02:47:55 UTC], ["updated_at", 2016-08-19 02:47:55 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 800], ["correct", false], ["created_at", 2016-08-19 02:47:55 UTC], ["updated_at", 2016-08-19 02:47:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bartolomeu"], ["question_id", 800], ["correct", false], ["created_at", 2016-08-19 02:47:55 UTC], ["updated_at", 2016-08-19 02:47:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Simão"], ["question_id", 800], ["correct", false], ["created_at", 2016-08-19 02:47:55 UTC], ["updated_at", 2016-08-19 02:47:55 UTC]]  (124.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual discípulo ressuscitou Dorcas?"], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 801], ["correct", true], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 801], ["correct", false], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 801], ["correct", false], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 801], ["correct", false], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]]  (125.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual discípulo teve sua sogra curada por Jesus na cidade de Cafarnaum?"], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 802], ["correct", true], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 802], ["correct", false], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 802], ["correct", false], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "André"], ["question_id", 802], ["correct", false], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]]  (126.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual discípulo traiu Jesus?"], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas Iscariotes"], ["question_id", 803], ["correct", true], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Simão"], ["question_id", 803], ["correct", false], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bartolomeu"], ["question_id", 803], ["correct", false], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 803], ["correct", false], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]]  (165.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual dos amigos do rei Davi fingiu estar apoiando Absalão apenas para ficar informado dos acontecimentos?"], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Husai"], ["question_id", 804], ["correct", true], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ziba"], ["question_id", 804], ["correct", false], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abiatar"], ["question_id", 804], ["correct", false], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aitofel"], ["question_id", 804], ["correct", false], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]]  (199.4ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual dos apóstolos de Jesus era denominado Zelote?"], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Simão"], ["question_id", 805], ["correct", true], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas"], ["question_id", 805], ["correct", false], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "André"], ["question_id", 805], ["correct", false], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 805], ["correct", false], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]]  (149.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual dos apóstolos foi mordido por uma cobra, porém não sofreu mal nenhum?"], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 806], ["correct", true], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 806], ["correct", false], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filipe"], ["question_id", 806], ["correct", false], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 806], ["correct", false], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]]  (108.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual dos discípulos de Jesus caminhou sobre a água?"], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 807], ["correct", true], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 807], ["correct", false], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 807], ["correct", false], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "André"], ["question_id", 807], ["correct", false], ["created_at", 2016-08-19 02:47:56 UTC], ["updated_at", 2016-08-19 02:47:56 UTC]]  (200.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual dos discípulos de Jesus cortou uma orelha dos algozes que vieram prender Jesus?"], ["created_at", 2016-08-19 02:47:57 UTC], ["updated_at", 2016-08-19 02:47:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 808], ["correct", true], ["created_at", 2016-08-19 02:47:57 UTC], ["updated_at", 2016-08-19 02:47:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 808], ["correct", false], ["created_at", 2016-08-19 02:47:57 UTC], ["updated_at", 2016-08-19 02:47:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 808], ["correct", false], ["created_at", 2016-08-19 02:47:57 UTC], ["updated_at", 2016-08-19 02:47:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Simeão"], ["question_id", 808], ["correct", false], ["created_at", 2016-08-19 02:47:57 UTC], ["updated_at", 2016-08-19 02:47:57 UTC]]  (133.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual dos filhos de Davi estuprou Tamar, sua meia-irmã?"], ["created_at", 2016-08-19 02:47:57 UTC], ["updated_at", 2016-08-19 02:47:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amnom"], ["question_id", 809], ["correct", true], ["created_at", 2016-08-19 02:47:57 UTC], ["updated_at", 2016-08-19 02:47:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Natã"], ["question_id", 809], ["correct", false], ["created_at", 2016-08-19 02:47:57 UTC], ["updated_at", 2016-08-19 02:47:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sobabe"], ["question_id", 809], ["correct", false], ["created_at", 2016-08-19 02:47:57 UTC], ["updated_at", 2016-08-19 02:47:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adonias"], ["question_id", 809], ["correct", false], ["created_at", 2016-08-19 02:47:57 UTC], ["updated_at", 2016-08-19 02:47:57 UTC]]  (125.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual dos filhos de Davi se rebelou contra o pai e tentou tomar o trono à força?"], ["created_at", 2016-08-19 02:47:57 UTC], ["updated_at", 2016-08-19 02:47:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 810], ["correct", true], ["created_at", 2016-08-19 02:47:57 UTC], ["updated_at", 2016-08-19 02:47:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adonias"], ["question_id", 810], ["correct", false], ["created_at", 2016-08-19 02:47:57 UTC], ["updated_at", 2016-08-19 02:47:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 810], ["correct", false], ["created_at", 2016-08-19 02:47:57 UTC], ["updated_at", 2016-08-19 02:47:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filho de Urias"], ["question_id", 810], ["correct", false], ["created_at", 2016-08-19 02:47:57 UTC], ["updated_at", 2016-08-19 02:47:57 UTC]]  (157.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual dos filhos de Davi se vingou pelo fato de seu irmão Amnom ter estuprado sua própria meia-irmã?"], ["created_at", 2016-08-19 02:47:57 UTC], ["updated_at", 2016-08-19 02:47:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 811], ["correct", true], ["created_at", 2016-08-19 02:47:57 UTC], ["updated_at", 2016-08-19 02:47:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adonias"], ["question_id", 811], ["correct", false], ["created_at", 2016-08-19 02:47:57 UTC], ["updated_at", 2016-08-19 02:47:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 811], ["correct", false], ["created_at", 2016-08-19 02:47:57 UTC], ["updated_at", 2016-08-19 02:47:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sefatias"], ["question_id", 811], ["correct", false], ["created_at", 2016-08-19 02:47:57 UTC], ["updated_at", 2016-08-19 02:47:57 UTC]]  (182.6ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual dos livros abaixo não é considerado com um dos livros dos Evangelhos de Jesus?"], ["created_at", 2016-08-19 02:47:57 UTC], ["updated_at", 2016-08-19 02:47:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Atos dos Apóstolos"], ["question_id", 812], ["correct", true], ["created_at", 2016-08-19 02:47:57 UTC], ["updated_at", 2016-08-19 02:47:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mateus"], ["question_id", 812], ["correct", false], ["created_at", 2016-08-19 02:47:57 UTC], ["updated_at", 2016-08-19 02:47:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marcos"], ["question_id", 812], ["correct", false], ["created_at", 2016-08-19 02:47:57 UTC], ["updated_at", 2016-08-19 02:47:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 812], ["correct", false], ["created_at", 2016-08-19 02:47:57 UTC], ["updated_at", 2016-08-19 02:47:57 UTC]]  (133.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é a forma hebréia do nome do profeta Zacarias?"], ["created_at", 2016-08-19 02:47:57 UTC], ["updated_at", 2016-08-19 02:47:57 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zecarias"], ["question_id", 813], ["correct", true], ["created_at", 2016-08-19 02:47:57 UTC], ["updated_at", 2016-08-19 02:47:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zecarohw"], ["question_id", 813], ["correct", false], ["created_at", 2016-08-19 02:47:57 UTC], ["updated_at", 2016-08-19 02:47:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zucow"], ["question_id", 813], ["correct", false], ["created_at", 2016-08-19 02:47:57 UTC], ["updated_at", 2016-08-19 02:47:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zazias"], ["question_id", 813], ["correct", false], ["created_at", 2016-08-19 02:47:57 UTC], ["updated_at", 2016-08-19 02:47:57 UTC]]  (134.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o 5º mandamento de Deus?"], ["created_at", 2016-08-19 02:47:58 UTC], ["updated_at", 2016-08-19 02:47:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Honra A Teu Pai e A Tua Mãe"], ["question_id", 814], ["correct", true], ["created_at", 2016-08-19 02:47:58 UTC], ["updated_at", 2016-08-19 02:47:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Matarás"], ["question_id", 814], ["correct", false], ["created_at", 2016-08-19 02:47:58 UTC], ["updated_at", 2016-08-19 02:47:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Furtarás"], ["question_id", 814], ["correct", false], ["created_at", 2016-08-19 02:47:58 UTC], ["updated_at", 2016-08-19 02:47:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Mentirás"], ["question_id", 814], ["correct", false], ["created_at", 2016-08-19 02:47:58 UTC], ["updated_at", 2016-08-19 02:47:58 UTC]]  (116.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o 6º mandamento de Deus?"], ["created_at", 2016-08-19 02:47:58 UTC], ["updated_at", 2016-08-19 02:47:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Matarás"], ["question_id", 815], ["correct", true], ["created_at", 2016-08-19 02:47:58 UTC], ["updated_at", 2016-08-19 02:47:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Mentirás"], ["question_id", 815], ["correct", false], ["created_at", 2016-08-19 02:47:58 UTC], ["updated_at", 2016-08-19 02:47:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Furtarás"], ["question_id", 815], ["correct", false], ["created_at", 2016-08-19 02:47:58 UTC], ["updated_at", 2016-08-19 02:47:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Honra A Teu Pai e A Tua Mãe"], ["question_id", 815], ["correct", false], ["created_at", 2016-08-19 02:47:58 UTC], ["updated_at", 2016-08-19 02:47:58 UTC]]  (133.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o 7º mandamento de Deus?"], ["created_at", 2016-08-19 02:47:58 UTC], ["updated_at", 2016-08-19 02:47:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Adulterarás"], ["question_id", 816], ["correct", true], ["created_at", 2016-08-19 02:47:58 UTC], ["updated_at", 2016-08-19 02:47:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Mentirás"], ["question_id", 816], ["correct", false], ["created_at", 2016-08-19 02:47:58 UTC], ["updated_at", 2016-08-19 02:47:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Furtarás"], ["question_id", 816], ["correct", false], ["created_at", 2016-08-19 02:47:58 UTC], ["updated_at", 2016-08-19 02:47:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Matarás"], ["question_id", 816], ["correct", false], ["created_at", 2016-08-19 02:47:58 UTC], ["updated_at", 2016-08-19 02:47:58 UTC]]  (257.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o 8º mandamento de Deus?"], ["created_at", 2016-08-19 02:47:58 UTC], ["updated_at", 2016-08-19 02:47:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Furtarás"], ["question_id", 817], ["correct", true], ["created_at", 2016-08-19 02:47:58 UTC], ["updated_at", 2016-08-19 02:47:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nao Matarás"], ["question_id", 817], ["correct", false], ["created_at", 2016-08-19 02:47:58 UTC], ["updated_at", 2016-08-19 02:47:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Mentirás"], ["question_id", 817], ["correct", false], ["created_at", 2016-08-19 02:47:58 UTC], ["updated_at", 2016-08-19 02:47:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Adulterarás"], ["question_id", 817], ["correct", false], ["created_at", 2016-08-19 02:47:58 UTC], ["updated_at", 2016-08-19 02:47:58 UTC]]  (149.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o 9º mandamento de Deus?"], ["created_at", 2016-08-19 02:47:58 UTC], ["updated_at", 2016-08-19 02:47:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Mentirás"], ["question_id", 818], ["correct", true], ["created_at", 2016-08-19 02:47:58 UTC], ["updated_at", 2016-08-19 02:47:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Matarás"], ["question_id", 818], ["correct", false], ["created_at", 2016-08-19 02:47:58 UTC], ["updated_at", 2016-08-19 02:47:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Furtarás"], ["question_id", 818], ["correct", false], ["created_at", 2016-08-19 02:47:58 UTC], ["updated_at", 2016-08-19 02:47:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Honra A Teu Pai e A Tua Mãe"], ["question_id", 818], ["correct", false], ["created_at", 2016-08-19 02:47:58 UTC], ["updated_at", 2016-08-19 02:47:58 UTC]]  (191.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o grau de parentesco entre Jetro e Zípora?"], ["created_at", 2016-08-19 02:47:58 UTC], ["updated_at", 2016-08-19 02:47:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pai e Filha"], ["question_id", 819], ["correct", true], ["created_at", 2016-08-19 02:47:58 UTC], ["updated_at", 2016-08-19 02:47:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marido e Esposa"], ["question_id", 819], ["correct", false], ["created_at", 2016-08-19 02:47:58 UTC], ["updated_at", 2016-08-19 02:47:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tio e Sobrinha"], ["question_id", 819], ["correct", false], ["created_at", 2016-08-19 02:47:58 UTC], ["updated_at", 2016-08-19 02:47:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Avô e Neta"], ["question_id", 819], ["correct", false], ["created_at", 2016-08-19 02:47:58 UTC], ["updated_at", 2016-08-19 02:47:58 UTC]]  (142.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o grau de parentesco entre José do Egito e Abraão?"], ["created_at", 2016-08-19 02:47:59 UTC], ["updated_at", 2016-08-19 02:47:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Neto e Avô"], ["question_id", 820], ["correct", true], ["created_at", 2016-08-19 02:47:59 UTC], ["updated_at", 2016-08-19 02:47:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sobrinho e Tio"], ["question_id", 820], ["correct", false], ["created_at", 2016-08-19 02:47:59 UTC], ["updated_at", 2016-08-19 02:47:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmãos"], ["question_id", 820], ["correct", false], ["created_at", 2016-08-19 02:47:59 UTC], ["updated_at", 2016-08-19 02:47:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Eram Parentes"], ["question_id", 820], ["correct", false], ["created_at", 2016-08-19 02:47:59 UTC], ["updated_at", 2016-08-19 02:47:59 UTC]]  (142.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o grau de parentesco entre Salomão e Roboão?"], ["created_at", 2016-08-19 02:47:59 UTC], ["updated_at", 2016-08-19 02:47:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pai e Filho"], ["question_id", 821], ["correct", true], ["created_at", 2016-08-19 02:47:59 UTC], ["updated_at", 2016-08-19 02:47:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Avô e Neto"], ["question_id", 821], ["correct", false], ["created_at", 2016-08-19 02:47:59 UTC], ["updated_at", 2016-08-19 02:47:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tio e Sobrinho"], ["question_id", 821], ["correct", false], ["created_at", 2016-08-19 02:47:59 UTC], ["updated_at", 2016-08-19 02:47:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sogro e Genro"], ["question_id", 821], ["correct", false], ["created_at", 2016-08-19 02:47:59 UTC], ["updated_at", 2016-08-19 02:47:59 UTC]]  (125.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o livro mais antigo da Bíblia?"], ["created_at", 2016-08-19 02:47:59 UTC], ["updated_at", 2016-08-19 02:47:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jó"], ["question_id", 822], ["correct", true], ["created_at", 2016-08-19 02:47:59 UTC], ["updated_at", 2016-08-19 02:47:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gênesis"], ["question_id", 822], ["correct", false], ["created_at", 2016-08-19 02:47:59 UTC], ["updated_at", 2016-08-19 02:47:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Êxodo"], ["question_id", 822], ["correct", false], ["created_at", 2016-08-19 02:47:59 UTC], ["updated_at", 2016-08-19 02:47:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Juízes"], ["question_id", 822], ["correct", false], ["created_at", 2016-08-19 02:47:59 UTC], ["updated_at", 2016-08-19 02:47:59 UTC]]  (116.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o maior capítulo da Bíblia?"], ["created_at", 2016-08-19 02:47:59 UTC], ["updated_at", 2016-08-19 02:47:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salmos 119"], ["question_id", 823], ["correct", true], ["created_at", 2016-08-19 02:47:59 UTC], ["updated_at", 2016-08-19 02:47:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salmos 117"], ["question_id", 823], ["correct", false], ["created_at", 2016-08-19 02:47:59 UTC], ["updated_at", 2016-08-19 02:47:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salmos 118"], ["question_id", 823], ["correct", false], ["created_at", 2016-08-19 02:47:59 UTC], ["updated_at", 2016-08-19 02:47:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salmos 120"], ["question_id", 823], ["correct", false], ["created_at", 2016-08-19 02:47:59 UTC], ["updated_at", 2016-08-19 02:47:59 UTC]]  (133.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o maior livro da Bíblia?"], ["created_at", 2016-08-19 02:47:59 UTC], ["updated_at", 2016-08-19 02:47:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salmos"], ["question_id", 824], ["correct", true], ["created_at", 2016-08-19 02:47:59 UTC], ["updated_at", 2016-08-19 02:47:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eclesiastes"], ["question_id", 824], ["correct", false], ["created_at", 2016-08-19 02:47:59 UTC], ["updated_at", 2016-08-19 02:47:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 824], ["correct", false], ["created_at", 2016-08-19 02:47:59 UTC], ["updated_at", 2016-08-19 02:47:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2ª Reis"], ["question_id", 824], ["correct", false], ["created_at", 2016-08-19 02:47:59 UTC], ["updated_at", 2016-08-19 02:47:59 UTC]]  (207.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o maior versículo da Bíblia?"], ["created_at", 2016-08-19 02:47:59 UTC], ["updated_at", 2016-08-19 02:47:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ester 8:9"], ["question_id", 825], ["correct", true], ["created_at", 2016-08-19 02:47:59 UTC], ["updated_at", 2016-08-19 02:47:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Levítico 12:25"], ["question_id", 825], ["correct", false], ["created_at", 2016-08-19 02:47:59 UTC], ["updated_at", 2016-08-19 02:47:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João 11:3"], ["question_id", 825], ["correct", false], ["created_at", 2016-08-19 02:47:59 UTC], ["updated_at", 2016-08-19 02:47:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Números 4:21"], ["question_id", 825], ["correct", false], ["created_at", 2016-08-19 02:47:59 UTC], ["updated_at", 2016-08-19 02:47:59 UTC]]  (141.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o menor capítulo da Bíblia?"], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salmos 117"], ["question_id", 826], ["correct", true], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salmos 118"], ["question_id", 826], ["correct", false], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salmos 119"], ["question_id", 826], ["correct", false], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salmos 120"], ["question_id", 826], ["correct", false], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]]  (125.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o menor lívro da Bíblia?"], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2ª João"], ["question_id", 827], ["correct", true], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1ª João"], ["question_id", 827], ["correct", false], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas"], ["question_id", 827], ["correct", false], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3ª João"], ["question_id", 827], ["correct", false], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]]  (141.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o menor versículo da Bíblia?"], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Êxodo 20:13"], ["question_id", 828], ["correct", true], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gênesis 12:12"], ["question_id", 828], ["correct", false], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mateus 18:21"], ["question_id", 828], ["correct", false], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apocalipse 3:18"], ["question_id", 828], ["correct", false], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]]  (126.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o nome da babá de Rebeca?"], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Débora"], ["question_id", 829], ["correct", true], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 829], ["correct", false], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria"], ["question_id", 829], ["correct", false], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isabel"], ["question_id", 829], ["correct", false], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]]  (149.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o nome da cobertura da Arca da Aliança?"], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Propiciatório"], ["question_id", 830], ["correct", true], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Altar de Bronze"], ["question_id", 830], ["correct", false], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Água-benta"], ["question_id", 830], ["correct", false], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lugar Santíssimo"], ["question_id", 830], ["correct", false], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]]  (124.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o nome da primeira mulher?"], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eva"], ["question_id", 831], ["correct", true], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]]  (53.6ms) SELECT COUNT(*) FROM "quizzes_questions" SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 831], ["correct", false], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria"], ["question_id", 831], ["correct", false], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sara"], ["question_id", 831], ["correct", false], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]]  (184.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o nome do anjo que avisou Maria de que ela iria ser a mãe de Jesus?"], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gabriel"], ["question_id", 832], ["correct", true], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miguel"], ["question_id", 832], ["correct", false], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Darien"], ["question_id", 832], ["correct", false], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dabien"], ["question_id", 832], ["correct", false], ["created_at", 2016-08-19 02:48:00 UTC], ["updated_at", 2016-08-19 02:48:00 UTC]]  (191.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o nome do filho de Ana que foi entregue ao Sumo Sacerdote Eli para ser cuidado por este?"], ["created_at", 2016-08-19 02:48:01 UTC], ["updated_at", 2016-08-19 02:48:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel"], ["question_id", 833], ["correct", true], ["created_at", 2016-08-19 02:48:01 UTC], ["updated_at", 2016-08-19 02:48:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 833], ["correct", false], ["created_at", 2016-08-19 02:48:01 UTC], ["updated_at", 2016-08-19 02:48:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sami"], ["question_id", 833], ["correct", false], ["created_at", 2016-08-19 02:48:01 UTC], ["updated_at", 2016-08-19 02:48:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obadias"], ["question_id", 833], ["correct", false], ["created_at", 2016-08-19 02:48:01 UTC], ["updated_at", 2016-08-19 02:48:01 UTC]]  (149.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o nome do filho de Ana, que foi dedicado ao serviço de Deus?"], ["created_at", 2016-08-19 02:48:01 UTC], ["updated_at", 2016-08-19 02:48:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel"], ["question_id", 834], ["correct", true], ["created_at", 2016-08-19 02:48:01 UTC], ["updated_at", 2016-08-19 02:48:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eli"], ["question_id", 834], ["correct", false], ["created_at", 2016-08-19 02:48:01 UTC], ["updated_at", 2016-08-19 02:48:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 834], ["correct", false], ["created_at", 2016-08-19 02:48:01 UTC], ["updated_at", 2016-08-19 02:48:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Potifar"], ["question_id", 834], ["correct", false], ["created_at", 2016-08-19 02:48:01 UTC], ["updated_at", 2016-08-19 02:48:01 UTC]]  (132.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o nome do temanita que repreendeu a Jó?"], ["created_at", 2016-08-19 02:48:01 UTC], ["updated_at", 2016-08-19 02:48:01 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elifaz"], ["question_id", 835], ["correct", true], ["created_at", 2016-08-19 02:48:01 UTC], ["updated_at", 2016-08-19 02:48:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Berseba"], ["question_id", 835], ["correct", false], ["created_at", 2016-08-19 02:48:01 UTC], ["updated_at", 2016-08-19 02:48:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ofel"], ["question_id", 835], ["correct", false], ["created_at", 2016-08-19 02:48:01 UTC], ["updated_at", 2016-08-19 02:48:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uzi"], ["question_id", 835], ["correct", false], ["created_at", 2016-08-19 02:48:01 UTC], ["updated_at", 2016-08-19 02:48:01 UTC]]  (274.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o nome do vale próximo a Jerusalém onde o povo sacrificava suas crianças ao deus Moloque?"], ["created_at", 2016-08-19 02:48:01 UTC], ["updated_at", 2016-08-19 02:48:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tofete"], ["question_id", 836], ["correct", true], ["created_at", 2016-08-19 02:48:01 UTC], ["updated_at", 2016-08-19 02:48:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cedron"], ["question_id", 836], ["correct", false], ["created_at", 2016-08-19 02:48:01 UTC], ["updated_at", 2016-08-19 02:48:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jizreel"], ["question_id", 836], ["correct", false], ["created_at", 2016-08-19 02:48:01 UTC], ["updated_at", 2016-08-19 02:48:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hebrom"], ["question_id", 836], ["correct", false], ["created_at", 2016-08-19 02:48:01 UTC], ["updated_at", 2016-08-19 02:48:01 UTC]]  (149.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o salmo onde todos os versos terminam com o estribilho \"Porque a Sua misericórdia dura para sempre.\"?\n1,"], ["created_at", 2016-08-19 02:48:01 UTC], ["updated_at", 2016-08-19 02:48:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "136"], ["question_id", 837], ["correct", true], ["created_at", 2016-08-19 02:48:01 UTC], ["updated_at", 2016-08-19 02:48:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "150"], ["question_id", 837], ["correct", false], ["created_at", 2016-08-19 02:48:01 UTC], ["updated_at", 2016-08-19 02:48:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "119"], ["question_id", 837], ["correct", false], ["created_at", 2016-08-19 02:48:01 UTC], ["updated_at", 2016-08-19 02:48:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "51"], ["question_id", 837], ["correct", false], ["created_at", 2016-08-19 02:48:01 UTC], ["updated_at", 2016-08-19 02:48:01 UTC]]  (125.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o significado do nome de Salomão?"], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pacífico"], ["question_id", 838], ["correct", true], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Conquistador"], ["question_id", 838], ["correct", false], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sábio"], ["question_id", 838], ["correct", false], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Humilde"], ["question_id", 838], ["correct", false], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]]  (157.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o significado do nome do Sumo Sacerdote Eli?"], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Altíssimo, Sumo"], ["question_id", 839], ["correct", true], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Magnificiente"], ["question_id", 839], ["correct", false], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Santo"], ["question_id", 839], ["correct", false], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Separado"], ["question_id", 839], ["correct", false], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]]  (166.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a alimentação básica de João Batista no deserto?"], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mel, Frutas e Gafanhotos"], ["question_id", 840], ["correct", true], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Água"], ["question_id", 840], ["correct", false], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pão e Leite"], ["question_id", 840], ["correct", false], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assado"], ["question_id", 840], ["correct", false], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]]  (124.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a altura aproximada do gigante Golias morto por Davi?"], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "9 Pés de Altura"], ["question_id", 841], ["correct", true], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7 Pés de Altura"], ["question_id", 841], ["correct", false], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "19 Pés de Altura"], ["question_id", 841], ["correct", false], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "17 Pés de Altura"], ["question_id", 841], ["correct", false], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]]  (150.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a altura da arca de Noé?"], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "13 Mts"], ["question_id", 842], ["correct", true], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "9 Mts"], ["question_id", 842], ["correct", false], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "25 Mts"], ["question_id", 842], ["correct", false], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "18 Mts"], ["question_id", 842], ["correct", false], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]]  (183.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a altura da estátua de ouro construída pelo rei Nabucodonosor?"], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "90 Mts"], ["question_id", 843], ["correct", true], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10 Mts"], ["question_id", 843], ["correct", false], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "35 Mts"], ["question_id", 843], ["correct", false], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "65 Mts"], ["question_id", 843], ["correct", false], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]]  (126.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a capital do reino de Israel?"], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 844], ["correct", true], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Megido"], ["question_id", 844], ["correct", false], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jizreel"], ["question_id", 844], ["correct", false], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hebrom"], ["question_id", 844], ["correct", false], ["created_at", 2016-08-19 02:48:02 UTC], ["updated_at", 2016-08-19 02:48:02 UTC]]  (117.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a cidade natal do discípulo Pedro?"], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cafarnaum"], ["question_id", 845], ["correct", true], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Betsaida"], ["question_id", 845], ["correct", false], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hebrom"], ["question_id", 845], ["correct", false], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 845], ["correct", false], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]]  (116.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a cidade que Deus mandou Jonas advertir sobre seus pecados?"], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nínive"], ["question_id", 846], ["correct", true], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 846], ["correct", false], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Patmos"], ["question_id", 846], ["correct", false], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Roma"], ["question_id", 846], ["correct", false], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]]  (125.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a cor da corda que Raabe fez descer quando os israelitas invadiram a cidade de Jericó?"], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Púrpura"], ["question_id", 847], ["correct", true], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Preta"], ["question_id", 847], ["correct", false], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Branca"], ["question_id", 847], ["correct", false], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marrom"], ["question_id", 847], ["correct", false], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]]  (149.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a distância aproximada entre a cidade de Emaús e Jerusalém?"], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7 Milhas"], ["question_id", 848], ["correct", true], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Milha"], ["question_id", 848], ["correct", false], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12 Milhas"], ["question_id", 848], ["correct", false], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4 Milhas"], ["question_id", 848], ["correct", false], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]]  (149.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a enfermidade que o comandante Naamã era acometido?"], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lepra"], ["question_id", 849], ["correct", true], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tuberculose"], ["question_id", 849], ["correct", false], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cegueira"], ["question_id", 849], ["correct", false], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mal de Parkinson"], ["question_id", 849], ["correct", false], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]]  (108.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a enfermidade que o sacerdote deveria testemunhar, para definir se a pessoa deveria ou não ser apartada da família?"], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hanseníase"], ["question_id", 850], ["correct", true], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tuberculose"], ["question_id", 850], ["correct", false], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Catapora"], ["question_id", 850], ["correct", false], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rubéola"], ["question_id", 850], ["correct", false], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]]  (142.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a finalidade da moeda que Pedro encontrou dentro da boca de um peixe?"], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pagar Imposto"], ["question_id", 851], ["correct", true], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Comprar Alimento"], ["question_id", 851], ["correct", false], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ajudar Os Necessitados"], ["question_id", 851], ["correct", false], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jogá-la Aos Porcos"], ["question_id", 851], ["correct", false], ["created_at", 2016-08-19 02:48:03 UTC], ["updated_at", 2016-08-19 02:48:03 UTC]]  (126.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a idade apriximada de Jesus quando começou a pregar seu ministério publicamente?"], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "30 Anos"], ["question_id", 852], ["correct", true], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "29 Anos"], ["question_id", 852], ["correct", false], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "31 Anos"], ["question_id", 852], ["correct", false], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "28 Anos"], ["question_id", 852], ["correct", false], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]]  (134.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a idade de Abraão quando Isaque nasceu?"], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "100 Anos"], ["question_id", 853], ["correct", true], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "95 Anos"], ["question_id", 853], ["correct", false], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "105 Anos"], ["question_id", 853], ["correct", false], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "125 Anos"], ["question_id", 853], ["correct", false], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]]  (134.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a idade de Ezequias quando este se tornou rei?"], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "25 Anos"], ["question_id", 854], ["correct", true], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "35 Anos"], ["question_id", 854], ["correct", false], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "45 Anos"], ["question_id", 854], ["correct", false], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "15 Anos"], ["question_id", 854], ["correct", false], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]]  (125.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a idade de Jesus quando seus pais se perderam do mesmo, e o encontraram ensinando no Templo?"], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12 Anos"], ["question_id", 855], ["correct", true], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "14 Anos"], ["question_id", 855], ["correct", false], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "16 Anos"], ["question_id", 855], ["correct", false], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10 Anos"], ["question_id", 855], ["correct", false], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]]  (125.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a idade de José quando este recebeu do Faraó um anel pelo fato de ter interpretados os seus sonhos?"], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "30 Anos"], ["question_id", 856], ["correct", true], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "15 Anos"], ["question_id", 856], ["correct", false], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "65 Anos"], ["question_id", 856], ["correct", false], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "42 Anos"], ["question_id", 856], ["correct", false], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]]  (124.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a idade de Moisés quando o mesmo matou um egípcio pelo fato deste estar surrando um hebreu?"], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "40 Anos"], ["question_id", 857], ["correct", true], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "35 Anos"], ["question_id", 857], ["correct", false], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "20 Anos"], ["question_id", 857], ["correct", false], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "65 Anos"], ["question_id", 857], ["correct", false], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]]  (125.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a idade de Noé quando a arca foi concluída?"], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "600 Anos"], ["question_id", 858], ["correct", true], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "120 Anos"], ["question_id", 858], ["correct", false], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "430 Anos"], ["question_id", 858], ["correct", false], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "230 Anos"], ["question_id", 858], ["correct", false], ["created_at", 2016-08-19 02:48:04 UTC], ["updated_at", 2016-08-19 02:48:04 UTC]]  (233.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a idade de Sara quando Isaque nasceu?"], ["created_at", 2016-08-19 02:48:05 UTC], ["updated_at", 2016-08-19 02:48:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "90 Anos"], ["question_id", 859], ["correct", true], ["created_at", 2016-08-19 02:48:05 UTC], ["updated_at", 2016-08-19 02:48:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "80 Anos"], ["question_id", 859], ["correct", false], ["created_at", 2016-08-19 02:48:05 UTC], ["updated_at", 2016-08-19 02:48:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "105 Anos"], ["question_id", 859], ["correct", false], ["created_at", 2016-08-19 02:48:05 UTC], ["updated_at", 2016-08-19 02:48:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "95 Anos"], ["question_id", 859], ["correct", false], ["created_at", 2016-08-19 02:48:05 UTC], ["updated_at", 2016-08-19 02:48:05 UTC]]  (251.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a nacionalidade da mulher que estava tirando água do poço e deu a Jesus para beber?"], ["created_at", 2016-08-19 02:48:05 UTC], ["updated_at", 2016-08-19 02:48:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaritana"], ["question_id", 860], ["correct", true], ["created_at", 2016-08-19 02:48:05 UTC], ["updated_at", 2016-08-19 02:48:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônica"], ["question_id", 860], ["correct", false], ["created_at", 2016-08-19 02:48:05 UTC], ["updated_at", 2016-08-19 02:48:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenícia"], ["question_id", 860], ["correct", false], ["created_at", 2016-08-19 02:48:05 UTC], ["updated_at", 2016-08-19 02:48:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egípcia"], ["question_id", 860], ["correct", false], ["created_at", 2016-08-19 02:48:05 UTC], ["updated_at", 2016-08-19 02:48:05 UTC]]  (142.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a nacionalidade de 11 dos 12 apóstolos de Jesus?\n1,"], ["created_at", 2016-08-19 02:48:05 UTC], ["updated_at", 2016-08-19 02:48:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Galileu"], ["question_id", 861], ["correct", true], ["created_at", 2016-08-19 02:48:05 UTC], ["updated_at", 2016-08-19 02:48:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nazireu"], ["question_id", 861], ["correct", false], ["created_at", 2016-08-19 02:48:05 UTC], ["updated_at", 2016-08-19 02:48:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Romano"], ["question_id", 861], ["correct", false], ["created_at", 2016-08-19 02:48:05 UTC], ["updated_at", 2016-08-19 02:48:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nazareno"], ["question_id", 861], ["correct", false], ["created_at", 2016-08-19 02:48:05 UTC], ["updated_at", 2016-08-19 02:48:05 UTC]]  (124.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a nacionalidade de Dalila, esposa de Sansão?"], ["created_at", 2016-08-19 02:48:05 UTC], ["updated_at", 2016-08-19 02:48:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filistéia"], ["question_id", 862], ["correct", true], ["created_at", 2016-08-19 02:48:05 UTC], ["updated_at", 2016-08-19 02:48:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cananéia"], ["question_id", 862], ["correct", false], ["created_at", 2016-08-19 02:48:05 UTC], ["updated_at", 2016-08-19 02:48:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egípcia"], ["question_id", 862], ["correct", false], ["created_at", 2016-08-19 02:48:05 UTC], ["updated_at", 2016-08-19 02:48:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenícia"], ["question_id", 862], ["correct", false], ["created_at", 2016-08-19 02:48:05 UTC], ["updated_at", 2016-08-19 02:48:05 UTC]]  (132.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a nacionalidade de Ebede-Meleque, o eunuco que havia salvo o profeta Jeremias?"], ["created_at", 2016-08-19 02:48:05 UTC], ["updated_at", 2016-08-19 02:48:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Etíope"], ["question_id", 863], ["correct", true], ["created_at", 2016-08-19 02:48:05 UTC], ["updated_at", 2016-08-19 02:48:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenício"], ["question_id", 863], ["correct", false], ["created_at", 2016-08-19 02:48:05 UTC], ["updated_at", 2016-08-19 02:48:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Grego"], ["question_id", 863], ["correct", false], ["created_at", 2016-08-19 02:48:05 UTC], ["updated_at", 2016-08-19 02:48:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônico"], ["question_id", 863], ["correct", false], ["created_at", 2016-08-19 02:48:05 UTC], ["updated_at", 2016-08-19 02:48:05 UTC]]  (149.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a nacionalidade do gigante Golias morto por Davi?"], ["created_at", 2016-08-19 02:48:05 UTC], ["updated_at", 2016-08-19 02:48:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filisteu"], ["question_id", 864], ["correct", true], ["created_at", 2016-08-19 02:48:05 UTC], ["updated_at", 2016-08-19 02:48:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amorreu"], ["question_id", 864], ["correct", false], ["created_at", 2016-08-19 02:48:05 UTC], ["updated_at", 2016-08-19 02:48:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fariseu"], ["question_id", 864], ["correct", false], ["created_at", 2016-08-19 02:48:05 UTC], ["updated_at", 2016-08-19 02:48:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egípcio"], ["question_id", 864], ["correct", false], ["created_at", 2016-08-19 02:48:06 UTC], ["updated_at", 2016-08-19 02:48:06 UTC]]  (125.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a profissão de André antes de se tornar apóstolo de Jesus?"], ["created_at", 2016-08-19 02:48:06 UTC], ["updated_at", 2016-08-19 02:48:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pescador"], ["question_id", 865], ["correct", true], ["created_at", 2016-08-19 02:48:06 UTC], ["updated_at", 2016-08-19 02:48:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pintor"], ["question_id", 865], ["correct", false], ["created_at", 2016-08-19 02:48:06 UTC], ["updated_at", 2016-08-19 02:48:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marceneiro"], ["question_id", 865], ["correct", false], ["created_at", 2016-08-19 02:48:06 UTC], ["updated_at", 2016-08-19 02:48:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Construtor Naval"], ["question_id", 865], ["correct", false], ["created_at", 2016-08-19 02:48:06 UTC], ["updated_at", 2016-08-19 02:48:06 UTC]]  (107.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a profissão de Demétrio que havia instigado uma revolta entre os próprios discípulos?"], ["created_at", 2016-08-19 02:48:06 UTC], ["updated_at", 2016-08-19 02:48:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ourives"], ["question_id", 866], ["correct", true], ["created_at", 2016-08-19 02:48:06 UTC], ["updated_at", 2016-08-19 02:48:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marceneiro"], ["question_id", 866], ["correct", false], ["created_at", 2016-08-19 02:48:06 UTC], ["updated_at", 2016-08-19 02:48:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carpinteiro"], ["question_id", 866], ["correct", false], ["created_at", 2016-08-19 02:48:06 UTC], ["updated_at", 2016-08-19 02:48:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cobrador de Imposto"], ["question_id", 866], ["correct", false], ["created_at", 2016-08-19 02:48:06 UTC], ["updated_at", 2016-08-19 02:48:06 UTC]]  (324.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a profissão de José, pai de Jesus?"], ["created_at", 2016-08-19 02:48:06 UTC], ["updated_at", 2016-08-19 02:48:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carpinteiro"], ["question_id", 867], ["correct", true], ["created_at", 2016-08-19 02:48:06 UTC], ["updated_at", 2016-08-19 02:48:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marceneiro"], ["question_id", 867], ["correct", false], ["created_at", 2016-08-19 02:48:06 UTC], ["updated_at", 2016-08-19 02:48:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pintor"], ["question_id", 867], ["correct", false], ["created_at", 2016-08-19 02:48:06 UTC], ["updated_at", 2016-08-19 02:48:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pescador"], ["question_id", 867], ["correct", false], ["created_at", 2016-08-19 02:48:06 UTC], ["updated_at", 2016-08-19 02:48:06 UTC]]  (134.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a profissão de Mateus, um dos apóstolos de Jesus?"], ["created_at", 2016-08-19 02:48:06 UTC], ["updated_at", 2016-08-19 02:48:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Coletor de Impostos"], ["question_id", 868], ["correct", true], ["created_at", 2016-08-19 02:48:06 UTC], ["updated_at", 2016-08-19 02:48:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pescador"], ["question_id", 868], ["correct", false], ["created_at", 2016-08-19 02:48:06 UTC], ["updated_at", 2016-08-19 02:48:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carpinteiro"], ["question_id", 868], ["correct", false], ["created_at", 2016-08-19 02:48:06 UTC], ["updated_at", 2016-08-19 02:48:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedreiro"], ["question_id", 868], ["correct", false], ["created_at", 2016-08-19 02:48:06 UTC], ["updated_at", 2016-08-19 02:48:06 UTC]]  (192.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a profissão de Pedro antes de se tornar apóstolo de Jesus?"], ["created_at", 2016-08-19 02:48:06 UTC], ["updated_at", 2016-08-19 02:48:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pescador"], ["question_id", 869], ["correct", true], ["created_at", 2016-08-19 02:48:06 UTC], ["updated_at", 2016-08-19 02:48:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carpinteiro"], ["question_id", 869], ["correct", false], ["created_at", 2016-08-19 02:48:06 UTC], ["updated_at", 2016-08-19 02:48:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oleiro"], ["question_id", 869], ["correct", false], ["created_at", 2016-08-19 02:48:06 UTC], ["updated_at", 2016-08-19 02:48:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marceneiro"], ["question_id", 869], ["correct", false], ["created_at", 2016-08-19 02:48:06 UTC], ["updated_at", 2016-08-19 02:48:06 UTC]]  (141.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a profissão de Raquel?"], ["created_at", 2016-08-19 02:48:07 UTC], ["updated_at", 2016-08-19 02:48:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pastora de Ovelhas"], ["question_id", 870], ["correct", true], ["created_at", 2016-08-19 02:48:07 UTC], ["updated_at", 2016-08-19 02:48:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Padeira"], ["question_id", 870], ["correct", false], ["created_at", 2016-08-19 02:48:07 UTC], ["updated_at", 2016-08-19 02:48:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pescadora"], ["question_id", 870], ["correct", false], ["created_at", 2016-08-19 02:48:07 UTC], ["updated_at", 2016-08-19 02:48:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Lar"], ["question_id", 870], ["correct", false], ["created_at", 2016-08-19 02:48:07 UTC], ["updated_at", 2016-08-19 02:48:07 UTC]]  (176.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a profissão de Zaqueu?"], ["created_at", 2016-08-19 02:48:07 UTC], ["updated_at", 2016-08-19 02:48:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Coletor de Impostos"], ["question_id", 871], ["correct", true], ["created_at", 2016-08-19 02:48:07 UTC], ["updated_at", 2016-08-19 02:48:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escriba"], ["question_id", 871], ["correct", false], ["created_at", 2016-08-19 02:48:07 UTC], ["updated_at", 2016-08-19 02:48:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marceneiro"], ["question_id", 871], ["correct", false], ["created_at", 2016-08-19 02:48:07 UTC], ["updated_at", 2016-08-19 02:48:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pescador"], ["question_id", 871], ["correct", false], ["created_at", 2016-08-19 02:48:07 UTC], ["updated_at", 2016-08-19 02:48:07 UTC]]  (166.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a punição imposta pelo rei Dario caso alguém não obedecesse ao decreto por ele assinado?"], ["created_at", 2016-08-19 02:48:07 UTC], ["updated_at", 2016-08-19 02:48:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seria Jogado Na Cova dos Leões"], ["question_id", 872], ["correct", true], ["created_at", 2016-08-19 02:48:07 UTC], ["updated_at", 2016-08-19 02:48:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pagaria Pesada Multa"], ["question_id", 872], ["correct", false], ["created_at", 2016-08-19 02:48:07 UTC], ["updated_at", 2016-08-19 02:48:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seria Preso"], ["question_id", 872], ["correct", false], ["created_at", 2016-08-19 02:48:07 UTC], ["updated_at", 2016-08-19 02:48:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seria Deportado do País"], ["question_id", 872], ["correct", false], ["created_at", 2016-08-19 02:48:07 UTC], ["updated_at", 2016-08-19 02:48:07 UTC]]  (159.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a punição imposta pelo rei Nabucodonosor caso as pessoas a quem ele chamou não decifrassem os seus sonhos?"], ["created_at", 2016-08-19 02:48:07 UTC], ["updated_at", 2016-08-19 02:48:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seriam Mortas"], ["question_id", 873], ["correct", true], ["created_at", 2016-08-19 02:48:07 UTC], ["updated_at", 2016-08-19 02:48:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seriam Presas"], ["question_id", 873], ["correct", false], ["created_at", 2016-08-19 02:48:07 UTC], ["updated_at", 2016-08-19 02:48:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seriam Destituídas de Suas Profissões"], ["question_id", 873], ["correct", false], ["created_at", 2016-08-19 02:48:07 UTC], ["updated_at", 2016-08-19 02:48:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Passariam A Ser Escravos"], ["question_id", 873], ["correct", false], ["created_at", 2016-08-19 02:48:07 UTC], ["updated_at", 2016-08-19 02:48:07 UTC]]  (134.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a sentença do anjo da morte que iria passar sobre o Egito?"], ["created_at", 2016-08-19 02:48:07 UTC], ["updated_at", 2016-08-19 02:48:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Morreria O Filho Primogênito de Cada Lar"], ["question_id", 874], ["correct", true], ["created_at", 2016-08-19 02:48:07 UTC], ["updated_at", 2016-08-19 02:48:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Morreria Toda A Criação Doméstica dos Egípcios"], ["question_id", 874], ["correct", false], ["created_at", 2016-08-19 02:48:07 UTC], ["updated_at", 2016-08-19 02:48:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Morreria Toda A Família Real do Faraó, Exceto Ele"], ["question_id", 874], ["correct", false], ["created_at", 2016-08-19 02:48:07 UTC], ["updated_at", 2016-08-19 02:48:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Morreriam As Pessoas Que Estivessem Fora de Casa"], ["question_id", 874], ["correct", false], ["created_at", 2016-08-19 02:48:07 UTC], ["updated_at", 2016-08-19 02:48:07 UTC]]  (149.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a tarefa principal de João Batista?"], ["created_at", 2016-08-19 02:48:07 UTC], ["updated_at", 2016-08-19 02:48:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anunciar A Vinda do Messias"], ["question_id", 875], ["correct", true], ["created_at", 2016-08-19 02:48:07 UTC], ["updated_at", 2016-08-19 02:48:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anunciar O Fim dos Tempos"], ["question_id", 875], ["correct", false], ["created_at", 2016-08-19 02:48:07 UTC], ["updated_at", 2016-08-19 02:48:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anunciar A Vinda dos Cavaleiros do Apocalipse"], ["question_id", 875], ["correct", false], ["created_at", 2016-08-19 02:48:07 UTC], ["updated_at", 2016-08-19 02:48:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anunciar A Proximidade de Calamidades"], ["question_id", 875], ["correct", false], ["created_at", 2016-08-19 02:48:07 UTC], ["updated_at", 2016-08-19 02:48:07 UTC]]  (191.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o antigo nome de Abraão?"], ["created_at", 2016-08-19 02:48:08 UTC], ["updated_at", 2016-08-19 02:48:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abrão"], ["question_id", 876], ["correct", true], ["created_at", 2016-08-19 02:48:08 UTC], ["updated_at", 2016-08-19 02:48:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 876], ["correct", false], ["created_at", 2016-08-19 02:48:08 UTC], ["updated_at", 2016-08-19 02:48:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 876], ["correct", false], ["created_at", 2016-08-19 02:48:08 UTC], ["updated_at", 2016-08-19 02:48:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cão"], ["question_id", 876], ["correct", false], ["created_at", 2016-08-19 02:48:08 UTC], ["updated_at", 2016-08-19 02:48:08 UTC]]  (124.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o antigo nome de Israel?"], ["created_at", 2016-08-19 02:48:08 UTC], ["updated_at", 2016-08-19 02:48:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 877], ["correct", true], ["created_at", 2016-08-19 02:48:08 UTC], ["updated_at", 2016-08-19 02:48:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 877], ["correct", false], ["created_at", 2016-08-19 02:48:08 UTC], ["updated_at", 2016-08-19 02:48:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel"], ["question_id", 877], ["correct", false], ["created_at", 2016-08-19 02:48:08 UTC], ["updated_at", 2016-08-19 02:48:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 877], ["correct", false], ["created_at", 2016-08-19 02:48:08 UTC], ["updated_at", 2016-08-19 02:48:08 UTC]]  (141.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o antigo nome de Paulo?"], ["created_at", 2016-08-19 02:48:08 UTC], ["updated_at", 2016-08-19 02:48:08 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saulo"], ["question_id", 878], ["correct", true], ["created_at", 2016-08-19 02:48:08 UTC], ["updated_at", 2016-08-19 02:48:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ananias"], ["question_id", 878], ["correct", false], ["created_at", 2016-08-19 02:48:08 UTC], ["updated_at", 2016-08-19 02:48:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sebastião"], ["question_id", 878], ["correct", false], ["created_at", 2016-08-19 02:48:08 UTC], ["updated_at", 2016-08-19 02:48:08 UTC]] SQL (0.7ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sofonias"], ["question_id", 878], ["correct", false], ["created_at", 2016-08-19 02:48:08 UTC], ["updated_at", 2016-08-19 02:48:08 UTC]]  (130.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o apóstolo de Jesus responsável pelas finanças?"], ["created_at", 2016-08-19 02:48:08 UTC], ["updated_at", 2016-08-19 02:48:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas"], ["question_id", 879], ["correct", true], ["created_at", 2016-08-19 02:48:08 UTC], ["updated_at", 2016-08-19 02:48:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tomé"], ["question_id", 879], ["correct", false], ["created_at", 2016-08-19 02:48:08 UTC], ["updated_at", 2016-08-19 02:48:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 879], ["correct", false], ["created_at", 2016-08-19 02:48:08 UTC], ["updated_at", 2016-08-19 02:48:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 879], ["correct", false], ["created_at", 2016-08-19 02:48:08 UTC], ["updated_at", 2016-08-19 02:48:08 UTC]]  (137.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o comprimento da arca de Noé?"], ["created_at", 2016-08-19 02:48:08 UTC], ["updated_at", 2016-08-19 02:48:08 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "135 Mts"], ["question_id", 880], ["correct", true], ["created_at", 2016-08-19 02:48:08 UTC], ["updated_at", 2016-08-19 02:48:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "115 Mts"], ["question_id", 880], ["correct", false], ["created_at", 2016-08-19 02:48:08 UTC], ["updated_at", 2016-08-19 02:48:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "95 Mts"], ["question_id", 880], ["correct", false], ["created_at", 2016-08-19 02:48:08 UTC], ["updated_at", 2016-08-19 02:48:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "195 Mts"], ["question_id", 880], ["correct", false], ["created_at", 2016-08-19 02:48:08 UTC], ["updated_at", 2016-08-19 02:48:08 UTC]]  (190.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o discípulo mais jovem de Jesus?"], ["created_at", 2016-08-19 02:48:08 UTC], ["updated_at", 2016-08-19 02:48:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 881], ["correct", true], ["created_at", 2016-08-19 02:48:08 UTC], ["updated_at", 2016-08-19 02:48:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mateus"], ["question_id", 881], ["correct", false], ["created_at", 2016-08-19 02:48:08 UTC], ["updated_at", 2016-08-19 02:48:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 881], ["correct", false], ["created_at", 2016-08-19 02:48:08 UTC], ["updated_at", 2016-08-19 02:48:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 881], ["correct", false], ["created_at", 2016-08-19 02:48:08 UTC], ["updated_at", 2016-08-19 02:48:08 UTC]]  (124.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o filho de Salomão que cultuava ídolos?"], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Roboão"], ["question_id", 882], ["correct", true], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Félix"], ["question_id", 882], ["correct", false], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maacá"], ["question_id", 882], ["correct", false], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeroboão"], ["question_id", 882], ["correct", false], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]]  (126.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco de Jetro para com Moisés?"], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sogro"], ["question_id", 883], ["correct", true], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Avô"], ["question_id", 883], ["correct", false], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pai"], ["question_id", 883], ["correct", false], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cunhado"], ["question_id", 883], ["correct", false], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]]  (124.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco de Zípora para com Moisés?"], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esposa"], ["question_id", 884], ["correct", true], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mãe"], ["question_id", 884], ["correct", false], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tia"], ["question_id", 884], ["correct", false], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmã"], ["question_id", 884], ["correct", false], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]]  (125.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco entre Abraão e Harã?"], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmãos"], ["question_id", 885], ["correct", true], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tio e Sobrinho"], ["question_id", 885], ["correct", false], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Primos"], ["question_id", 885], ["correct", false], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sogro e Genro"], ["question_id", 885], ["correct", false], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]]  (183.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco entre Absalão e Amnon?"], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmãos"], ["question_id", 886], ["correct", true], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tio e Sobrinho"], ["question_id", 886], ["correct", false], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pai e Filho"], ["question_id", 886], ["correct", false], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Avô e Neto"], ["question_id", 886], ["correct", false], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]]  (192.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco entre Arão e Anrão?"], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filho e Pai"], ["question_id", 887], ["correct", true], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pai e Filho"], ["question_id", 887], ["correct", false], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Neto e Avô"], ["question_id", 887], ["correct", false], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bisavô e Bisneto"], ["question_id", 887], ["correct", false], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]]  (125.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco entre Elcana e Jeroão?"], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filho e Pai"], ["question_id", 888], ["correct", true], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Avô e Neto"], ["question_id", 888], ["correct", false], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmãos"], ["question_id", 888], ["correct", false], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sobrinho e Tio"], ["question_id", 888], ["correct", false], ["created_at", 2016-08-19 02:48:09 UTC], ["updated_at", 2016-08-19 02:48:09 UTC]]  (342.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco entre Herodes, o Grande, e Herodes Agripa?"], ["created_at", 2016-08-19 02:48:10 UTC], ["updated_at", 2016-08-19 02:48:10 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Avô e Neto"], ["question_id", 889], ["correct", true], ["created_at", 2016-08-19 02:48:10 UTC], ["updated_at", 2016-08-19 02:48:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tio e Sobrinho"], ["question_id", 889], ["correct", false], ["created_at", 2016-08-19 02:48:10 UTC], ["updated_at", 2016-08-19 02:48:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pai e Filho"], ["question_id", 889], ["correct", false], ["created_at", 2016-08-19 02:48:10 UTC], ["updated_at", 2016-08-19 02:48:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Padrasto e Enteado"], ["question_id", 889], ["correct", false], ["created_at", 2016-08-19 02:48:10 UTC], ["updated_at", 2016-08-19 02:48:10 UTC]]  (124.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco entre Jacó e Maria, mãe de Jesus?"], ["created_at", 2016-08-19 02:48:10 UTC], ["updated_at", 2016-08-19 02:48:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sogro e Nora"], ["question_id", 890], ["correct", true], ["created_at", 2016-08-19 02:48:10 UTC], ["updated_at", 2016-08-19 02:48:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tio e Sobrinha"], ["question_id", 890], ["correct", false], ["created_at", 2016-08-19 02:48:10 UTC], ["updated_at", 2016-08-19 02:48:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pai e Filha"], ["question_id", 890], ["correct", false], ["created_at", 2016-08-19 02:48:10 UTC], ["updated_at", 2016-08-19 02:48:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmãos"], ["question_id", 890], ["correct", false], ["created_at", 2016-08-19 02:48:10 UTC], ["updated_at", 2016-08-19 02:48:10 UTC]]  (109.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco entre Jesus e Jacó?"], ["created_at", 2016-08-19 02:48:10 UTC], ["updated_at", 2016-08-19 02:48:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Neto e Avô"], ["question_id", 891], ["correct", true], ["created_at", 2016-08-19 02:48:10 UTC], ["updated_at", 2016-08-19 02:48:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmãos"], ["question_id", 891], ["correct", false], ["created_at", 2016-08-19 02:48:10 UTC], ["updated_at", 2016-08-19 02:48:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tio e Sobrinho"], ["question_id", 891], ["correct", false], ["created_at", 2016-08-19 02:48:10 UTC], ["updated_at", 2016-08-19 02:48:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Eram Parentes"], ["question_id", 891], ["correct", false], ["created_at", 2016-08-19 02:48:10 UTC], ["updated_at", 2016-08-19 02:48:10 UTC]]  (124.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco entre Joás e Gideão?"], ["created_at", 2016-08-19 02:48:10 UTC], ["updated_at", 2016-08-19 02:48:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pai e Filho"], ["question_id", 892], ["correct", true], ["created_at", 2016-08-19 02:48:10 UTC], ["updated_at", 2016-08-19 02:48:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tio e Sobrinho"], ["question_id", 892], ["correct", false], ["created_at", 2016-08-19 02:48:10 UTC], ["updated_at", 2016-08-19 02:48:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmãos"], ["question_id", 892], ["correct", false], ["created_at", 2016-08-19 02:48:10 UTC], ["updated_at", 2016-08-19 02:48:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cunhados"], ["question_id", 892], ["correct", false], ["created_at", 2016-08-19 02:48:10 UTC], ["updated_at", 2016-08-19 02:48:10 UTC]]  (124.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco entre Jônatas e Saul?"], ["created_at", 2016-08-19 02:48:10 UTC], ["updated_at", 2016-08-19 02:48:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filho e Pai"], ["question_id", 893], ["correct", true], ["created_at", 2016-08-19 02:48:10 UTC], ["updated_at", 2016-08-19 02:48:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pai e Filho"], ["question_id", 893], ["correct", false], ["created_at", 2016-08-19 02:48:10 UTC], ["updated_at", 2016-08-19 02:48:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Genro e Sogro"], ["question_id", 893], ["correct", false], ["created_at", 2016-08-19 02:48:10 UTC], ["updated_at", 2016-08-19 02:48:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sogro e Genro"], ["question_id", 893], ["correct", false], ["created_at", 2016-08-19 02:48:10 UTC], ["updated_at", 2016-08-19 02:48:10 UTC]]  (134.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco entre Labão e Jacó?"], ["created_at", 2016-08-19 02:48:10 UTC], ["updated_at", 2016-08-19 02:48:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sogro e Genro"], ["question_id", 894], ["correct", true], ["created_at", 2016-08-19 02:48:10 UTC], ["updated_at", 2016-08-19 02:48:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pai e Filho"], ["question_id", 894], ["correct", false], ["created_at", 2016-08-19 02:48:10 UTC], ["updated_at", 2016-08-19 02:48:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Avô e Neto"], ["question_id", 894], ["correct", false], ["created_at", 2016-08-19 02:48:10 UTC], ["updated_at", 2016-08-19 02:48:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cunhados"], ["question_id", 894], ["correct", false], ["created_at", 2016-08-19 02:48:10 UTC], ["updated_at", 2016-08-19 02:48:10 UTC]]  (124.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco entre Lázaro e Marta?"], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmãos"], ["question_id", 895], ["correct", true], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pai e Filha"], ["question_id", 895], ["correct", false], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cunhados"], ["question_id", 895], ["correct", false], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filho e Mãe"], ["question_id", 895], ["correct", false], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]]  (124.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco entre Mardoqueu e Ester, a esposa do rei Assuero?"], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Primo"], ["question_id", 896], ["correct", true], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tio"], ["question_id", 896], ["correct", false], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmão"], ["question_id", 896], ["correct", false], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pai"], ["question_id", 896], ["correct", false], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]]  (124.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco entre Orfa e Ester?"], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhum"], ["question_id", 897], ["correct", true], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sogra e Nora"], ["question_id", 897], ["correct", false], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cunhadas"], ["question_id", 897], ["correct", false], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nora e Sogra"], ["question_id", 897], ["correct", false], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]]  (124.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco entre Orfa e Noemi?"], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nora e Sogra"], ["question_id", 898], ["correct", true], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filha e Mãe"], ["question_id", 898], ["correct", false], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Neta e Avó"], ["question_id", 898], ["correct", false], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tia e Sobrinha"], ["question_id", 898], ["correct", false], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]]  (124.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco entre Orfa e Rute?"], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sogra e Nora"], ["question_id", 899], ["correct", true], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mãe e Filha"], ["question_id", 899], ["correct", false], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmãs"], ["question_id", 899], ["correct", false], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cunhadas"], ["question_id", 899], ["correct", false], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]]  (125.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco entre Rute e Noemi?"], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nora e Sogra"], ["question_id", 900], ["correct", true], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sogra e Nora"], ["question_id", 900], ["correct", false], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mãe e Filha"], ["question_id", 900], ["correct", false], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filha e Madrasta"], ["question_id", 900], ["correct", false], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]]  (125.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco entre Rute e Orfa?"], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cunhadas"], ["question_id", 901], ["correct", true], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Primas"], ["question_id", 901], ["correct", false], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmãs"], ["question_id", 901], ["correct", false], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas Vizinhas"], ["question_id", 901], ["correct", false], ["created_at", 2016-08-19 02:48:11 UTC], ["updated_at", 2016-08-19 02:48:11 UTC]]  (208.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o irmão de Maria e Marta que Jesus ressuscitou?"], ["created_at", 2016-08-19 02:48:12 UTC], ["updated_at", 2016-08-19 02:48:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lázaro"], ["question_id", 902], ["correct", true], ["created_at", 2016-08-19 02:48:12 UTC], ["updated_at", 2016-08-19 02:48:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Leonel"], ["question_id", 902], ["correct", false], ["created_at", 2016-08-19 02:48:12 UTC], ["updated_at", 2016-08-19 02:48:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Leocádio"], ["question_id", 902], ["correct", false], ["created_at", 2016-08-19 02:48:12 UTC], ["updated_at", 2016-08-19 02:48:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filemon"], ["question_id", 902], ["correct", false], ["created_at", 2016-08-19 02:48:12 UTC], ["updated_at", 2016-08-19 02:48:12 UTC]]  (175.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome babilônico de Azarias, amigo de Daniel?"], ["created_at", 2016-08-19 02:48:12 UTC], ["updated_at", 2016-08-19 02:48:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abede-nego"], ["question_id", 903], ["correct", true], ["created_at", 2016-08-19 02:48:12 UTC], ["updated_at", 2016-08-19 02:48:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mesaque"], ["question_id", 903], ["correct", false], ["created_at", 2016-08-19 02:48:12 UTC], ["updated_at", 2016-08-19 02:48:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sadraque"], ["question_id", 903], ["correct", false], ["created_at", 2016-08-19 02:48:12 UTC], ["updated_at", 2016-08-19 02:48:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josias"], ["question_id", 903], ["correct", false], ["created_at", 2016-08-19 02:48:12 UTC], ["updated_at", 2016-08-19 02:48:12 UTC]]  (143.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome babilônico de Daniel?"], ["created_at", 2016-08-19 02:48:12 UTC], ["updated_at", 2016-08-19 02:48:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Beltessazar"], ["question_id", 904], ["correct", true], ["created_at", 2016-08-19 02:48:12 UTC], ["updated_at", 2016-08-19 02:48:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Misael"], ["question_id", 904], ["correct", false], ["created_at", 2016-08-19 02:48:12 UTC], ["updated_at", 2016-08-19 02:48:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Israel"], ["question_id", 904], ["correct", false], ["created_at", 2016-08-19 02:48:12 UTC], ["updated_at", 2016-08-19 02:48:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 904], ["correct", false], ["created_at", 2016-08-19 02:48:12 UTC], ["updated_at", 2016-08-19 02:48:12 UTC]]  (160.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome babilônico de Hananias, amigo de Daniel?"], ["created_at", 2016-08-19 02:48:12 UTC], ["updated_at", 2016-08-19 02:48:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sadraque"], ["question_id", 905], ["correct", true], ["created_at", 2016-08-19 02:48:12 UTC], ["updated_at", 2016-08-19 02:48:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mesaque"], ["question_id", 905], ["correct", false], ["created_at", 2016-08-19 02:48:12 UTC], ["updated_at", 2016-08-19 02:48:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abede-nego"], ["question_id", 905], ["correct", false], ["created_at", 2016-08-19 02:48:12 UTC], ["updated_at", 2016-08-19 02:48:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 905], ["correct", false], ["created_at", 2016-08-19 02:48:12 UTC], ["updated_at", 2016-08-19 02:48:12 UTC]]  (151.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome babilônico de Misael, amigo de Daniel?"], ["created_at", 2016-08-19 02:48:12 UTC], ["updated_at", 2016-08-19 02:48:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mesaque"], ["question_id", 906], ["correct", true], ["created_at", 2016-08-19 02:48:12 UTC], ["updated_at", 2016-08-19 02:48:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sadraque"], ["question_id", 906], ["correct", false], ["created_at", 2016-08-19 02:48:12 UTC], ["updated_at", 2016-08-19 02:48:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abede-nego"], ["question_id", 906], ["correct", false], ["created_at", 2016-08-19 02:48:12 UTC], ["updated_at", 2016-08-19 02:48:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 906], ["correct", false], ["created_at", 2016-08-19 02:48:12 UTC], ["updated_at", 2016-08-19 02:48:12 UTC]]  (166.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome da cidade do rei Ogue que era cheia de gigantes?"], ["created_at", 2016-08-19 02:48:12 UTC], ["updated_at", 2016-08-19 02:48:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Astarote"], ["question_id", 907], ["correct", true], ["created_at", 2016-08-19 02:48:12 UTC], ["updated_at", 2016-08-19 02:48:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hazor"], ["question_id", 907], ["correct", false], ["created_at", 2016-08-19 02:48:12 UTC], ["updated_at", 2016-08-19 02:48:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gebal"], ["question_id", 907], ["correct", false], ["created_at", 2016-08-19 02:48:12 UTC], ["updated_at", 2016-08-19 02:48:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quefrém"], ["question_id", 907], ["correct", false], ["created_at", 2016-08-19 02:48:12 UTC], ["updated_at", 2016-08-19 02:48:12 UTC]]  (124.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome da esposa de Abraão?"], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sara"], ["question_id", 908], ["correct", true], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Agar"], ["question_id", 908], ["correct", false], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Asenate"], ["question_id", 908], ["correct", false], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 908], ["correct", false], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]]  (125.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome da esposa de Herodes Antipas?"], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodias"], ["question_id", 909], ["correct", true], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Minéias"], ["question_id", 909], ["correct", false], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lia"], ["question_id", 909], ["correct", false], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Priscila"], ["question_id", 909], ["correct", false], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]]  (124.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome da esposa de Jó?"], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jemima"], ["question_id", 910], ["correct", true], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Raabe"], ["question_id", 910], ["correct", false], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lia"], ["question_id", 910], ["correct", false], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elisis"], ["question_id", 910], ["correct", false], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]]  (124.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome da esposa de Moisés?"], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zípora"], ["question_id", 911], ["correct", true], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Diana"], ["question_id", 911], ["correct", false], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Léia"], ["question_id", 911], ["correct", false], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sara"], ["question_id", 911], ["correct", false], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]]  (124.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome da esposa de Salomão?"], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maacá"], ["question_id", 912], ["correct", true], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Minéias"], ["question_id", 912], ["correct", false], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomé"], ["question_id", 912], ["correct", false], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Drusila"], ["question_id", 912], ["correct", false], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]]  (124.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome da irmã de Raquel, esposa de Jacó?"], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Léia"], ["question_id", 913], ["correct", true], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lécia"], ["question_id", 913], ["correct", false], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Odisséia"], ["question_id", 913], ["correct", false], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Débora"], ["question_id", 913], ["correct", false], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]]  (126.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome do apóstolo que estava pregando a mensagem quando Êutico caiu da janela pois estava dormindo?"], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 914], ["correct", true], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 914], ["correct", false], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 914], ["correct", false], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Timóteo"], ["question_id", 914], ["correct", false], ["created_at", 2016-08-19 02:48:13 UTC], ["updated_at", 2016-08-19 02:48:13 UTC]]  (141.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome do filho de Rute e Boaz?"], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obede"], ["question_id", 915], ["correct", true], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Onon"], ["question_id", 915], ["correct", false], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Inri"], ["question_id", 915], ["correct", false], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joquebede"], ["question_id", 915], ["correct", false], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]]  (184.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome do marido de Isabel, mãe de João Batista?"], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias"], ["question_id", 916], ["correct", true], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zaqueu"], ["question_id", 916], ["correct", false], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Urias"], ["question_id", 916], ["correct", false], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matias"], ["question_id", 916], ["correct", false], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]]  (208.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome do marido de Maacá?"], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 917], ["correct", true], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zebedeu"], ["question_id", 917], ["correct", false], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 917], ["correct", false], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeroboão"], ["question_id", 917], ["correct", false], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]]  (117.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome do pai de Abraão?"], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Terá"], ["question_id", 918], ["correct", true], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ló"], ["question_id", 918], ["correct", false], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anrão"], ["question_id", 918], ["correct", false], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeroão"], ["question_id", 918], ["correct", false], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]]  (142.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome do pai de Moisés e de Arão?"], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anrão"], ["question_id", 919], ["correct", true], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salmom"], ["question_id", 919], ["correct", false], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeroão"], ["question_id", 919], ["correct", false], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeremias"], ["question_id", 919], ["correct", false], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]]  (141.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome do pai de Moisés?"], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anrão"], ["question_id", 920], ["correct", true], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 920], ["correct", false], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maleque"], ["question_id", 920], ["correct", false], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amasa"], ["question_id", 920], ["correct", false], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]]  (112.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome do pai do profeta Zacarias?"], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Berequias"], ["question_id", 921], ["correct", true], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abias"], ["question_id", 921], ["correct", false], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Asa"], ["question_id", 921], ["correct", false], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mordecai"], ["question_id", 921], ["correct", false], ["created_at", 2016-08-19 02:48:14 UTC], ["updated_at", 2016-08-19 02:48:14 UTC]]  (346.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome do poço de onde a mulher samaritana com quem Jesus falou estava tirando água?"], ["created_at", 2016-08-19 02:48:15 UTC], ["updated_at", 2016-08-19 02:48:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Poço de Jacó"], ["question_id", 922], ["correct", true], ["created_at", 2016-08-19 02:48:15 UTC], ["updated_at", 2016-08-19 02:48:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Poço de Abraão"], ["question_id", 922], ["correct", false], ["created_at", 2016-08-19 02:48:15 UTC], ["updated_at", 2016-08-19 02:48:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Poço de Isaque"], ["question_id", 922], ["correct", false], ["created_at", 2016-08-19 02:48:15 UTC], ["updated_at", 2016-08-19 02:48:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Poço de Moisés"], ["question_id", 922], ["correct", false], ["created_at", 2016-08-19 02:48:15 UTC], ["updated_at", 2016-08-19 02:48:15 UTC]]  (157.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o objetivo da mãe de Moisés ao tê-lo colocado em um cesto e deixado à deriva no rio Nilo?"], ["created_at", 2016-08-19 02:48:15 UTC], ["updated_at", 2016-08-19 02:48:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salvar Sua Vida da Sentença do Faraó"], ["question_id", 923], ["correct", true], ["created_at", 2016-08-19 02:48:15 UTC], ["updated_at", 2016-08-19 02:48:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Afogá-lo"], ["question_id", 923], ["correct", false], ["created_at", 2016-08-19 02:48:15 UTC], ["updated_at", 2016-08-19 02:48:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Permitir Que Ele Fosse Sacrificado A Mon-rá"], ["question_id", 923], ["correct", false], ["created_at", 2016-08-19 02:48:15 UTC], ["updated_at", 2016-08-19 02:48:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sumir Com Ele, Pois Era Mãe Solteira"], ["question_id", 923], ["correct", false], ["created_at", 2016-08-19 02:48:15 UTC], ["updated_at", 2016-08-19 02:48:15 UTC]]  (142.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o objetivo de Saulo quando este ficou cego quando dirigia-se para a cidade de Damasco?"], ["created_at", 2016-08-19 02:48:15 UTC], ["updated_at", 2016-08-19 02:48:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Prender Os Cristãos Que Haviam Fugido de Jerusalém"], ["question_id", 924], ["correct", true], ["created_at", 2016-08-19 02:48:15 UTC], ["updated_at", 2016-08-19 02:48:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Espalhar As Boas Novas"], ["question_id", 924], ["correct", false], ["created_at", 2016-08-19 02:48:15 UTC], ["updated_at", 2016-08-19 02:48:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Confortar As Viúvas Pobres Daquela Cidade"], ["question_id", 924], ["correct", false], ["created_at", 2016-08-19 02:48:15 UTC], ["updated_at", 2016-08-19 02:48:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cobrar Impostos"], ["question_id", 924], ["correct", false], ["created_at", 2016-08-19 02:48:15 UTC], ["updated_at", 2016-08-19 02:48:15 UTC]]  (161.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o outro nome de Jetro, sogro de Moisés?"], ["created_at", 2016-08-19 02:48:15 UTC], ["updated_at", 2016-08-19 02:48:15 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Reuel"], ["question_id", 925], ["correct", true], ["created_at", 2016-08-19 02:48:15 UTC], ["updated_at", 2016-08-19 02:48:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeter"], ["question_id", 925], ["correct", false], ["created_at", 2016-08-19 02:48:15 UTC], ["updated_at", 2016-08-19 02:48:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jetete"], ["question_id", 925], ["correct", false], ["created_at", 2016-08-19 02:48:15 UTC], ["updated_at", 2016-08-19 02:48:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lebeão"], ["question_id", 925], ["correct", false], ["created_at", 2016-08-19 02:48:15 UTC], ["updated_at", 2016-08-19 02:48:15 UTC]]  (120.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o outro nome pelo qual o apóstolo Tomé também era conhecido?"], ["created_at", 2016-08-19 02:48:15 UTC], ["updated_at", 2016-08-19 02:48:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dídimo"], ["question_id", 926], ["correct", true], ["created_at", 2016-08-19 02:48:15 UTC], ["updated_at", 2016-08-19 02:48:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Teófilo"], ["question_id", 926], ["correct", false], ["created_at", 2016-08-19 02:48:15 UTC], ["updated_at", 2016-08-19 02:48:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tadeu"], ["question_id", 926], ["correct", false], ["created_at", 2016-08-19 02:48:15 UTC], ["updated_at", 2016-08-19 02:48:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sebastião"], ["question_id", 926], ["correct", false], ["created_at", 2016-08-19 02:48:15 UTC], ["updated_at", 2016-08-19 02:48:15 UTC]]  (133.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o reinado ocupado por Salmanezer quando levou cativo o povo de Israel?"], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assírio"], ["question_id", 927], ["correct", true], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenício"], ["question_id", 927], ["correct", false], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônico"], ["question_id", 927], ["correct", false], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Medo-persa"], ["question_id", 927], ["correct", false], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]]  (143.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o significado do nome de Urias, leal oficial do exército de Deus?"], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Chama de Jeová"], ["question_id", 928], ["correct", true], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Luz da Noite"], ["question_id", 928], ["correct", false], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Brisa Perfumada"], ["question_id", 928], ["correct", false], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Espada Ao Alto"], ["question_id", 928], ["correct", false], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]]  (125.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o sobrenome de Herodes?"], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Antipa"], ["question_id", 929], ["correct", true], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Antílope"], ["question_id", 929], ["correct", false], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Neleseu"], ["question_id", 929], ["correct", false], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pilatos"], ["question_id", 929], ["correct", false], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]]  (125.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual festividade celebra o final da vida de escravidão do povo israelita no Egito?"], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Páscoa dos Judeus"], ["question_id", 930], ["correct", true], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Festa do Purim"], ["question_id", 930], ["correct", false], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pentecostes"], ["question_id", 930], ["correct", false], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Natal"], ["question_id", 930], ["correct", false], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]]  (142.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual filho de Davi o estava perseguindo para matá-lo?"], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 931], ["correct", true], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Urias"], ["question_id", 931], ["correct", false], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 931], ["correct", false], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Macabeus"], ["question_id", 931], ["correct", false], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]]  (133.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual filho de Davi refugiou-se na cidade de Gesur após ter matado Amnom?"], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 932], ["correct", true], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 932], ["correct", false], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quileabe"], ["question_id", 932], ["correct", false], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sobabe"], ["question_id", 932], ["correct", false], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]]  (125.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual filho de Jacó perdeu a sua primogenitura?"], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rúben"], ["question_id", 933], ["correct", true], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Benjamin"], ["question_id", 933], ["correct", false], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 933], ["correct", false], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Manassés"], ["question_id", 933], ["correct", false], ["created_at", 2016-08-19 02:48:16 UTC], ["updated_at", 2016-08-19 02:48:16 UTC]]  (126.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual filho do rei Azarias governou em seu lugar após a sua morte?"], ["created_at", 2016-08-19 02:48:17 UTC], ["updated_at", 2016-08-19 02:48:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jotão"], ["question_id", 934], ["correct", true], ["created_at", 2016-08-19 02:48:17 UTC], ["updated_at", 2016-08-19 02:48:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jonadabe"], ["question_id", 934], ["correct", false], ["created_at", 2016-08-19 02:48:17 UTC], ["updated_at", 2016-08-19 02:48:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joiada"], ["question_id", 934], ["correct", false], ["created_at", 2016-08-19 02:48:17 UTC], ["updated_at", 2016-08-19 02:48:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeú"], ["question_id", 934], ["correct", false], ["created_at", 2016-08-19 02:48:17 UTC], ["updated_at", 2016-08-19 02:48:17 UTC]]  (124.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a 1ª praga que Deus enviou aos egípcios?"], ["created_at", 2016-08-19 02:48:17 UTC], ["updated_at", 2016-08-19 02:48:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Água Virou Sangue"], ["question_id", 935], ["correct", true], ["created_at", 2016-08-19 02:48:17 UTC], ["updated_at", 2016-08-19 02:48:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trevas"], ["question_id", 935], ["correct", false], ["created_at", 2016-08-19 02:48:17 UTC], ["updated_at", 2016-08-19 02:48:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moscas"], ["question_id", 935], ["correct", false], ["created_at", 2016-08-19 02:48:17 UTC], ["updated_at", 2016-08-19 02:48:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedras de Fogo"], ["question_id", 935], ["correct", false], ["created_at", 2016-08-19 02:48:17 UTC], ["updated_at", 2016-08-19 02:48:17 UTC]]  (125.0ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a 2ª praga que Deus enviou contra os egípcios?"], ["created_at", 2016-08-19 02:48:17 UTC], ["updated_at", 2016-08-19 02:48:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rãs"], ["question_id", 936], ["correct", true], ["created_at", 2016-08-19 02:48:17 UTC], ["updated_at", 2016-08-19 02:48:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moscas"], ["question_id", 936], ["correct", false], ["created_at", 2016-08-19 02:48:17 UTC], ["updated_at", 2016-08-19 02:48:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Piolhos"], ["question_id", 936], ["correct", false], ["created_at", 2016-08-19 02:48:17 UTC], ["updated_at", 2016-08-19 02:48:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trevas"], ["question_id", 936], ["correct", false], ["created_at", 2016-08-19 02:48:17 UTC], ["updated_at", 2016-08-19 02:48:17 UTC]]  (124.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a 3ª praga enviada por Deus ao povo egípcio?"], ["created_at", 2016-08-19 02:48:17 UTC], ["updated_at", 2016-08-19 02:48:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Piolhos"], ["question_id", 937], ["correct", true], ["created_at", 2016-08-19 02:48:17 UTC], ["updated_at", 2016-08-19 02:48:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sapos"], ["question_id", 937], ["correct", false], ["created_at", 2016-08-19 02:48:17 UTC], ["updated_at", 2016-08-19 02:48:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trevas"], ["question_id", 937], ["correct", false], ["created_at", 2016-08-19 02:48:17 UTC], ["updated_at", 2016-08-19 02:48:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sangue"], ["question_id", 937], ["correct", false], ["created_at", 2016-08-19 02:48:17 UTC], ["updated_at", 2016-08-19 02:48:17 UTC]]  (142.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a 4ª praga que Deus enviou ao Egito?"], ["created_at", 2016-08-19 02:48:17 UTC], ["updated_at", 2016-08-19 02:48:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moscas"], ["question_id", 938], ["correct", true], ["created_at", 2016-08-19 02:48:17 UTC], ["updated_at", 2016-08-19 02:48:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Piolhos"], ["question_id", 938], ["correct", false], ["created_at", 2016-08-19 02:48:17 UTC], ["updated_at", 2016-08-19 02:48:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gafanhotos"], ["question_id", 938], ["correct", false], ["created_at", 2016-08-19 02:48:17 UTC], ["updated_at", 2016-08-19 02:48:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sapos"], ["question_id", 938], ["correct", false], ["created_at", 2016-08-19 02:48:17 UTC], ["updated_at", 2016-08-19 02:48:17 UTC]]  (150.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a 5ª praga que Deus enviou ao Egito?"], ["created_at", 2016-08-19 02:48:17 UTC], ["updated_at", 2016-08-19 02:48:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Pestilência Muito Grave"], ["question_id", 939], ["correct", true], ["created_at", 2016-08-19 02:48:17 UTC], ["updated_at", 2016-08-19 02:48:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trevas"], ["question_id", 939], ["correct", false], ["created_at", 2016-08-19 02:48:17 UTC], ["updated_at", 2016-08-19 02:48:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sapos"], ["question_id", 939], ["correct", false], ["created_at", 2016-08-19 02:48:17 UTC], ["updated_at", 2016-08-19 02:48:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gafanhotos"], ["question_id", 939], ["correct", false], ["created_at", 2016-08-19 02:48:17 UTC], ["updated_at", 2016-08-19 02:48:17 UTC]]  (192.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a 6ª praga que Deus enviou contra os egípcios?"], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tumores"], ["question_id", 940], ["correct", true], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pestilência Muito Grava"], ["question_id", 940], ["correct", false], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gafanhotos"], ["question_id", 940], ["correct", false], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moscas"], ["question_id", 940], ["correct", false], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]]  (125.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a 7ª praga enviada por Deus contra os egípcios?"], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedras de Fogo"], ["question_id", 941], ["correct", true], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gafanhotos"], ["question_id", 941], ["correct", false], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trevas"], ["question_id", 941], ["correct", false], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Morte do Primogênito"], ["question_id", 941], ["correct", false], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]]  (184.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a acusação do sumo sacerdote contra Jesus?"], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Blasfêmia"], ["question_id", 942], ["correct", true], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Louvar Um Deus Falso"], ["question_id", 942], ["correct", false], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mentir Para O Sacerdote"], ["question_id", 942], ["correct", false], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tentar Ser Deus"], ["question_id", 942], ["correct", false], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]]  (150.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a árvore cuja semente Jesus usou para ensinar uma lição de fé?"], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mostarda"], ["question_id", 943], ["correct", true], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cipreste"], ["question_id", 943], ["correct", false], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Figueira"], ["question_id", 943], ["correct", false], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oliveira"], ["question_id", 943], ["correct", false], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]]  (143.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a causa que levou com que Israel fosse levado cativo pelos assírios?"], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não-obediência À Voz de Deus"], ["question_id", 944], ["correct", true], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Pagou Os Tributos Exigidos Pelos Assírios"], ["question_id", 944], ["correct", false], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mataram 2 Generais Assírios"], ["question_id", 944], ["correct", false], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pela Falta de Água No Reino da Assíria"], ["question_id", 944], ["correct", false], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]]  (136.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a desculpa utilizada por Amnom, filho de Davi, para que Tamar, sua meia-irmã, viesse à sua casa e a estuprasse?"], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fingiu Estar Doente"], ["question_id", 945], ["correct", true], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Propôs-lhe Casamento"], ["question_id", 945], ["correct", false], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Havia Ficado Rico"], ["question_id", 945], ["correct", false], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Encontrou Uma Mula Que Falava"], ["question_id", 945], ["correct", false], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]]  (120.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a Epístola que o apóstolo Paulo escreveu enquanto esteve viajando pela Grécia?"], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Romanos"], ["question_id", 946], ["correct", true], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Colossenses"], ["question_id", 946], ["correct", false], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filipenses"], ["question_id", 946], ["correct", false], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tessalonicenses"], ["question_id", 946], ["correct", false], ["created_at", 2016-08-19 02:48:18 UTC], ["updated_at", 2016-08-19 02:48:18 UTC]]  (127.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a mensagem que o profeta Aías disse à esposa de Jeroboão?"], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Todos Os Homens da Família Real Iriam Morrer"], ["question_id", 947], ["correct", true], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Apenas As Filhas do Rei Iriam Morrer"], ["question_id", 947], ["correct", false], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Apenas O Filho Primogênito do Rei Morreria"], ["question_id", 947], ["correct", false], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que O Próprio Rei Iria Morrer Pela Mãos dos Filhos"], ["question_id", 947], ["correct", false], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]]  (159.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a pior rainha do reino de Isarel?"], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jezabel"], ["question_id", 948], ["correct", true], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nebate"], ["question_id", 948], ["correct", false], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pul"], ["question_id", 948], ["correct", false], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Peca"], ["question_id", 948], ["correct", false], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]]  (200.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a primeira cidade conquistada pelos israelitas quando estes estavam sob a liderança de Josué?"], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jericó"], ["question_id", 949], ["correct", true], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sodoma"], ["question_id", 949], ["correct", false], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gomorra"], ["question_id", 949], ["correct", false], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ur dos Caldeus"], ["question_id", 949], ["correct", false], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]]  (152.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a proclamação do rei de Níníve para que todas as pessoas fizessem?"], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jejuassem"], ["question_id", 950], ["correct", true], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Festejassem"], ["question_id", 950], ["correct", false], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ficassem Em Suas Casas"], ["question_id", 950], ["correct", false], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Fossem Mais Trabalhar"], ["question_id", 950], ["correct", false], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]]  (124.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a profecia que o profeta Isaías disse ao rei Ezequias com relação aos tesouros do Templo?"], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eles Serão Levados"], ["question_id", 951], ["correct", true], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eles Serão Destruídos"], ["question_id", 951], ["correct", false], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eles Iriam Se Perder"], ["question_id", 951], ["correct", false], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eles Seriam Derretidos"], ["question_id", 951], ["correct", false], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]]  (124.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a profissão de Ninrode?"], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caçador"], ["question_id", 952], ["correct", true], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marinheiro"], ["question_id", 952], ["correct", false], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Construtor Naval"], ["question_id", 952], ["correct", false], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pescador"], ["question_id", 952], ["correct", false], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]]  (141.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a profissão de Zacarias?"], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sacerdote"], ["question_id", 953], ["correct", true], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carpinteiro"], ["question_id", 953], ["correct", false], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Coletor de Impostos"], ["question_id", 953], ["correct", false], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pescador"], ["question_id", 953], ["correct", false], ["created_at", 2016-08-19 02:48:19 UTC], ["updated_at", 2016-08-19 02:48:19 UTC]]  (158.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a quantidade de seguidores de Corá que foram consumidos pelo fogo em sua rebelião?"], ["created_at", 2016-08-19 02:48:20 UTC], ["updated_at", 2016-08-19 02:48:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "250"], ["question_id", 954], ["correct", true], ["created_at", 2016-08-19 02:48:20 UTC], ["updated_at", 2016-08-19 02:48:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2000"], ["question_id", 954], ["correct", false], ["created_at", 2016-08-19 02:48:20 UTC], ["updated_at", 2016-08-19 02:48:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "50"], ["question_id", 954], ["correct", false], ["created_at", 2016-08-19 02:48:20 UTC], ["updated_at", 2016-08-19 02:48:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1500"], ["question_id", 954], ["correct", false], ["created_at", 2016-08-19 02:48:20 UTC], ["updated_at", 2016-08-19 02:48:20 UTC]]  (149.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a resposta do rei Davi à tentativa de rebelião promovida por Absalão?"], ["created_at", 2016-08-19 02:48:20 UTC], ["updated_at", 2016-08-19 02:48:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fugiu de Jerusalém"], ["question_id", 955], ["correct", true], ["created_at", 2016-08-19 02:48:20 UTC], ["updated_at", 2016-08-19 02:48:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mandou Matá-lo"], ["question_id", 955], ["correct", false], ["created_at", 2016-08-19 02:48:20 UTC], ["updated_at", 2016-08-19 02:48:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mandou Prendê-lo"], ["question_id", 955], ["correct", false], ["created_at", 2016-08-19 02:48:20 UTC], ["updated_at", 2016-08-19 02:48:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aconselhou-o Informando Que O Reino Era de Salomão"], ["question_id", 955], ["correct", false], ["created_at", 2016-08-19 02:48:20 UTC], ["updated_at", 2016-08-19 02:48:20 UTC]]  (125.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a única mulher na Bíblia que teve a sua idade mencionada?"], ["created_at", 2016-08-19 02:48:20 UTC], ["updated_at", 2016-08-19 02:48:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sara"], ["question_id", 956], ["correct", true], ["created_at", 2016-08-19 02:48:20 UTC], ["updated_at", 2016-08-19 02:48:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rute"], ["question_id", 956], ["correct", false], ["created_at", 2016-08-19 02:48:20 UTC], ["updated_at", 2016-08-19 02:48:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eva"], ["question_id", 956], ["correct", false], ["created_at", 2016-08-19 02:48:20 UTC], ["updated_at", 2016-08-19 02:48:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noemi"], ["question_id", 956], ["correct", false], ["created_at", 2016-08-19 02:48:20 UTC], ["updated_at", 2016-08-19 02:48:20 UTC]]  (132.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a única ocasião registrada no Novo Testamento em que Jesus cantou?"], ["created_at", 2016-08-19 02:48:20 UTC], ["updated_at", 2016-08-19 02:48:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Última Ceia"], ["question_id", 957], ["correct", true], ["created_at", 2016-08-19 02:48:20 UTC], ["updated_at", 2016-08-19 02:48:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Gólgota"], ["question_id", 957], ["correct", false], ["created_at", 2016-08-19 02:48:20 UTC], ["updated_at", 2016-08-19 02:48:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Batismo do Rio Jordão"], ["question_id", 957], ["correct", false], ["created_at", 2016-08-19 02:48:20 UTC], ["updated_at", 2016-08-19 02:48:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Entrada Triunfal Em Jerusalém"], ["question_id", 957], ["correct", false], ["created_at", 2016-08-19 02:48:20 UTC], ["updated_at", 2016-08-19 02:48:20 UTC]]  (124.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o 1º discípulo a perder sua vida pelo fato de estar evangelizando?"], ["created_at", 2016-08-19 02:48:20 UTC], ["updated_at", 2016-08-19 02:48:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 958], ["correct", true], ["created_at", 2016-08-19 02:48:20 UTC], ["updated_at", 2016-08-19 02:48:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 958], ["correct", false], ["created_at", 2016-08-19 02:48:20 UTC], ["updated_at", 2016-08-19 02:48:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mateus"], ["question_id", 958], ["correct", false], ["created_at", 2016-08-19 02:48:20 UTC], ["updated_at", 2016-08-19 02:48:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 958], ["correct", false], ["created_at", 2016-08-19 02:48:20 UTC], ["updated_at", 2016-08-19 02:48:20 UTC]]  (124.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o 1º discípulo morto a mando de Herodes?"], ["created_at", 2016-08-19 02:48:20 UTC], ["updated_at", 2016-08-19 02:48:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 959], ["correct", true], ["created_at", 2016-08-19 02:48:20 UTC], ["updated_at", 2016-08-19 02:48:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mateus"], ["question_id", 959], ["correct", false], ["created_at", 2016-08-19 02:48:20 UTC], ["updated_at", 2016-08-19 02:48:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 959], ["correct", false], ["created_at", 2016-08-19 02:48:20 UTC], ["updated_at", 2016-08-19 02:48:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 959], ["correct", false], ["created_at", 2016-08-19 02:48:20 UTC], ["updated_at", 2016-08-19 02:48:20 UTC]]  (124.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o 1º milagre que Jesus realizou em público?"], ["created_at", 2016-08-19 02:48:20 UTC], ["updated_at", 2016-08-19 02:48:20 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Transformou Água Em Vinho"], ["question_id", 960], ["correct", true], ["created_at", 2016-08-19 02:48:20 UTC], ["updated_at", 2016-08-19 02:48:20 UTC]]  (329.2ms) SELECT COUNT(*) FROM "quizzes_questions" SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Curou Um Homem Cego"], ["question_id", 960], ["correct", false], ["created_at", 2016-08-19 02:48:20 UTC], ["updated_at", 2016-08-19 02:48:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Multiplicou Pães e Peixes"], ["question_id", 960], ["correct", false], ["created_at", 2016-08-19 02:48:21 UTC], ["updated_at", 2016-08-19 02:48:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acalmou Uma Tempestade"], ["question_id", 960], ["correct", false], ["created_at", 2016-08-19 02:48:21 UTC], ["updated_at", 2016-08-19 02:48:21 UTC]]  (133.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o decreto assinado pelo rei Dario vigente por 30 dias?"], ["created_at", 2016-08-19 02:48:21 UTC], ["updated_at", 2016-08-19 02:48:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todas As Adorações Deveriam Ser Dirigidas Ao Rei"], ["question_id", 961], ["correct", true], ["created_at", 2016-08-19 02:48:21 UTC], ["updated_at", 2016-08-19 02:48:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todo O Povo Deveria Jejuar"], ["question_id", 961], ["correct", false], ["created_at", 2016-08-19 02:48:21 UTC], ["updated_at", 2016-08-19 02:48:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Impostos Deixariam de Ser Cobrados"], ["question_id", 961], ["correct", false], ["created_at", 2016-08-19 02:48:21 UTC], ["updated_at", 2016-08-19 02:48:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Povo Não Poderia Trabalhar No Sábado"], ["question_id", 961], ["correct", false], ["created_at", 2016-08-19 02:48:21 UTC], ["updated_at", 2016-08-19 02:48:21 UTC]]  (125.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o fato que levou o rei Davi a ser questionado pelo profeta Namã?"], ["created_at", 2016-08-19 02:48:21 UTC], ["updated_at", 2016-08-19 02:48:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Davi Manteve Relações Sexuais Com Bate-seba"], ["question_id", 962], ["correct", true], ["created_at", 2016-08-19 02:48:21 UTC], ["updated_at", 2016-08-19 02:48:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Davi Era Ganancioso"], ["question_id", 962], ["correct", false], ["created_at", 2016-08-19 02:48:21 UTC], ["updated_at", 2016-08-19 02:48:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Davi Não Queria Construir O Templo de Deus"], ["question_id", 962], ["correct", false], ["created_at", 2016-08-19 02:48:21 UTC], ["updated_at", 2016-08-19 02:48:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Davi Não Queria Destruir Os Altares de Baal"], ["question_id", 962], ["correct", false], ["created_at", 2016-08-19 02:48:21 UTC], ["updated_at", 2016-08-19 02:48:21 UTC]]  (159.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o fato que permitiu que os 2 discípulos de Jesus que caminharam com Ele na estrada de Emaús O reconhecessem?"], ["created_at", 2016-08-19 02:48:21 UTC], ["updated_at", 2016-08-19 02:48:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Partir O Pão"], ["question_id", 963], ["correct", true], ["created_at", 2016-08-19 02:48:21 UTC], ["updated_at", 2016-08-19 02:48:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Abençoar A Casa"], ["question_id", 963], ["correct", false], ["created_at", 2016-08-19 02:48:21 UTC], ["updated_at", 2016-08-19 02:48:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Curar Enfermos Que Haviam Na Estrada"], ["question_id", 963], ["correct", false], ["created_at", 2016-08-19 02:48:21 UTC], ["updated_at", 2016-08-19 02:48:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Ser Tocado Por Tomé"], ["question_id", 963], ["correct", false], ["created_at", 2016-08-19 02:48:21 UTC], ["updated_at", 2016-08-19 02:48:21 UTC]]  (233.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o filho de Jacó que tornou-se um grande líder da nação egípcia?"], ["created_at", 2016-08-19 02:48:21 UTC], ["updated_at", 2016-08-19 02:48:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 964], ["correct", true], ["created_at", 2016-08-19 02:48:21 UTC], ["updated_at", 2016-08-19 02:48:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rubem"], ["question_id", 964], ["correct", false], ["created_at", 2016-08-19 02:48:21 UTC], ["updated_at", 2016-08-19 02:48:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dã"], ["question_id", 964], ["correct", false], ["created_at", 2016-08-19 02:48:21 UTC], ["updated_at", 2016-08-19 02:48:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judá"], ["question_id", 964], ["correct", false], ["created_at", 2016-08-19 02:48:21 UTC], ["updated_at", 2016-08-19 02:48:21 UTC]]  (158.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o filho do rei babilônico Nabucodonosor?"], ["created_at", 2016-08-19 02:48:21 UTC], ["updated_at", 2016-08-19 02:48:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belsazar"], ["question_id", 965], ["correct", true], ["created_at", 2016-08-19 02:48:21 UTC], ["updated_at", 2016-08-19 02:48:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 965], ["correct", false], ["created_at", 2016-08-19 02:48:21 UTC], ["updated_at", 2016-08-19 02:48:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiro"], ["question_id", 965], ["correct", false], ["created_at", 2016-08-19 02:48:21 UTC], ["updated_at", 2016-08-19 02:48:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belaquiel"], ["question_id", 965], ["correct", false], ["created_at", 2016-08-19 02:48:21 UTC], ["updated_at", 2016-08-19 02:48:21 UTC]]  (140.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o filho primogênito do rei Davi?"], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amnon"], ["question_id", 966], ["correct", true], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 966], ["correct", false], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 966], ["correct", false], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sefatias"], ["question_id", 966], ["correct", false], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]]  (166.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o filho que Davi não teve com Bate-Seba?"], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 967], ["correct", true], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Natã"], ["question_id", 967], ["correct", false], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 967], ["correct", false], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sobabe"], ["question_id", 967], ["correct", false], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]]  (133.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o grau de parentesco entre Moisés e Anrão?"], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filho e Pai"], ["question_id", 968], ["correct", true], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tio e Sobrinho"], ["question_id", 968], ["correct", false], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmãos"], ["question_id", 968], ["correct", false], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cunhados"], ["question_id", 968], ["correct", false], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]]  (117.7ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o grau de parentesco entre Moisés e Joquebede?"], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filho e Mãe"], ["question_id", 969], ["correct", true], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sobrinho e Tia"], ["question_id", 969], ["correct", false], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Genro e Sogra"], ["question_id", 969], ["correct", false], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmãos"], ["question_id", 969], ["correct", false], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]]  (126.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o homem mais velho da Bíblia?"], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matusalém"], ["question_id", 970], ["correct", true], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Melquisedeque"], ["question_id", 970], ["correct", false], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adão"], ["question_id", 970], ["correct", false], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mefibosete"], ["question_id", 970], ["correct", false], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]]  (143.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o melhor amigo de Jônatas?"], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 971], ["correct", true], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 971], ["correct", false], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 971], ["correct", false], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 971], ["correct", false], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]]  (126.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o motivo que levou Deus a optar pela destruição da Terra através de um dilúvio?"], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Os Homens Eram Completamente Maus"], ["question_id", 972], ["correct", true], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque As Mulheres Eram Inférteis"], ["question_id", 972], ["correct", false], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque A Terra Estava Muito Populosa"], ["question_id", 972], ["correct", false], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Não Havia Mais Alimento Suficiente P/ Todos"], ["question_id", 972], ["correct", false], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]]  (117.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o nome que o rei Davi e Bate-Seba deram ao segundo filho que tiveram?"], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 973], ["correct", true], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 973], ["correct", false], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Labão"], ["question_id", 973], ["correct", false], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Balaão"], ["question_id", 973], ["correct", false], ["created_at", 2016-08-19 02:48:22 UTC], ["updated_at", 2016-08-19 02:48:22 UTC]]  (142.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o novo mandamento que Jesus ensinou aos seus discípulos no cenáculo?"], ["created_at", 2016-08-19 02:48:23 UTC], ["updated_at", 2016-08-19 02:48:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amem Uns Aos Outros"], ["question_id", 974], ["correct", true], ["created_at", 2016-08-19 02:48:23 UTC], ["updated_at", 2016-08-19 02:48:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Honrem Meu Nome"], ["question_id", 974], ["correct", false], ["created_at", 2016-08-19 02:48:23 UTC], ["updated_at", 2016-08-19 02:48:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Preguem O Evangelho"], ["question_id", 974], ["correct", false], ["created_at", 2016-08-19 02:48:23 UTC], ["updated_at", 2016-08-19 02:48:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Orem Com Fervor e Devoção"], ["question_id", 974], ["correct", false], ["created_at", 2016-08-19 02:48:23 UTC], ["updated_at", 2016-08-19 02:48:23 UTC]]  (125.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o objetivo de Josias em queimar ossos humanos no altar eregido ao deus Moleque?"], ["created_at", 2016-08-19 02:48:23 UTC], ["updated_at", 2016-08-19 02:48:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Profaná-lo"], ["question_id", 975], ["correct", true], ["created_at", 2016-08-19 02:48:23 UTC], ["updated_at", 2016-08-19 02:48:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adorá-lo"], ["question_id", 975], ["correct", false], ["created_at", 2016-08-19 02:48:23 UTC], ["updated_at", 2016-08-19 02:48:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Exaltá-lo"], ["question_id", 975], ["correct", false], ["created_at", 2016-08-19 02:48:23 UTC], ["updated_at", 2016-08-19 02:48:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Destruí-lo"], ["question_id", 975], ["correct", false], ["created_at", 2016-08-19 02:48:23 UTC], ["updated_at", 2016-08-19 02:48:23 UTC]]  (124.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o outro nome que Deus deu a Salomão?"], ["created_at", 2016-08-19 02:48:23 UTC], ["updated_at", 2016-08-19 02:48:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jedidias"], ["question_id", 976], ["correct", true], ["created_at", 2016-08-19 02:48:23 UTC], ["updated_at", 2016-08-19 02:48:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias"], ["question_id", 976], ["correct", false], ["created_at", 2016-08-19 02:48:23 UTC], ["updated_at", 2016-08-19 02:48:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josedias"], ["question_id", 976], ["correct", false], ["created_at", 2016-08-19 02:48:23 UTC], ["updated_at", 2016-08-19 02:48:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zuzemias"], ["question_id", 976], ["correct", false], ["created_at", 2016-08-19 02:48:23 UTC], ["updated_at", 2016-08-19 02:48:23 UTC]]  (124.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o pecado que Davi cometeu com Bate-Seba?"], ["created_at", 2016-08-19 02:48:23 UTC], ["updated_at", 2016-08-19 02:48:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adultério"], ["question_id", 977], ["correct", true], ["created_at", 2016-08-19 02:48:23 UTC], ["updated_at", 2016-08-19 02:48:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deitar-se Com Urias"], ["question_id", 977], ["correct", false], ["created_at", 2016-08-19 02:48:23 UTC], ["updated_at", 2016-08-19 02:48:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ter Uma Terceira Esposa"], ["question_id", 977], ["correct", false], ["created_at", 2016-08-19 02:48:23 UTC], ["updated_at", 2016-08-19 02:48:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amar Urias"], ["question_id", 977], ["correct", false], ["created_at", 2016-08-19 02:48:23 UTC], ["updated_at", 2016-08-19 02:48:23 UTC]]  (141.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o período de reinado de Salomão?"], ["created_at", 2016-08-19 02:48:23 UTC], ["updated_at", 2016-08-19 02:48:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "40 Anos"], ["question_id", 978], ["correct", true], ["created_at", 2016-08-19 02:48:23 UTC], ["updated_at", 2016-08-19 02:48:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12 Anos"], ["question_id", 978], ["correct", false], ["created_at", 2016-08-19 02:48:23 UTC], ["updated_at", 2016-08-19 02:48:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "68 Anos"], ["question_id", 978], ["correct", false], ["created_at", 2016-08-19 02:48:23 UTC], ["updated_at", 2016-08-19 02:48:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4 Anos"], ["question_id", 978], ["correct", false], ["created_at", 2016-08-19 02:48:23 UTC], ["updated_at", 2016-08-19 02:48:23 UTC]]  (142.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o primeiro apóstolo a morrer?"], ["created_at", 2016-08-19 02:48:23 UTC], ["updated_at", 2016-08-19 02:48:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 979], ["correct", true], ["created_at", 2016-08-19 02:48:23 UTC], ["updated_at", 2016-08-19 02:48:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 979], ["correct", false], ["created_at", 2016-08-19 02:48:23 UTC], ["updated_at", 2016-08-19 02:48:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 979], ["correct", false], ["created_at", 2016-08-19 02:48:23 UTC], ["updated_at", 2016-08-19 02:48:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 979], ["correct", false], ["created_at", 2016-08-19 02:48:23 UTC], ["updated_at", 2016-08-19 02:48:23 UTC]]  (149.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o primeiro discípulo a perder a sua vida?"], ["created_at", 2016-08-19 02:48:23 UTC], ["updated_at", 2016-08-19 02:48:23 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas Iscariotes"], ["question_id", 980], ["correct", true], ["created_at", 2016-08-19 02:48:24 UTC], ["updated_at", 2016-08-19 02:48:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 980], ["correct", false], ["created_at", 2016-08-19 02:48:24 UTC], ["updated_at", 2016-08-19 02:48:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 980], ["correct", false], ["created_at", 2016-08-19 02:48:24 UTC], ["updated_at", 2016-08-19 02:48:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mateus"], ["question_id", 980], ["correct", false], ["created_at", 2016-08-19 02:48:24 UTC], ["updated_at", 2016-08-19 02:48:24 UTC]]  (133.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o profeta que antecedeu a João Batista?"], ["created_at", 2016-08-19 02:48:24 UTC], ["updated_at", 2016-08-19 02:48:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Malaquias"], ["question_id", 981], ["correct", true], ["created_at", 2016-08-19 02:48:24 UTC], ["updated_at", 2016-08-19 02:48:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias"], ["question_id", 981], ["correct", false], ["created_at", 2016-08-19 02:48:24 UTC], ["updated_at", 2016-08-19 02:48:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obadias"], ["question_id", 981], ["correct", false], ["created_at", 2016-08-19 02:48:24 UTC], ["updated_at", 2016-08-19 02:48:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 981], ["correct", false], ["created_at", 2016-08-19 02:48:24 UTC], ["updated_at", 2016-08-19 02:48:24 UTC]]  (124.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o profeta que apareceu após Malaquias?"], ["created_at", 2016-08-19 02:48:24 UTC], ["updated_at", 2016-08-19 02:48:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 982], ["correct", true], ["created_at", 2016-08-19 02:48:24 UTC], ["updated_at", 2016-08-19 02:48:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias"], ["question_id", 982], ["correct", false], ["created_at", 2016-08-19 02:48:24 UTC], ["updated_at", 2016-08-19 02:48:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obadias"], ["question_id", 982], ["correct", false], ["created_at", 2016-08-19 02:48:24 UTC], ["updated_at", 2016-08-19 02:48:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 982], ["correct", false], ["created_at", 2016-08-19 02:48:24 UTC], ["updated_at", 2016-08-19 02:48:24 UTC]]  (124.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o profeta que era conhecido como o \"profeta que chorava\"?"], ["created_at", 2016-08-19 02:48:24 UTC], ["updated_at", 2016-08-19 02:48:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeremias"], ["question_id", 983], ["correct", true], ["created_at", 2016-08-19 02:48:24 UTC], ["updated_at", 2016-08-19 02:48:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sofonias"], ["question_id", 983], ["correct", false], ["created_at", 2016-08-19 02:48:24 UTC], ["updated_at", 2016-08-19 02:48:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miquéias"], ["question_id", 983], ["correct", false], ["created_at", 2016-08-19 02:48:24 UTC], ["updated_at", 2016-08-19 02:48:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 983], ["correct", false], ["created_at", 2016-08-19 02:48:24 UTC], ["updated_at", 2016-08-19 02:48:24 UTC]]  (134.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o profeta que sucedeu a Samuel?"], ["created_at", 2016-08-19 02:48:24 UTC], ["updated_at", 2016-08-19 02:48:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Natã"], ["question_id", 984], ["correct", true], ["created_at", 2016-08-19 02:48:24 UTC], ["updated_at", 2016-08-19 02:48:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 984], ["correct", false], ["created_at", 2016-08-19 02:48:24 UTC], ["updated_at", 2016-08-19 02:48:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 984], ["correct", false], ["created_at", 2016-08-19 02:48:24 UTC], ["updated_at", 2016-08-19 02:48:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 984], ["correct", false], ["created_at", 2016-08-19 02:48:24 UTC], ["updated_at", 2016-08-19 02:48:24 UTC]]  (108.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o rei mais cruel que o povo de Israel já teve como governante?"], ["created_at", 2016-08-19 02:48:24 UTC], ["updated_at", 2016-08-19 02:48:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 985], ["correct", true], ["created_at", 2016-08-19 02:48:24 UTC], ["updated_at", 2016-08-19 02:48:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 985], ["correct", false], ["created_at", 2016-08-19 02:48:24 UTC], ["updated_at", 2016-08-19 02:48:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeocadias"], ["question_id", 985], ["correct", false], ["created_at", 2016-08-19 02:48:24 UTC], ["updated_at", 2016-08-19 02:48:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sofonias"], ["question_id", 985], ["correct", false], ["created_at", 2016-08-19 02:48:24 UTC], ["updated_at", 2016-08-19 02:48:24 UTC]]  (159.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o rei que destruiu os muros de Jerusalém?"], ["created_at", 2016-08-19 02:48:24 UTC], ["updated_at", 2016-08-19 02:48:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 986], ["correct", true], ["created_at", 2016-08-19 02:48:24 UTC], ["updated_at", 2016-08-19 02:48:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 986], ["correct", false], ["created_at", 2016-08-19 02:48:24 UTC], ["updated_at", 2016-08-19 02:48:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiglete-pileser"], ["question_id", 986], ["correct", false], ["created_at", 2016-08-19 02:48:24 UTC], ["updated_at", 2016-08-19 02:48:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assuero"], ["question_id", 986], ["correct", false], ["created_at", 2016-08-19 02:48:24 UTC], ["updated_at", 2016-08-19 02:48:24 UTC]]  (242.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o último grande líder da nação babilônica?"], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 987], ["correct", true], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assuero"], ["question_id", 987], ["correct", false], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acaz"], ["question_id", 987], ["correct", false], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belsazar"], ["question_id", 987], ["correct", false], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]]  (134.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o último livro da Bíblia a ser escrito?"], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Iii João"], ["question_id", 988], ["correct", true], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apocalipse"], ["question_id", 988], ["correct", false], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mateus"], ["question_id", 988], ["correct", false], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Romanos"], ["question_id", 988], ["correct", false], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]]  (125.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o único dos doze apóstolos que não era Galileu?\n1,"], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas"], ["question_id", 989], ["correct", true], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mateus"], ["question_id", 989], ["correct", false], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 989], ["correct", false], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Simão"], ["question_id", 989], ["correct", false], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]]  (149.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual ídolo foi a principal deusa de Tiro, conhecida também como \"A Dama do Mar\" no livro dos judeus?"], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Asera"], ["question_id", 990], ["correct", true], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Diana"], ["question_id", 990], ["correct", false], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nebo"], ["question_id", 990], ["correct", false], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Baal"], ["question_id", 990], ["correct", false], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]]  (133.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual ídolo representava o deus do conhecimento e da literatura de Babilônia?"], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nebo"], ["question_id", 991], ["correct", true], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mercúrio"], ["question_id", 991], ["correct", false], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gade"], ["question_id", 991], ["correct", false], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mefibosete"], ["question_id", 991], ["correct", false], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]]  (141.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual ídolo também era conhecido por Tiro como a \"Deusa do Mar\"?"], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Asera"], ["question_id", 992], ["correct", true], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Posseidon"], ["question_id", 992], ["correct", false], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Diana"], ["question_id", 992], ["correct", false], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nebo"], ["question_id", 992], ["correct", false], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]]  (142.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual imperador Romano decretou que todos deveriam pagar impostos?"], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "César Augusto"], ["question_id", 993], ["correct", true], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "César Felipe"], ["question_id", 993], ["correct", false], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rômulo"], ["question_id", 993], ["correct", false], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Remo"], ["question_id", 993], ["correct", false], ["created_at", 2016-08-19 02:48:25 UTC], ["updated_at", 2016-08-19 02:48:25 UTC]]  (142.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual imposto deveria ser pago com a moeda que Pedro encontrou dentro da boca de um peixe?"], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Manutenção do Templo de Jerusalém"], ["question_id", 994], ["correct", true], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dízimo"], ["question_id", 994], ["correct", false], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Imposto Cobrador Pepo Imperador Romano César"], ["question_id", 994], ["correct", false], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Compra de Alimentos Aos Necessitados"], ["question_id", 994], ["correct", false], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]]  (143.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual instrumento era tocado pela orquestra criada pelo rei Davi?"], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todas As Respostas Estão Corretas"], ["question_id", 995], ["correct", true], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Clarins"], ["question_id", 995], ["correct", false], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Címbalos"], ["question_id", 995], ["correct", false], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Alaúdes"], ["question_id", 995], ["correct", false], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]]  (142.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual juiz de Israel tinha 30 filhos que cavalgavam 30 jumentos?\n1,"], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jair"], ["question_id", 996], ["correct", true], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abimeleque"], ["question_id", 996], ["correct", false], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samir"], ["question_id", 996], ["correct", false], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Puá"], ["question_id", 996], ["correct", false], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]]  (150.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual mandamento nos instrui a respeitar a vida do próximo?"], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "6º"], ["question_id", 997], ["correct", true], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5º"], ["question_id", 997], ["correct", false], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7º"], ["question_id", 997], ["correct", false], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "8º"], ["question_id", 997], ["correct", false], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]]  (124.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual mar dividiu-se em dois para permitir que o povo hebreu escapasse da perseguição do Faraó?"], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vermelho"], ["question_id", 998], ["correct", true], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Galiléia"], ["question_id", 998], ["correct", false], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Morto"], ["question_id", 998], ["correct", false], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mediterrâneo"], ["question_id", 998], ["correct", false], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]]  (116.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual Monte marcava ao norte os limites de Israel?"], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hermon"], ["question_id", 999], ["correct", true], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hebrom"], ["question_id", 999], ["correct", false], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carmelo"], ["question_id", 999], ["correct", false], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gerizim"], ["question_id", 999], ["correct", false], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]]  (125.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual mulher liderou um exército em uma batalha?"], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Débora"], ["question_id", 1000], ["correct", true], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 1000], ["correct", false], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jezabel"], ["question_id", 1000], ["correct", false], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dalila"], ["question_id", 1000], ["correct", false], ["created_at", 2016-08-19 02:48:26 UTC], ["updated_at", 2016-08-19 02:48:26 UTC]]  (124.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual nação o rei Sisaque governava quanto atacou Jerusalém e saqueou o Templo?"], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egípcia"], ["question_id", 1001], ["correct", true], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônica"], ["question_id", 1001], ["correct", false], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Grega"], ["question_id", 1001], ["correct", false], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Medo-persa"], ["question_id", 1001], ["correct", false], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]]  (108.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual nação tomou o povo israelita como escravo por aproximadamente 400 anos?"], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egito"], ["question_id", 1002], ["correct", true], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Grécia"], ["question_id", 1002], ["correct", false], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônia"], ["question_id", 1002], ["correct", false], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pérsia"], ["question_id", 1002], ["correct", false], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]]  (124.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual o homem que, depois de morto, matou mais pessoas que em sua vida?"], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 1003], ["correct", true], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1003], ["correct", false], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 1003], ["correct", false], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1003], ["correct", false], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]]  (124.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual o nome do filho do rei Ezequias que ocupou o trono real após sua morte?"], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Manassés"], ["question_id", 1004], ["correct", true], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josias"], ["question_id", 1004], ["correct", false], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hilquias"], ["question_id", 1004], ["correct", false], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acaz"], ["question_id", 1004], ["correct", false], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]]  (107.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual o nome do jovem que estava dormindo sentado em uma janela enquanto Paulo pregava a mensagem?"], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Êutico"], ["question_id", 1005], ["correct", true], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sópatro"], ["question_id", 1005], ["correct", false], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tíquico"], ["question_id", 1005], ["correct", false], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trófimo"], ["question_id", 1005], ["correct", false], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]]  (124.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual o nome do pai de Rebeca?"], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Betuel"], ["question_id", 1006], ["correct", true], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1006], ["correct", false], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ló"], ["question_id", 1006], ["correct", false], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noé"], ["question_id", 1006], ["correct", false], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]]  (183.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual o nome que deram à serpente de bronze levantada por Moisés no deserto?"], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Neustã"], ["question_id", 1007], ["correct", true], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mefibosete"], ["question_id", 1007], ["correct", false], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dagom"], ["question_id", 1007], ["correct", false], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acalã"], ["question_id", 1007], ["correct", false], ["created_at", 2016-08-19 02:48:27 UTC], ["updated_at", 2016-08-19 02:48:27 UTC]]  (159.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual o percentual do Novo Testamento que foi escrito em grego?"], ["created_at", 2016-08-19 02:48:28 UTC], ["updated_at", 2016-08-19 02:48:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "100%"], ["question_id", 1008], ["correct", true], ["created_at", 2016-08-19 02:48:28 UTC], ["updated_at", 2016-08-19 02:48:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "50%"], ["question_id", 1008], ["correct", false], ["created_at", 2016-08-19 02:48:28 UTC], ["updated_at", 2016-08-19 02:48:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "80%"], ["question_id", 1008], ["correct", false], ["created_at", 2016-08-19 02:48:28 UTC], ["updated_at", 2016-08-19 02:48:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "90%"], ["question_id", 1008], ["correct", false], ["created_at", 2016-08-19 02:48:28 UTC], ["updated_at", 2016-08-19 02:48:28 UTC]]  (217.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual o rei que adivinhava pelas nuvens, praticava feitiçaria e queimou o seu filho em sacrifício?"], ["created_at", 2016-08-19 02:48:28 UTC], ["updated_at", 2016-08-19 02:48:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Manassés"], ["question_id", 1009], ["correct", true], ["created_at", 2016-08-19 02:48:28 UTC], ["updated_at", 2016-08-19 02:48:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 1009], ["correct", false], ["created_at", 2016-08-19 02:48:28 UTC], ["updated_at", 2016-08-19 02:48:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josias"], ["question_id", 1009], ["correct", false], ["created_at", 2016-08-19 02:48:28 UTC], ["updated_at", 2016-08-19 02:48:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 1009], ["correct", false], ["created_at", 2016-08-19 02:48:28 UTC], ["updated_at", 2016-08-19 02:48:28 UTC]]  (166.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual planta deveria ser utilizada para aplicar o sangue do cordeiro nos batentes da porta das casas dos israelitas?"], ["created_at", 2016-08-19 02:48:28 UTC], ["updated_at", 2016-08-19 02:48:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hissopo"], ["question_id", 1010], ["correct", true], ["created_at", 2016-08-19 02:48:28 UTC], ["updated_at", 2016-08-19 02:48:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vitória-régia"], ["question_id", 1010], ["correct", false], ["created_at", 2016-08-19 02:48:28 UTC], ["updated_at", 2016-08-19 02:48:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Líbano"], ["question_id", 1010], ["correct", false], ["created_at", 2016-08-19 02:48:28 UTC], ["updated_at", 2016-08-19 02:48:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cipreste"], ["question_id", 1010], ["correct", false], ["created_at", 2016-08-19 02:48:28 UTC], ["updated_at", 2016-08-19 02:48:28 UTC]]  (133.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual povo considerava Dago como o principal deus da agricultura?"], ["created_at", 2016-08-19 02:48:28 UTC], ["updated_at", 2016-08-19 02:48:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filisteu"], ["question_id", 1011], ["correct", true], ["created_at", 2016-08-19 02:48:28 UTC], ["updated_at", 2016-08-19 02:48:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cananeu"], ["question_id", 1011], ["correct", false], ["created_at", 2016-08-19 02:48:28 UTC], ["updated_at", 2016-08-19 02:48:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenício"], ["question_id", 1011], ["correct", false], ["created_at", 2016-08-19 02:48:28 UTC], ["updated_at", 2016-08-19 02:48:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egípcio"], ["question_id", 1011], ["correct", false], ["created_at", 2016-08-19 02:48:28 UTC], ["updated_at", 2016-08-19 02:48:28 UTC]]  (149.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual povo depositou na Arca da Aliança 5 camundongos de ouro quando a mesma foi devolvida aos israelitas?"], ["created_at", 2016-08-19 02:48:28 UTC], ["updated_at", 2016-08-19 02:48:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filisteus"], ["question_id", 1012], ["correct", true], ["created_at", 2016-08-19 02:48:28 UTC], ["updated_at", 2016-08-19 02:48:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amorreus"], ["question_id", 1012], ["correct", false], ["created_at", 2016-08-19 02:48:28 UTC], ["updated_at", 2016-08-19 02:48:28 UTC]] SQL (15.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cananeus"], ["question_id", 1012], ["correct", false], ["created_at", 2016-08-19 02:48:28 UTC], ["updated_at", 2016-08-19 02:48:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Galileus"], ["question_id", 1012], ["correct", false], ["created_at", 2016-08-19 02:48:28 UTC], ["updated_at", 2016-08-19 02:48:28 UTC]]  (126.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual povo tinha como divindade o deus Moloque, que exigia o sacrifício de crianças?"], ["created_at", 2016-08-19 02:48:28 UTC], ["updated_at", 2016-08-19 02:48:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amonita"], ["question_id", 1013], ["correct", true], ["created_at", 2016-08-19 02:48:28 UTC], ["updated_at", 2016-08-19 02:48:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moabita"], ["question_id", 1013], ["correct", false], ["created_at", 2016-08-19 02:48:28 UTC], ["updated_at", 2016-08-19 02:48:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cananeu"], ["question_id", 1013], ["correct", false], ["created_at", 2016-08-19 02:48:28 UTC], ["updated_at", 2016-08-19 02:48:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filisteu"], ["question_id", 1013], ["correct", false], ["created_at", 2016-08-19 02:48:28 UTC], ["updated_at", 2016-08-19 02:48:28 UTC]]  (133.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual povo, provido por Deus, peregrinou pelo deserto durante 40 anos?"], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Israelita"], ["question_id", 1014], ["correct", true], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mobita"], ["question_id", 1014], ["correct", false], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cananeu"], ["question_id", 1014], ["correct", false], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amorreu"], ["question_id", 1014], ["correct", false], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]]  (125.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual profeta a rainha Jezabel tentou matar?"], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 1015], ["correct", true], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 1015], ["correct", false], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 1015], ["correct", false], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 1015], ["correct", false], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]]  (120.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual profeta antecedeu a Namã?"], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel"], ["question_id", 1016], ["correct", true], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 1016], ["correct", false], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 1016], ["correct", false], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eli"], ["question_id", 1016], ["correct", false], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]]  (120.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual profeta disse a mensagem ao rei Jeroboão de que todos os filhos da casa real seriam mortos?"], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aías"], ["question_id", 1017], ["correct", true], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 1017], ["correct", false], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matias"], ["question_id", 1017], ["correct", false], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 1017], ["correct", false], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]]  (103.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual profeta foi atirado em uma cisterna para afundar na lama e ser deixado lá para morrer?"], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeremias"], ["question_id", 1018], ["correct", true], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obadias"], ["question_id", 1018], ["correct", false], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 1018], ["correct", false], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Habacuque"], ["question_id", 1018], ["correct", false], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]]  (127.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual profeta foi chamado para dizer sobre a condição de saúde do filho de Jeroboão, quando este adoeceu?"], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aías"], ["question_id", 1019], ["correct", true], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 1019], ["correct", false], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 1019], ["correct", false], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sofonias"], ["question_id", 1019], ["correct", false], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]]  (125.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual profeta foi o pai de João Batista?"], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias"], ["question_id", 1020], ["correct", true], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 1020], ["correct", false], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 1020], ["correct", false], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Malaquias"], ["question_id", 1020], ["correct", false], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]]  (124.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual profeta impulsionou os judeus para que terminassem a reconstrução do Templo, após o retorno da Babilônia?"], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias"], ["question_id", 1021], ["correct", true], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ageu"], ["question_id", 1021], ["correct", false], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esdras"], ["question_id", 1021], ["correct", false], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 1021], ["correct", false], ["created_at", 2016-08-19 02:48:29 UTC], ["updated_at", 2016-08-19 02:48:29 UTC]]  (224.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual profeta predisse ao rei Ezequias que os tesouros do Templo seriam levados?"], ["created_at", 2016-08-19 02:48:30 UTC], ["updated_at", 2016-08-19 02:48:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 1022], ["correct", true], ["created_at", 2016-08-19 02:48:30 UTC], ["updated_at", 2016-08-19 02:48:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obadias"], ["question_id", 1022], ["correct", false], ["created_at", 2016-08-19 02:48:30 UTC], ["updated_at", 2016-08-19 02:48:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 1022], ["correct", false], ["created_at", 2016-08-19 02:48:30 UTC], ["updated_at", 2016-08-19 02:48:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Natã"], ["question_id", 1022], ["correct", false], ["created_at", 2016-08-19 02:48:30 UTC], ["updated_at", 2016-08-19 02:48:30 UTC]]  (149.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual profeta se inspirava ouvindo música?"], ["created_at", 2016-08-19 02:48:30 UTC], ["updated_at", 2016-08-19 02:48:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 1023], ["correct", true], ["created_at", 2016-08-19 02:48:30 UTC], ["updated_at", 2016-08-19 02:48:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 1023], ["correct", false], ["created_at", 2016-08-19 02:48:30 UTC], ["updated_at", 2016-08-19 02:48:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias"], ["question_id", 1023], ["correct", false], ["created_at", 2016-08-19 02:48:30 UTC], ["updated_at", 2016-08-19 02:48:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Habacuque"], ["question_id", 1023], ["correct", false], ["created_at", 2016-08-19 02:48:30 UTC], ["updated_at", 2016-08-19 02:48:30 UTC]]  (166.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual profeta transformou-se em sacerdote?"], ["created_at", 2016-08-19 02:48:30 UTC], ["updated_at", 2016-08-19 02:48:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias"], ["question_id", 1024], ["correct", true], ["created_at", 2016-08-19 02:48:30 UTC], ["updated_at", 2016-08-19 02:48:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 1024], ["correct", false], ["created_at", 2016-08-19 02:48:30 UTC], ["updated_at", 2016-08-19 02:48:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 1024], ["correct", false], ["created_at", 2016-08-19 02:48:30 UTC], ["updated_at", 2016-08-19 02:48:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel"], ["question_id", 1024], ["correct", false], ["created_at", 2016-08-19 02:48:30 UTC], ["updated_at", 2016-08-19 02:48:30 UTC]]  (148.8ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual profissão Jesus aprendeu de seu pai?"], ["created_at", 2016-08-19 02:48:30 UTC], ["updated_at", 2016-08-19 02:48:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carpintaria"], ["question_id", 1025], ["correct", true], ["created_at", 2016-08-19 02:48:30 UTC], ["updated_at", 2016-08-19 02:48:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marcenaria"], ["question_id", 1025], ["correct", false], ["created_at", 2016-08-19 02:48:30 UTC], ["updated_at", 2016-08-19 02:48:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Alfaiataria"], ["question_id", 1025], ["correct", false], ["created_at", 2016-08-19 02:48:30 UTC], ["updated_at", 2016-08-19 02:48:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Construção Naval"], ["question_id", 1025], ["correct", false], ["created_at", 2016-08-19 02:48:30 UTC], ["updated_at", 2016-08-19 02:48:30 UTC]]  (128.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rainha foi visitar o rei Salomão em Jerusalém?"], ["created_at", 2016-08-19 02:48:30 UTC], ["updated_at", 2016-08-19 02:48:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sabá"], ["question_id", 1026], ["correct", true], ["created_at", 2016-08-19 02:48:30 UTC], ["updated_at", 2016-08-19 02:48:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vasti"], ["question_id", 1026], ["correct", false], ["created_at", 2016-08-19 02:48:30 UTC], ["updated_at", 2016-08-19 02:48:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ester"], ["question_id", 1026], ["correct", false], ["created_at", 2016-08-19 02:48:30 UTC], ["updated_at", 2016-08-19 02:48:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rute"], ["question_id", 1026], ["correct", false], ["created_at", 2016-08-19 02:48:30 UTC], ["updated_at", 2016-08-19 02:48:30 UTC]]  (126.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei a rainha de Sabá foi visitar em Jerusalém?"], ["created_at", 2016-08-19 02:48:30 UTC], ["updated_at", 2016-08-19 02:48:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1027], ["correct", true], ["created_at", 2016-08-19 02:48:30 UTC], ["updated_at", 2016-08-19 02:48:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1027], ["correct", false], ["created_at", 2016-08-19 02:48:30 UTC], ["updated_at", 2016-08-19 02:48:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ezequias"], ["question_id", 1027], ["correct", false], ["created_at", 2016-08-19 02:48:30 UTC], ["updated_at", 2016-08-19 02:48:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 1027], ["correct", false], ["created_at", 2016-08-19 02:48:30 UTC], ["updated_at", 2016-08-19 02:48:30 UTC]]  (109.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei antecedeu o governo de Belsazar no império Babilônico?"], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 1028], ["correct", true], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiro"], ["question_id", 1028], ["correct", false], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 1028], ["correct", false], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Filho de Belsazar"], ["question_id", 1028], ["correct", false], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]]  (142.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei antecedeu o reinado de Roboão?"], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1029], ["correct", true], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1029], ["correct", false], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 1029], ["correct", false], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jedidias"], ["question_id", 1029], ["correct", false], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]]  (124.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei Atalia tentou destruir?"], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeoás"], ["question_id", 1030], ["correct", true], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ezequias"], ["question_id", 1030], ["correct", false], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 1030], ["correct", false], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josias"], ["question_id", 1030], ["correct", false], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]]  (132.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei babilônico teve sonhos onde Daniel afirmou que apenas Deus era capaz de interpretá-los?"], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 1031], ["correct", true], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiglete-pileser"], ["question_id", 1031], ["correct", false], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 1031], ["correct", false], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belsazar"], ["question_id", 1031], ["correct", false], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]]  (133.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei babilônico travou uma batalha contra o rei Neco do Egito e derrotou-o na cidade de Carquêmis?"], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 1032], ["correct", true], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiro"], ["question_id", 1032], ["correct", false], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 1032], ["correct", false], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belsazar"], ["question_id", 1032], ["correct", false], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]]  (142.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei construiu altares a Baal e erigiu uma estátua da deusa Asera no Templo de Jerusalém?"], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Manassés"], ["question_id", 1033], ["correct", true], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ezequias"], ["question_id", 1033], ["correct", false], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 1033], ["correct", false], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1033], ["correct", false], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]]  (141.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei da Assíria levou cativo todo o povo do reino do norte de Israel?"], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salmaneser"], ["question_id", 1034], ["correct", true], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sargão"], ["question_id", 1034], ["correct", false], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiglete-pileser"], ["question_id", 1034], ["correct", false], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 1034], ["correct", false], ["created_at", 2016-08-19 02:48:31 UTC], ["updated_at", 2016-08-19 02:48:31 UTC]]  (140.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei da Babilônia mandou jogar os amigos de Daniel em uma fornalha ardente?"], ["created_at", 2016-08-19 02:48:32 UTC], ["updated_at", 2016-08-19 02:48:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 1035], ["correct", true], ["created_at", 2016-08-19 02:48:32 UTC], ["updated_at", 2016-08-19 02:48:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 1035], ["correct", false], ["created_at", 2016-08-19 02:48:32 UTC], ["updated_at", 2016-08-19 02:48:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiro"], ["question_id", 1035], ["correct", false], ["created_at", 2016-08-19 02:48:32 UTC], ["updated_at", 2016-08-19 02:48:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belsazar"], ["question_id", 1035], ["correct", false], ["created_at", 2016-08-19 02:48:32 UTC], ["updated_at", 2016-08-19 02:48:32 UTC]]  (141.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei da Babilônia mandou jogar os amigos de Daniel na cova dos leões?"], ["created_at", 2016-08-19 02:48:32 UTC], ["updated_at", 2016-08-19 02:48:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhum"], ["question_id", 1036], ["correct", true], ["created_at", 2016-08-19 02:48:32 UTC], ["updated_at", 2016-08-19 02:48:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 1036], ["correct", false], ["created_at", 2016-08-19 02:48:32 UTC], ["updated_at", 2016-08-19 02:48:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiro"], ["question_id", 1036], ["correct", false], ["created_at", 2016-08-19 02:48:32 UTC], ["updated_at", 2016-08-19 02:48:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belsazar"], ["question_id", 1036], ["correct", false], ["created_at", 2016-08-19 02:48:32 UTC], ["updated_at", 2016-08-19 02:48:32 UTC]]  (149.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei de Israel tinha 700 esposas?"], ["created_at", 2016-08-19 02:48:32 UTC], ["updated_at", 2016-08-19 02:48:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1037], ["correct", true], ["created_at", 2016-08-19 02:48:32 UTC], ["updated_at", 2016-08-19 02:48:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1037], ["correct", false], ["created_at", 2016-08-19 02:48:32 UTC], ["updated_at", 2016-08-19 02:48:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ezequias"], ["question_id", 1037], ["correct", false], ["created_at", 2016-08-19 02:48:32 UTC], ["updated_at", 2016-08-19 02:48:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 1037], ["correct", false], ["created_at", 2016-08-19 02:48:32 UTC], ["updated_at", 2016-08-19 02:48:32 UTC]]  (124.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei de Judá construiu um túnel que permitiu que fosse trazida água para a cidade de Jerusalém?"], ["created_at", 2016-08-19 02:48:32 UTC], ["updated_at", 2016-08-19 02:48:32 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ezequias"], ["question_id", 1038], ["correct", true], ["created_at", 2016-08-19 02:48:32 UTC], ["updated_at", 2016-08-19 02:48:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zerubabel"], ["question_id", 1038], ["correct", false], ["created_at", 2016-08-19 02:48:32 UTC], ["updated_at", 2016-08-19 02:48:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 1038], ["correct", false], ["created_at", 2016-08-19 02:48:32 UTC], ["updated_at", 2016-08-19 02:48:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1038], ["correct", false], ["created_at", 2016-08-19 02:48:32 UTC], ["updated_at", 2016-08-19 02:48:32 UTC]]  (125.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei de Judá foi capturado na cidade de Jericó, após ter escapado do 3º ataque do rei Nabucodonosor?"], ["created_at", 2016-08-19 02:48:32 UTC], ["updated_at", 2016-08-19 02:48:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zedequias"], ["question_id", 1039], ["correct", true], ["created_at", 2016-08-19 02:48:32 UTC], ["updated_at", 2016-08-19 02:48:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josias"], ["question_id", 1039], ["correct", false], ["created_at", 2016-08-19 02:48:32 UTC], ["updated_at", 2016-08-19 02:48:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joás"], ["question_id", 1039], ["correct", false], ["created_at", 2016-08-19 02:48:32 UTC], ["updated_at", 2016-08-19 02:48:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 1039], ["correct", false], ["created_at", 2016-08-19 02:48:32 UTC], ["updated_at", 2016-08-19 02:48:32 UTC]]  (133.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei devolveu a Mefibosete todas as propriedades pessoais de Saul?"], ["created_at", 2016-08-19 02:48:32 UTC], ["updated_at", 2016-08-19 02:48:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1040], ["correct", true], ["created_at", 2016-08-19 02:48:32 UTC], ["updated_at", 2016-08-19 02:48:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1040], ["correct", false], ["created_at", 2016-08-19 02:48:32 UTC], ["updated_at", 2016-08-19 02:48:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 1040], ["correct", false], ["created_at", 2016-08-19 02:48:32 UTC], ["updated_at", 2016-08-19 02:48:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josias"], ["question_id", 1040], ["correct", false], ["created_at", 2016-08-19 02:48:32 UTC], ["updated_at", 2016-08-19 02:48:32 UTC]]  (140.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei do Egito atacou Jerusalém e saqueou o Templo, roubando assim seus tesouros?"], ["created_at", 2016-08-19 02:48:32 UTC], ["updated_at", 2016-08-19 02:48:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sisaque"], ["question_id", 1041], ["correct", true], ["created_at", 2016-08-19 02:48:32 UTC], ["updated_at", 2016-08-19 02:48:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 1041], ["correct", false], ["created_at", 2016-08-19 02:48:32 UTC], ["updated_at", 2016-08-19 02:48:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiglate-pileser"], ["question_id", 1041], ["correct", false], ["created_at", 2016-08-19 02:48:33 UTC], ["updated_at", 2016-08-19 02:48:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 1041], ["correct", false], ["created_at", 2016-08-19 02:48:33 UTC], ["updated_at", 2016-08-19 02:48:33 UTC]]  (150.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei egípcio travou uma batalha contra o rei Nabucodonosor e foi derrotado na cidade de Carquêmis?"], ["created_at", 2016-08-19 02:48:33 UTC], ["updated_at", 2016-08-19 02:48:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Neco"], ["question_id", 1042], ["correct", true], ["created_at", 2016-08-19 02:48:33 UTC], ["updated_at", 2016-08-19 02:48:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cleópatra"], ["question_id", 1042], ["correct", false], ["created_at", 2016-08-19 02:48:33 UTC], ["updated_at", 2016-08-19 02:48:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noen"], ["question_id", 1042], ["correct", false], ["created_at", 2016-08-19 02:48:33 UTC], ["updated_at", 2016-08-19 02:48:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Niloron"], ["question_id", 1042], ["correct", false], ["created_at", 2016-08-19 02:48:33 UTC], ["updated_at", 2016-08-19 02:48:33 UTC]]  (126.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei foi morto por uma flecha atirada ao acaso?"], ["created_at", 2016-08-19 02:48:33 UTC], ["updated_at", 2016-08-19 02:48:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 1043], ["correct", true], ["created_at", 2016-08-19 02:48:33 UTC], ["updated_at", 2016-08-19 02:48:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1043], ["correct", false], ["created_at", 2016-08-19 02:48:33 UTC], ["updated_at", 2016-08-19 02:48:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ezequias"], ["question_id", 1043], ["correct", false], ["created_at", 2016-08-19 02:48:33 UTC], ["updated_at", 2016-08-19 02:48:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adonias"], ["question_id", 1043], ["correct", false], ["created_at", 2016-08-19 02:48:33 UTC], ["updated_at", 2016-08-19 02:48:33 UTC]]  (199.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei foi questionado pelo profeta Namã?"], ["created_at", 2016-08-19 02:48:33 UTC], ["updated_at", 2016-08-19 02:48:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1044], ["correct", true], ["created_at", 2016-08-19 02:48:33 UTC], ["updated_at", 2016-08-19 02:48:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1044], ["correct", false], ["created_at", 2016-08-19 02:48:33 UTC], ["updated_at", 2016-08-19 02:48:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 1044], ["correct", false], ["created_at", 2016-08-19 02:48:33 UTC], ["updated_at", 2016-08-19 02:48:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 1044], ["correct", false], ["created_at", 2016-08-19 02:48:33 UTC], ["updated_at", 2016-08-19 02:48:33 UTC]]  (132.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei juntamente com seus filhos foram derrotados pelos filisteus no Monte Gilboa?"], ["created_at", 2016-08-19 02:48:33 UTC], ["updated_at", 2016-08-19 02:48:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 1045], ["correct", true], ["created_at", 2016-08-19 02:48:33 UTC], ["updated_at", 2016-08-19 02:48:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1045], ["correct", false], ["created_at", 2016-08-19 02:48:33 UTC], ["updated_at", 2016-08-19 02:48:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1045], ["correct", false], ["created_at", 2016-08-19 02:48:33 UTC], ["updated_at", 2016-08-19 02:48:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acaz"], ["question_id", 1045], ["correct", false], ["created_at", 2016-08-19 02:48:33 UTC], ["updated_at", 2016-08-19 02:48:33 UTC]]  (124.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei mandou buscar o profeta Aías quando seu filho adoeceu?"], ["created_at", 2016-08-19 02:48:33 UTC], ["updated_at", 2016-08-19 02:48:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeroboão"], ["question_id", 1046], ["correct", true], ["created_at", 2016-08-19 02:48:33 UTC], ["updated_at", 2016-08-19 02:48:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Roboão"], ["question_id", 1046], ["correct", false], ["created_at", 2016-08-19 02:48:33 UTC], ["updated_at", 2016-08-19 02:48:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1046], ["correct", false], ["created_at", 2016-08-19 02:48:33 UTC], ["updated_at", 2016-08-19 02:48:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zedequias"], ["question_id", 1046], ["correct", false], ["created_at", 2016-08-19 02:48:33 UTC], ["updated_at", 2016-08-19 02:48:33 UTC]]  (309.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei mandou chamar adivinhos e magos para decifrar os sonhos que tinha?"], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 1047], ["correct", true], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 1047], ["correct", false], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiro"], ["question_id", 1047], ["correct", false], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belsazar"], ["question_id", 1047], ["correct", false], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]]  (124.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei mostrou os tesouros do Templo aos babilônios?"], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ezequias"], ["question_id", 1048], ["correct", true], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 1048], ["correct", false], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 1048], ["correct", false], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adonias"], ["question_id", 1048], ["correct", false], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]]  (125.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei o sacerdote Samuel ungiu como rei de Israel?"], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1049], ["correct", true], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1049], ["correct", false], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Malaquias"], ["question_id", 1049], ["correct", false], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obadias"], ["question_id", 1049], ["correct", false], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]]  (133.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei pagava 150 ciclos de prata por um cavalo?"], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1050], ["correct", true], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1050], ["correct", false], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 1050], ["correct", false], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 1050], ["correct", false], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]]  (126.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei persa jogou Daniel na cova dos leões?"], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 1051], ["correct", true], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiro"], ["question_id", 1051], ["correct", false], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 1051], ["correct", false], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Constantino"], ["question_id", 1051], ["correct", false], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]]  (124.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei queria capturar Elias?"], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 1052], ["correct", true], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeoás"], ["question_id", 1052], ["correct", false], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amazias"], ["question_id", 1052], ["correct", false], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josias"], ["question_id", 1052], ["correct", false], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]]  (133.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei sucedeu o governo de Nabucodonosor no império Babilônico?"], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belsazar"], ["question_id", 1053], ["correct", true], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 1053], ["correct", false], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiro"], ["question_id", 1053], ["correct", false], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Baquebacar"], ["question_id", 1053], ["correct", false], ["created_at", 2016-08-19 02:48:34 UTC], ["updated_at", 2016-08-19 02:48:34 UTC]]  (126.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei viajou pelo Monte das Oliveiras fugindo do seu filho rebelde?"], ["created_at", 2016-08-19 02:48:35 UTC], ["updated_at", 2016-08-19 02:48:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1054], ["correct", true], ["created_at", 2016-08-19 02:48:35 UTC], ["updated_at", 2016-08-19 02:48:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1054], ["correct", false], ["created_at", 2016-08-19 02:48:35 UTC], ["updated_at", 2016-08-19 02:48:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 1054], ["correct", false], ["created_at", 2016-08-19 02:48:35 UTC], ["updated_at", 2016-08-19 02:48:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josafá"], ["question_id", 1054], ["correct", false], ["created_at", 2016-08-19 02:48:35 UTC], ["updated_at", 2016-08-19 02:48:35 UTC]]  (125.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei, ao ter adoecido, mandou que fosse consultado o deus Baal-Zebube, para ver se sararia da sua doença?"], ["created_at", 2016-08-19 02:48:35 UTC], ["updated_at", 2016-08-19 02:48:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 1055], ["correct", true], ["created_at", 2016-08-19 02:48:35 UTC], ["updated_at", 2016-08-19 02:48:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jorão"], ["question_id", 1055], ["correct", false], ["created_at", 2016-08-19 02:48:35 UTC], ["updated_at", 2016-08-19 02:48:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acaz"], ["question_id", 1055], ["correct", false], ["created_at", 2016-08-19 02:48:35 UTC], ["updated_at", 2016-08-19 02:48:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Azarias"], ["question_id", 1055], ["correct", false], ["created_at", 2016-08-19 02:48:35 UTC], ["updated_at", 2016-08-19 02:48:35 UTC]]  (173.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual sacerdote ungiu Davi como o novo rei de Israel?"], ["created_at", 2016-08-19 02:48:35 UTC], ["updated_at", 2016-08-19 02:48:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel"], ["question_id", 1056], ["correct", true], ["created_at", 2016-08-19 02:48:35 UTC], ["updated_at", 2016-08-19 02:48:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eli"], ["question_id", 1056], ["correct", false], ["created_at", 2016-08-19 02:48:35 UTC], ["updated_at", 2016-08-19 02:48:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 1056], ["correct", false], ["created_at", 2016-08-19 02:48:35 UTC], ["updated_at", 2016-08-19 02:48:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 1056], ["correct", false], ["created_at", 2016-08-19 02:48:35 UTC], ["updated_at", 2016-08-19 02:48:35 UTC]]  (184.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual sacerdote ungiu Salomão como rei?"], ["created_at", 2016-08-19 02:48:35 UTC], ["updated_at", 2016-08-19 02:48:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zadoque"], ["question_id", 1057], ["correct", true], ["created_at", 2016-08-19 02:48:35 UTC], ["updated_at", 2016-08-19 02:48:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 1057], ["correct", false], ["created_at", 2016-08-19 02:48:35 UTC], ["updated_at", 2016-08-19 02:48:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eli"], ["question_id", 1057], ["correct", false], ["created_at", 2016-08-19 02:48:35 UTC], ["updated_at", 2016-08-19 02:48:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Natã"], ["question_id", 1057], ["correct", false], ["created_at", 2016-08-19 02:48:35 UTC], ["updated_at", 2016-08-19 02:48:35 UTC]]  (141.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual salmo possui 5 versículos exatamente iguais?"], ["created_at", 2016-08-19 02:48:35 UTC], ["updated_at", 2016-08-19 02:48:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "107"], ["question_id", 1058], ["correct", true], ["created_at", 2016-08-19 02:48:35 UTC], ["updated_at", 2016-08-19 02:48:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "119"], ["question_id", 1058], ["correct", false], ["created_at", 2016-08-19 02:48:35 UTC], ["updated_at", 2016-08-19 02:48:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "81"], ["question_id", 1058], ["correct", false], ["created_at", 2016-08-19 02:48:35 UTC], ["updated_at", 2016-08-19 02:48:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "150"], ["question_id", 1058], ["correct", false], ["created_at", 2016-08-19 02:48:35 UTC], ["updated_at", 2016-08-19 02:48:35 UTC]]  (251.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual servo de Deus teve os seus filhos mortos por um tufão?"], ["created_at", 2016-08-19 02:48:35 UTC], ["updated_at", 2016-08-19 02:48:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jó"], ["question_id", 1059], ["correct", true], ["created_at", 2016-08-19 02:48:35 UTC], ["updated_at", 2016-08-19 02:48:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ló"], ["question_id", 1059], ["correct", false], ["created_at", 2016-08-19 02:48:35 UTC], ["updated_at", 2016-08-19 02:48:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 1059], ["correct", false], ["created_at", 2016-08-19 02:48:35 UTC], ["updated_at", 2016-08-19 02:48:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 1059], ["correct", false], ["created_at", 2016-08-19 02:48:35 UTC], ["updated_at", 2016-08-19 02:48:35 UTC]]  (132.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual tio criou Ester como filha?"], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mordecai"], ["question_id", 1060], ["correct", true], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 1060], ["correct", false], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Naamã"], ["question_id", 1060], ["correct", false], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hamã"], ["question_id", 1060], ["correct", false], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]]  (124.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando 3 mil homens amarraram Sansão, o que eles fizeram com ele?"], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Leveram-no Para Os Filisteus"], ["question_id", 1061], ["correct", true], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mataram-no"], ["question_id", 1061], ["correct", false], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Colocaram-no Em Um Navio"], ["question_id", 1061], ["correct", false], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Despiram-no das Suas Vestes"], ["question_id", 1061], ["correct", false], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]]  (125.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando a Babilônia era governada pelo rei Belsazar, qual povo estava prestes a conquistar a Babilônia?"], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Persa"], ["question_id", 1062], ["correct", true], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Israelita"], ["question_id", 1062], ["correct", false], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cananeu"], ["question_id", 1062], ["correct", false], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Grego"], ["question_id", 1062], ["correct", false], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]]  (125.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando a cabeça de Sansão foi raspada, por que ele não conseguiu vencer os filisteus como nas 3 vezes anteriores?"], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque O Senhor Tinha Se Retirado Dele"], ["question_id", 1063], ["correct", true], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Os Filisteus Tinham Mais Forças do Que Ele"], ["question_id", 1063], ["correct", false], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Ele Estava Emocionalmente Abalado"], ["question_id", 1063], ["correct", false], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Ele Havia Sido Cegado"], ["question_id", 1063], ["correct", false], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]]  (124.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando a cruel rainha Jezabel morreu ela foi:"], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Devorada Pelos Cachorros"], ["question_id", 1064], ["correct", true], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Enterrada Em Uma Fosse de Lama"], ["question_id", 1064], ["correct", false], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pisada Pelos Cavalos dos Inimigos"], ["question_id", 1064], ["correct", false], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Queimada e Suas Cinzas Jogadas Aos Porcos"], ["question_id", 1064], ["correct", false], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]]  (125.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando a mulher pecadora derramou lágrimas sobre os pés de Jesus, com o que ela secou seus pés?"], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Cabelos"], ["question_id", 1065], ["correct", true], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Toalha"], ["question_id", 1065], ["correct", false], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Próprio Vestido"], ["question_id", 1065], ["correct", false], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Farinha"], ["question_id", 1065], ["correct", false], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]]  (125.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando a torre de Babel estava sendo construída, o que Deus fez às pessoas que a estavam construindo?"], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Confundiu Sua Linguagem"], ["question_id", 1066], ["correct", true], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Destruiu A Torre Com Fogo"], ["question_id", 1066], ["correct", false], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deixou-as Cegas"], ["question_id", 1066], ["correct", false], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Transformou As Pessoas Em Estátuas de Sal"], ["question_id", 1066], ["correct", false], ["created_at", 2016-08-19 02:48:36 UTC], ["updated_at", 2016-08-19 02:48:36 UTC]]  (124.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando as obras do Templo foram interrompidas por causa da oposição, quem decretou que o trabalho fosse retomado?"], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 1067], ["correct", true], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ciro"], ["question_id", 1067], ["correct", false], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Xerxes"], ["question_id", 1067], ["correct", false], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Artaxerxes"], ["question_id", 1067], ["correct", false], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]]  (133.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Dario tornou-se rei da Babilônia, para qual posição Daniel foi nomeado?"], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Presidente"], ["question_id", 1068], ["correct", true], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Profeta"], ["question_id", 1068], ["correct", false], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Governador"], ["question_id", 1068], ["correct", false], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mordomo"], ["question_id", 1068], ["correct", false], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]]  (125.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Davi desafiou Golias com sua funda e algumas pedras, o que Davi levava consigo?"], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Cajado"], ["question_id", 1069], ["correct", true], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Lança"], ["question_id", 1069], ["correct", false], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Escudo"], ["question_id", 1069], ["correct", false], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Capacete"], ["question_id", 1069], ["correct", false], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]]  (115.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Davi matou o gigante Golias, Davi era:"], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adolescente"], ["question_id", 1070], ["correct", true], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Criança"], ["question_id", 1070], ["correct", false], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adulto"], ["question_id", 1070], ["correct", false], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Idoso"], ["question_id", 1070], ["correct", false], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]]  (109.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Davi viu Bate-Seba do teto de sua casa, o que ela estava fazendo?"], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Banhando-se"], ["question_id", 1071], ["correct", true], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cozinhando"], ["question_id", 1071], ["correct", false], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Plantando"], ["question_id", 1071], ["correct", false], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cantando"], ["question_id", 1071], ["correct", false], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]]  (117.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Deus apareceu para Salomão em sonho e permitiu que ele pedisse o que quisesse, o que Salomão pediu?"], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sabedoria"], ["question_id", 1072], ["correct", true], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Riqueza"], ["question_id", 1072], ["correct", false], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filhos"], ["question_id", 1072], ["correct", false], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escravos"], ["question_id", 1072], ["correct", false], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]]  (133.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Elias foi levado para os Céus por Deus ainda vivo, o que Elias era:"], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Profeta de Deus"], ["question_id", 1073], ["correct", true], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Rei de Israel"], ["question_id", 1073], ["correct", false], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Juiz de Israel"], ["question_id", 1073], ["correct", false], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Servo Bom e Fiel"], ["question_id", 1073], ["correct", false], ["created_at", 2016-08-19 02:48:37 UTC], ["updated_at", 2016-08-19 02:48:37 UTC]]  (183.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Elias, o profeta, começou a orar ao lado de um lago, o que começou a flutuar?"], ["created_at", 2016-08-19 02:48:38 UTC], ["updated_at", 2016-08-19 02:48:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Ferro de Um Machado"], ["question_id", 1074], ["correct", true], ["created_at", 2016-08-19 02:48:38 UTC], ["updated_at", 2016-08-19 02:48:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Martelo"], ["question_id", 1074], ["correct", false], ["created_at", 2016-08-19 02:48:38 UTC], ["updated_at", 2016-08-19 02:48:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Espada"], ["question_id", 1074], ["correct", false], ["created_at", 2016-08-19 02:48:38 UTC], ["updated_at", 2016-08-19 02:48:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Lança"], ["question_id", 1074], ["correct", false], ["created_at", 2016-08-19 02:48:38 UTC], ["updated_at", 2016-08-19 02:48:38 UTC]]  (158.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Ezequias contraiu uma doença fatal, quantos anos de vida Deus lhe acrescentou?"], ["created_at", 2016-08-19 02:48:38 UTC], ["updated_at", 2016-08-19 02:48:38 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "15"], ["question_id", 1075], ["correct", true], ["created_at", 2016-08-19 02:48:38 UTC], ["updated_at", 2016-08-19 02:48:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 1075], ["correct", false], ["created_at", 2016-08-19 02:48:38 UTC], ["updated_at", 2016-08-19 02:48:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "35"], ["question_id", 1075], ["correct", false], ["created_at", 2016-08-19 02:48:38 UTC], ["updated_at", 2016-08-19 02:48:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "81"], ["question_id", 1075], ["correct", false], ["created_at", 2016-08-19 02:48:38 UTC], ["updated_at", 2016-08-19 02:48:38 UTC]]  (257.5ms) commit transaction  (0.2ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando foi feita a primeira tradução completa da Bíblia para o inglês por Wycliffe?\n1,"], ["created_at", 2016-08-19 02:48:38 UTC], ["updated_at", 2016-08-19 02:48:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1380"], ["question_id", 1076], ["correct", true], ["created_at", 2016-08-19 02:48:38 UTC], ["updated_at", 2016-08-19 02:48:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1420"], ["question_id", 1076], ["correct", false], ["created_at", 2016-08-19 02:48:38 UTC], ["updated_at", 2016-08-19 02:48:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1284"], ["question_id", 1076], ["correct", false], ["created_at", 2016-08-19 02:48:38 UTC], ["updated_at", 2016-08-19 02:48:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1362"], ["question_id", 1076], ["correct", false], ["created_at", 2016-08-19 02:48:38 UTC], ["updated_at", 2016-08-19 02:48:38 UTC]]  (191.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Jeoaquim reinava em Judá, quem atacou Jerusalém?"], ["created_at", 2016-08-19 02:48:38 UTC], ["updated_at", 2016-08-19 02:48:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 1077], ["correct", true], ["created_at", 2016-08-19 02:48:38 UTC], ["updated_at", 2016-08-19 02:48:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belzasar"], ["question_id", 1077], ["correct", false], ["created_at", 2016-08-19 02:48:38 UTC], ["updated_at", 2016-08-19 02:48:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiro"], ["question_id", 1077], ["correct", false], ["created_at", 2016-08-19 02:48:38 UTC], ["updated_at", 2016-08-19 02:48:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 1077], ["correct", false], ["created_at", 2016-08-19 02:48:38 UTC], ["updated_at", 2016-08-19 02:48:38 UTC]]  (150.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Jesus chegou a Betfagé, enviou seus discípulos para a aldeia mais próxima para pedir emprestado um:"], ["created_at", 2016-08-19 02:48:38 UTC], ["updated_at", 2016-08-19 02:48:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jumento"], ["question_id", 1078], ["correct", true], ["created_at", 2016-08-19 02:48:38 UTC], ["updated_at", 2016-08-19 02:48:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cabrito"], ["question_id", 1078], ["correct", false], ["created_at", 2016-08-19 02:48:38 UTC], ["updated_at", 2016-08-19 02:48:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Camelo"], ["question_id", 1078], ["correct", false], ["created_at", 2016-08-19 02:48:38 UTC], ["updated_at", 2016-08-19 02:48:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carneiro"], ["question_id", 1078], ["correct", false], ["created_at", 2016-08-19 02:48:38 UTC], ["updated_at", 2016-08-19 02:48:38 UTC]]  (217.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Jesus e seus discípulos chegaram ao Jardim do Getsêmani, o que Jesus pediu aos seus discípulos?"], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Sentassem"], ["question_id", 1079], ["correct", true], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Orassem"], ["question_id", 1079], ["correct", false], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Dormissem"], ["question_id", 1079], ["correct", false], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Jejuassem"], ["question_id", 1079], ["correct", false], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]]  (165.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Jesus estava indo para o Gólgota, quem carregou um trecho a cruz de Jesus?"], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Simão de Cirene"], ["question_id", 1080], ["correct", true], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José de Arimatéia"], ["question_id", 1080], ["correct", false], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zaqueu"], ["question_id", 1080], ["correct", false], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nicodemos"], ["question_id", 1080], ["correct", false], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]]  (166.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Jesus estava jantando na casa de um dos fariseus, o que uma mulher fez por Ele?"], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ungiu Seus Pés"], ["question_id", 1081], ["correct", true], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Serviu-lhe O Jantar"], ["question_id", 1081], ["correct", false], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lavou Sua Túnica"], ["question_id", 1081], ["correct", false], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Orou Com Ele"], ["question_id", 1081], ["correct", false], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]]  (123.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Jesus estava no Jardim do Getsêmani, o que lhe ocorreu?"], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Preso"], ["question_id", 1082], ["correct", true], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Acusado de Adultério"], ["question_id", 1082], ["correct", false], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Apedrejado"], ["question_id", 1082], ["correct", false], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Esfaqueado"], ["question_id", 1082], ["correct", false], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]]  (124.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Jesus expulsou os demônios de um homem que vivia no cemitério, para onde a legião foi?"], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Uma Manada de Porcos"], ["question_id", 1083], ["correct", true], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Uma Alcatéia de Lobos"], ["question_id", 1083], ["correct", false], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Um Bando de Bodes e Cabritos"], ["question_id", 1083], ["correct", false], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Algumas Ovelhas Que Pastavam Ao Redor"], ["question_id", 1083], ["correct", false], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]]  (124.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Jesus foi preso, o que Pedro fez:"], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cortou A Orelha de Um Homem"], ["question_id", 1084], ["correct", true], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Negou Jesus 3 Vezes"], ["question_id", 1084], ["correct", false], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fugiu"], ["question_id", 1084], ["correct", false], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matou Um dos Soldados Romanos"], ["question_id", 1084], ["correct", false], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]]  (123.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Jesus foi ungido com o bálsamo, qual dos discípulos se indignou por esse ato?"], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas Iscariotes"], ["question_id", 1085], ["correct", true], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 1085], ["correct", false], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 1085], ["correct", false], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tomé"], ["question_id", 1085], ["correct", false], ["created_at", 2016-08-19 02:48:39 UTC], ["updated_at", 2016-08-19 02:48:39 UTC]]  (167.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Jesus lavou os pés dos discípulos, o que Ele pretendia ensinar aos mesmos?"], ["created_at", 2016-08-19 02:48:40 UTC], ["updated_at", 2016-08-19 02:48:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Servir Ao Próximo"], ["question_id", 1086], ["correct", true], ["created_at", 2016-08-19 02:48:40 UTC], ["updated_at", 2016-08-19 02:48:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Importância da Higiene Pessoal"], ["question_id", 1086], ["correct", false], ["created_at", 2016-08-19 02:48:40 UTC], ["updated_at", 2016-08-19 02:48:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Necessidade Em Usar Calçados"], ["question_id", 1086], ["correct", false], ["created_at", 2016-08-19 02:48:40 UTC], ["updated_at", 2016-08-19 02:48:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Novo Batismo, Porém Por Aspersão"], ["question_id", 1086], ["correct", false], ["created_at", 2016-08-19 02:48:40 UTC], ["updated_at", 2016-08-19 02:48:40 UTC]]  (182.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Jesus se aproximava de Jerusalém montado no jumento, o que os fariseus pediram a Ele fazer com a multidão?"], ["created_at", 2016-08-19 02:48:40 UTC], ["updated_at", 2016-08-19 02:48:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Repreendê-la Porque O Estavam Saudando"], ["question_id", 1087], ["correct", true], ["created_at", 2016-08-19 02:48:40 UTC], ["updated_at", 2016-08-19 02:48:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acenar Para Ela"], ["question_id", 1087], ["correct", false], ["created_at", 2016-08-19 02:48:40 UTC], ["updated_at", 2016-08-19 02:48:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Falar Com Ela"], ["question_id", 1087], ["correct", false], ["created_at", 2016-08-19 02:48:40 UTC], ["updated_at", 2016-08-19 02:48:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ordenar Que Retornassem Paras Suas Casas"], ["question_id", 1087], ["correct", false], ["created_at", 2016-08-19 02:48:40 UTC], ["updated_at", 2016-08-19 02:48:40 UTC]]  (107.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Jesus se aproximava de Jerusalém montado no jumento, quem pediu a Ele que repreendesse a multidão que O saudava?"], ["created_at", 2016-08-19 02:48:40 UTC], ["updated_at", 2016-08-19 02:48:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Fariseus"], ["question_id", 1088], ["correct", true], ["created_at", 2016-08-19 02:48:40 UTC], ["updated_at", 2016-08-19 02:48:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Escribas"], ["question_id", 1088], ["correct", false], ["created_at", 2016-08-19 02:48:40 UTC], ["updated_at", 2016-08-19 02:48:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Levitas"], ["question_id", 1088], ["correct", false], ["created_at", 2016-08-19 02:48:40 UTC], ["updated_at", 2016-08-19 02:48:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Soldados Romanos"], ["question_id", 1088], ["correct", false], ["created_at", 2016-08-19 02:48:40 UTC], ["updated_at", 2016-08-19 02:48:40 UTC]]  (115.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Jesus transformou água em vinho, qual evento estava sendo celebrado?"], ["created_at", 2016-08-19 02:48:40 UTC], ["updated_at", 2016-08-19 02:48:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Casamento"], ["question_id", 1089], ["correct", true], ["created_at", 2016-08-19 02:48:40 UTC], ["updated_at", 2016-08-19 02:48:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Circuncisão"], ["question_id", 1089], ["correct", false], ["created_at", 2016-08-19 02:48:40 UTC], ["updated_at", 2016-08-19 02:48:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aniversário"], ["question_id", 1089], ["correct", false], ["created_at", 2016-08-19 02:48:40 UTC], ["updated_at", 2016-08-19 02:48:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noivado"], ["question_id", 1089], ["correct", false], ["created_at", 2016-08-19 02:48:40 UTC], ["updated_at", 2016-08-19 02:48:40 UTC]]  (198.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Jonas foi jogado no mar, Deus o salvou de se afogar enviando:"], ["created_at", 2016-08-19 02:48:40 UTC], ["updated_at", 2016-08-19 02:48:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Grande Peixe"], ["question_id", 1090], ["correct", true], ["created_at", 2016-08-19 02:48:40 UTC], ["updated_at", 2016-08-19 02:48:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Pescador"], ["question_id", 1090], ["correct", false], ["created_at", 2016-08-19 02:48:40 UTC], ["updated_at", 2016-08-19 02:48:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Bóia Salva-vida"], ["question_id", 1090], ["correct", false], ["created_at", 2016-08-19 02:48:40 UTC], ["updated_at", 2016-08-19 02:48:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Bote"], ["question_id", 1090], ["correct", false], ["created_at", 2016-08-19 02:48:40 UTC], ["updated_at", 2016-08-19 02:48:40 UTC]]  (148.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando José do Egito morreu, seu corpo foi:"], ["created_at", 2016-08-19 02:48:40 UTC], ["updated_at", 2016-08-19 02:48:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Embalsamado"], ["question_id", 1091], ["correct", true], ["created_at", 2016-08-19 02:48:40 UTC], ["updated_at", 2016-08-19 02:48:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Queimado"], ["question_id", 1091], ["correct", false], ["created_at", 2016-08-19 02:48:40 UTC], ["updated_at", 2016-08-19 02:48:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Transportado Para O Mar Morto"], ["question_id", 1091], ["correct", false], ["created_at", 2016-08-19 02:48:40 UTC], ["updated_at", 2016-08-19 02:48:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jogado Nas Águas do Rio Nilo"], ["question_id", 1091], ["correct", false], ["created_at", 2016-08-19 02:48:40 UTC], ["updated_at", 2016-08-19 02:48:40 UTC]]  (123.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando José foi vendido como escravo, quantas moedas de prata os irmãos de José receberam?"], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "20"], ["question_id", 1092], ["correct", true], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "40"], ["question_id", 1092], ["correct", false], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "60"], ["question_id", 1092], ["correct", false], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10"], ["question_id", 1092], ["correct", false], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]]  (123.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Judas percebeu que Jesus havia sido condenado pelo Sinédrio, o que ele fez?"], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]] SQL (0.7ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Devolveu As 30 Moedas de Prata"], ["question_id", 1093], ["correct", true], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Orou Por Perdão"], ["question_id", 1093], ["correct", false], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deu As Moedas de Prata Aos Pobres"], ["question_id", 1093], ["correct", false], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Suicidou-se"], ["question_id", 1093], ["correct", false], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]]  (122.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Maria e José estavam procurando a Jesus quando Este tinha apenas 12 anos, onde finalmente o encontraram?"], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Templo"], ["question_id", 1094], ["correct", true], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Cemitério"], ["question_id", 1094], ["correct", false], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Escola"], ["question_id", 1094], ["correct", false], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Biblioteca da Cidade"], ["question_id", 1094], ["correct", false], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]]  (124.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Maria foi visitar sua prima Isabel, quanto tempo ela ficou ausente?"], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Meses"], ["question_id", 1095], ["correct", true], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Dias"], ["question_id", 1095], ["correct", false], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Semanas"], ["question_id", 1095], ["correct", false], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Anos"], ["question_id", 1095], ["correct", false], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]]  (124.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Moisés desceu do Monte Sinai pela 1ª vez com as tábuas da lei de Deus, o que Moisés viu?"], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Povo Estava Adorando Um Ídolo"], ["question_id", 1096], ["correct", true], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Povo Estava Dançando A Dança da Chuva"], ["question_id", 1096], ["correct", false], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Povo Havia Fugido"], ["question_id", 1096], ["correct", false], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Povo Estava Lutando Entre Si"], ["question_id", 1096], ["correct", false], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]]  (123.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Moisés era bebê, ele foi colocado por sua mãe em um cesto, e deixado no:"], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rio Nilo"], ["question_id", 1097], ["correct", true], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mar Morto"], ["question_id", 1097], ["correct", false], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mar Mediterrâneo"], ["question_id", 1097], ["correct", false], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deserto do Saara"], ["question_id", 1097], ["correct", false], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]]  (124.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Moisés viu um egípcio surrando um hebreu, o que Moisés fez?"], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matou O Egípcio"], ["question_id", 1098], ["correct", true], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Buscou Ajuda"], ["question_id", 1098], ["correct", false], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ajudou O Egípcio"], ["question_id", 1098], ["correct", false], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Orou A Deus Por Ajuda"], ["question_id", 1098], ["correct", false], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]]  (123.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Noé enviou da arca uma pomba, o ramo de qual árvore ela trouxe em seu bico?"], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oliveira"], ["question_id", 1099], ["correct", true], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pessegueiro"], ["question_id", 1099], ["correct", false], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Figueira"], ["question_id", 1099], ["correct", false], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tamareira"], ["question_id", 1099], ["correct", false], ["created_at", 2016-08-19 02:48:41 UTC], ["updated_at", 2016-08-19 02:48:41 UTC]]  (122.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Noé enviou uma pomba da arca, o que ela trouxe em seu bico?"], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Ramo de Oliveira"], ["question_id", 1100], ["correct", true], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Minhoca"], ["question_id", 1100], ["correct", false], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Peixe"], ["question_id", 1100], ["correct", false], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Casca de Árvore"], ["question_id", 1100], ["correct", false], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]]  (122.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando o anjo da morte passou pelo Egito, o sangue de qual animal foi colocado nos batentes da porta?"], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cordeiro"], ["question_id", 1101], ["correct", true], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Touro"], ["question_id", 1101], ["correct", false], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pomba"], ["question_id", 1101], ["correct", false], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Corvo"], ["question_id", 1101], ["correct", false], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]]  (134.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando o Espírito do Senhor se apossou de Sansão, o que aconteceu com as cordas que o amarravam?"], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caíram de Suas Mãos"], ["question_id", 1102], ["correct", true], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Derreteram"], ["question_id", 1102], ["correct", false], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foram Cortadas"], ["question_id", 1102], ["correct", false], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Desapareceram"], ["question_id", 1102], ["correct", false], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]]  (122.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando o filho de Jeroboão adoeceu, quem ele mandou sua esposa procurar, em busca de respostas sobre a condição do menino?"], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aías"], ["question_id", 1103], ["correct", true], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josias"], ["question_id", 1103], ["correct", false], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bitia"], ["question_id", 1103], ["correct", false], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Orias"], ["question_id", 1103], ["correct", false], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]]  (124.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando o jovem Daniel falou com o rei Nabucodonosor, quem ele disse que saberia interpretar os sonhos do rei?"], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Unicamente Deus"], ["question_id", 1104], ["correct", true], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]] SQL (0.7ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Anjos Maus"], ["question_id", 1104], ["correct", false], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Anjos do Céu"], ["question_id", 1104], ["correct", false], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Sacerdote do Templo"], ["question_id", 1104], ["correct", false], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]]  (107.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando o povo hebreu estava apostatado de Deus, que espécie de sacrifícios eram oferecidos ao deus Moloque?"], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Crianças"], ["question_id", 1105], ["correct", true], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gestantes"], ["question_id", 1105], ["correct", false], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]] SQL (0.7ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escravos"], ["question_id", 1105], ["correct", false], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Idosos"], ["question_id", 1105], ["correct", false], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]]  (114.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando o rei Belsazar estava dando uma festa no palácio real, o que aconteceu?"], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Mão Sem Corpo Escreveu Na Parede"], ["question_id", 1106], ["correct", true], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Pai Morreu"], ["question_id", 1106], ["correct", false], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Família Real Foi Presa e Assassinada"], ["question_id", 1106], ["correct", false], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Houve Um Terremoto Que Destruiu O Palácio"], ["question_id", 1106], ["correct", false], ["created_at", 2016-08-19 02:48:42 UTC], ["updated_at", 2016-08-19 02:48:42 UTC]]  (124.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando o rei Belsazar viu uma mão sem corpo escrevendo na parede, o que estava ocorrendo no palácio real?"], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Festa"], ["question_id", 1107], ["correct", true], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Velório"], ["question_id", 1107], ["correct", false], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Reforma No Palácio"], ["question_id", 1107], ["correct", false], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Palácio Estava Sendo Demolido"], ["question_id", 1107], ["correct", false], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]]  (123.5ms) commit transaction  (0.1ms) begin transaction SQL (0.7ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando o rei Manassés reinou, de qual deusa ele erigiu uma estátua no interior do Templo de Jerusalém?"], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Asera"], ["question_id", 1108], ["correct", true], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Baal"], ["question_id", 1108], ["correct", false], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bel"], ["question_id", 1108], ["correct", false], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Diana"], ["question_id", 1108], ["correct", false], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]]  (124.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando o rei ouviu a mensagem de Jonas, com que roupas ele se vestiu?"], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Panos de Saco"], ["question_id", 1109], ["correct", true], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Manto Real"], ["question_id", 1109], ["correct", false], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Túnica"], ["question_id", 1109], ["correct", false], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Roupas de Baixo"], ["question_id", 1109], ["correct", false], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]]  (106.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando o rei Zedequias escapou do cerco bailônico à cidade de Jerusalém, em qual cidade ele foi capturado?"], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jericó"], ["question_id", 1110], ["correct", true], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Emaús"], ["question_id", 1110], ["correct", false], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Efraim"], ["question_id", 1110], ["correct", false], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Atenas"], ["question_id", 1110], ["correct", false], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]]  (116.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando o reino de Israel foi conquistado pelos assírios, quem reinava no reino de Judá?"], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ezequias"], ["question_id", 1111], ["correct", true], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uzias"], ["question_id", 1111], ["correct", false], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obadias"], ["question_id", 1111], ["correct", false], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 1111], ["correct", false], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]]  (124.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando os filhos de Jacó foram comprar grãos no Egito, quem disse a eles que eles eram espias?"], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 1112], ["correct", true], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Próprio Jacó"], ["question_id", 1112], ["correct", false], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Faraó do Egito"], ["question_id", 1112], ["correct", false], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Potifar"], ["question_id", 1112], ["correct", false], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]]  (125.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando os filisteus atacaram Sansão pela 4ª vez, o que eles lhe fizeram?"], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cegaram-no"], ["question_id", 1113], ["correct", true], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cortaram Sua Língua"], ["question_id", 1113], ["correct", false], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cortaram Suas Mãos"], ["question_id", 1113], ["correct", false], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cortaram Seus Dedos"], ["question_id", 1113], ["correct", false], ["created_at", 2016-08-19 02:48:43 UTC], ["updated_at", 2016-08-19 02:48:43 UTC]]  (191.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando os irmãos de José foram para o Egito para comprar grãos, o que José disse a eles?"], ["created_at", 2016-08-19 02:48:44 UTC], ["updated_at", 2016-08-19 02:48:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vós Sois Espias"], ["question_id", 1114], ["correct", true], ["created_at", 2016-08-19 02:48:44 UTC], ["updated_at", 2016-08-19 02:48:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vós Sois Meus Irmãos"], ["question_id", 1114], ["correct", false], ["created_at", 2016-08-19 02:48:44 UTC], ["updated_at", 2016-08-19 02:48:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vós Sois Traidores"], ["question_id", 1114], ["correct", false], ["created_at", 2016-08-19 02:48:44 UTC], ["updated_at", 2016-08-19 02:48:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Lhes Conheço"], ["question_id", 1114], ["correct", false], ["created_at", 2016-08-19 02:48:44 UTC], ["updated_at", 2016-08-19 02:48:44 UTC]]  (208.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando os judeus retornaram a Jerusalém vindo de Babilônia, como os idosos reagiram à construção do alicerce do Templo?"], ["created_at", 2016-08-19 02:48:44 UTC], ["updated_at", 2016-08-19 02:48:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eles Choraram"], ["question_id", 1115], ["correct", true], ["created_at", 2016-08-19 02:48:44 UTC], ["updated_at", 2016-08-19 02:48:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eles Dançaram"], ["question_id", 1115], ["correct", false], ["created_at", 2016-08-19 02:48:44 UTC], ["updated_at", 2016-08-19 02:48:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Comemoraram Com Um Banquete"], ["question_id", 1115], ["correct", false], ["created_at", 2016-08-19 02:48:44 UTC], ["updated_at", 2016-08-19 02:48:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cumpriram A Promessa Feita"], ["question_id", 1115], ["correct", false], ["created_at", 2016-08-19 02:48:44 UTC], ["updated_at", 2016-08-19 02:48:44 UTC]]  (123.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Paulo foi à Roma, o que os marinheiros do navio tentaram fazer ao avistarem terra após a violenta tempestade?"], ["created_at", 2016-08-19 02:48:44 UTC], ["updated_at", 2016-08-19 02:48:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Encalhar O Navio"], ["question_id", 1116], ["correct", true], ["created_at", 2016-08-19 02:48:44 UTC], ["updated_at", 2016-08-19 02:48:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Afundar O Navio"], ["question_id", 1116], ["correct", false], ["created_at", 2016-08-19 02:48:44 UTC], ["updated_at", 2016-08-19 02:48:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pular do Navio"], ["question_id", 1116], ["correct", false], ["created_at", 2016-08-19 02:48:44 UTC], ["updated_at", 2016-08-19 02:48:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Navegar Até O Porto"], ["question_id", 1116], ["correct", false], ["created_at", 2016-08-19 02:48:44 UTC], ["updated_at", 2016-08-19 02:48:44 UTC]]  (133.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Paulo foi à Roma, o que os soldados romanos tentaram fazer aos prisioneiros quando o navio estava naufragando?"], ["created_at", 2016-08-19 02:48:44 UTC], ["updated_at", 2016-08-19 02:48:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matá-los"], ["question_id", 1117], ["correct", true], ["created_at", 2016-08-19 02:48:44 UTC], ["updated_at", 2016-08-19 02:48:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Libertá-los"], ["question_id", 1117], ["correct", false], ["created_at", 2016-08-19 02:48:44 UTC], ["updated_at", 2016-08-19 02:48:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acorrentá-los"], ["question_id", 1117], ["correct", false], ["created_at", 2016-08-19 02:48:44 UTC], ["updated_at", 2016-08-19 02:48:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jogá-los Ao Mar"], ["question_id", 1117], ["correct", false], ["created_at", 2016-08-19 02:48:44 UTC], ["updated_at", 2016-08-19 02:48:44 UTC]]  (200.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Paulo foi à Roma, quem tentou matar os prisioneiros que haviam no navio que estava naufragando?"], ["created_at", 2016-08-19 02:48:44 UTC], ["updated_at", 2016-08-19 02:48:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Soldados Romanos"], ["question_id", 1118], ["correct", true], ["created_at", 2016-08-19 02:48:44 UTC], ["updated_at", 2016-08-19 02:48:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Marinheiros"], ["question_id", 1118], ["correct", false], ["created_at", 2016-08-19 02:48:44 UTC], ["updated_at", 2016-08-19 02:48:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Capitão do Navio"], ["question_id", 1118], ["correct", false], ["created_at", 2016-08-19 02:48:44 UTC], ["updated_at", 2016-08-19 02:48:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Próprio Paulo"], ["question_id", 1118], ["correct", false], ["created_at", 2016-08-19 02:48:44 UTC], ["updated_at", 2016-08-19 02:48:44 UTC]]  (139.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Paulo precisou retornar da Grécia p/ a Macedônia pois desejavam matá-lo, onde seus companheiros o estavam aguardando?"], ["created_at", 2016-08-19 02:48:44 UTC], ["updated_at", 2016-08-19 02:48:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trôade"], ["question_id", 1119], ["correct", true], ["created_at", 2016-08-19 02:48:44 UTC], ["updated_at", 2016-08-19 02:48:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filipos"], ["question_id", 1119], ["correct", false], ["created_at", 2016-08-19 02:48:44 UTC], ["updated_at", 2016-08-19 02:48:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mileto"], ["question_id", 1119], ["correct", false], ["created_at", 2016-08-19 02:48:44 UTC], ["updated_at", 2016-08-19 02:48:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Éfeso"], ["question_id", 1119], ["correct", false], ["created_at", 2016-08-19 02:48:44 UTC], ["updated_at", 2016-08-19 02:48:44 UTC]]  (449.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Roboão tornou-se rei, o que os israelitas lhe pediram?"], ["created_at", 2016-08-19 02:48:45 UTC], ["updated_at", 2016-08-19 02:48:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abaixar Os Impostos"], ["question_id", 1120], ["correct", true], ["created_at", 2016-08-19 02:48:45 UTC], ["updated_at", 2016-08-19 02:48:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dar Uma Festa"], ["question_id", 1120], ["correct", false], ["created_at", 2016-08-19 02:48:45 UTC], ["updated_at", 2016-08-19 02:48:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Construir-lhes Novas Casas"], ["question_id", 1120], ["correct", false], ["created_at", 2016-08-19 02:48:45 UTC], ["updated_at", 2016-08-19 02:48:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Construir Um Novo Templo"], ["question_id", 1120], ["correct", false], ["created_at", 2016-08-19 02:48:45 UTC], ["updated_at", 2016-08-19 02:48:45 UTC]]  (131.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Salomão morreu, onde ele foi interrado?"], ["created_at", 2016-08-19 02:48:45 UTC], ["updated_at", 2016-08-19 02:48:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 1121], ["correct", true], ["created_at", 2016-08-19 02:48:45 UTC], ["updated_at", 2016-08-19 02:48:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Siquém"], ["question_id", 1121], ["correct", false], ["created_at", 2016-08-19 02:48:45 UTC], ["updated_at", 2016-08-19 02:48:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ramá"], ["question_id", 1121], ["correct", false], ["created_at", 2016-08-19 02:48:45 UTC], ["updated_at", 2016-08-19 02:48:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hebrom"], ["question_id", 1121], ["correct", false], ["created_at", 2016-08-19 02:48:45 UTC], ["updated_at", 2016-08-19 02:48:45 UTC]]  (124.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Sansão apaixonou-se por Dalila, ela vivia no vale de:"], ["created_at", 2016-08-19 02:48:45 UTC], ["updated_at", 2016-08-19 02:48:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Soreque"], ["question_id", 1122], ["correct", true], ["created_at", 2016-08-19 02:48:45 UTC], ["updated_at", 2016-08-19 02:48:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Efraim"], ["question_id", 1122], ["correct", false], ["created_at", 2016-08-19 02:48:45 UTC], ["updated_at", 2016-08-19 02:48:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Midiã"], ["question_id", 1122], ["correct", false], ["created_at", 2016-08-19 02:48:45 UTC], ["updated_at", 2016-08-19 02:48:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jafé"], ["question_id", 1122], ["correct", false], ["created_at", 2016-08-19 02:48:45 UTC], ["updated_at", 2016-08-19 02:48:45 UTC]]  (181.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Sansão estava andando pela estrada, que animal tinha em seu corpo uma colméia de mel?"], ["created_at", 2016-08-19 02:48:45 UTC], ["updated_at", 2016-08-19 02:48:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Leão"], ["question_id", 1123], ["correct", true], ["created_at", 2016-08-19 02:48:45 UTC], ["updated_at", 2016-08-19 02:48:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Urso"], ["question_id", 1123], ["correct", false], ["created_at", 2016-08-19 02:48:45 UTC], ["updated_at", 2016-08-19 02:48:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cachorro"], ["question_id", 1123], ["correct", false], ["created_at", 2016-08-19 02:48:45 UTC], ["updated_at", 2016-08-19 02:48:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ovelha"], ["question_id", 1123], ["correct", false], ["created_at", 2016-08-19 02:48:45 UTC], ["updated_at", 2016-08-19 02:48:45 UTC]]  (207.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Sansão estava andando por uma estrada, o que ele encontrou no corpo de um leão morto?"], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mel"], ["question_id", 1124], ["correct", true], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Frutas"], ["question_id", 1124], ["correct", false], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Flores"], ["question_id", 1124], ["correct", false], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Homem"], ["question_id", 1124], ["correct", false], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]]  (123.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Sansão foi à cidade de Timnate, o que ele pediu aos seus pais?"], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma das Filhas dos Filisteus"], ["question_id", 1125], ["correct", true], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Emprego Que Lhe Pagasse Bem"], ["question_id", 1125], ["correct", false], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Boa Casa"], ["question_id", 1125], ["correct", false], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Independência"], ["question_id", 1125], ["correct", false], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]]  (173.2ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Sansão visitou a cidade de Gaza, o que ele fez por lá?"], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Visitou Uma Prostituta"], ["question_id", 1126], ["correct", true], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Visitou Sua Família"], ["question_id", 1126], ["correct", false], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Visitou Os Líderes Religiosos"], ["question_id", 1126], ["correct", false], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Visitou Os Doentes"], ["question_id", 1126], ["correct", false], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]]  (159.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando um caldo venenoso foi acidentalmente oferecido a Eliseu, o que ele colocou na panela para torná-lo comestível?"], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Farinha"], ["question_id", 1127], ["correct", true], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sal"], ["question_id", 1127], ["correct", false], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ervas Amargas"], ["question_id", 1127], ["correct", false], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Azeite"], ["question_id", 1127], ["correct", false], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]]  (122.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Zedequias governava o reino de Judá, quem atacou Jerusalém pela 3ª vez?"], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Babilônicos"], ["question_id", 1128], ["correct", true], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Sírios"], ["question_id", 1128], ["correct", false], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Medo-persas"], ["question_id", 1128], ["correct", false], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Gregos"], ["question_id", 1128], ["correct", false], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]]  (123.7ms) commit transaction  (0.7ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas esposas Jacó tinha?"], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 1129], ["correct", true], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 1129], ["correct", false], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas Uma"], ["question_id", 1129], ["correct", false], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nunca Foi Casado"], ["question_id", 1129], ["correct", false], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]]  (124.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas esposas Salomão teve?"], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Diversas"], ["question_id", 1130], ["correct", true], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas Uma Única"], ["question_id", 1130], ["correct", false], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 1130], ["correct", false], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhuma, Pois Morreu Solteiro"], ["question_id", 1130], ["correct", false], ["created_at", 2016-08-19 02:48:46 UTC], ["updated_at", 2016-08-19 02:48:46 UTC]]  (123.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas esposas tinha o rei Salomão?"], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "700"], ["question_id", 1131], ["correct", true], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7"], ["question_id", 1131], ["correct", false], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "70"], ["question_id", 1131], ["correct", false], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas Uma"], ["question_id", 1131], ["correct", false], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]]  (124.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas janelas havia na arca de Noé?"], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 1132], ["correct", true], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhuma, Mas Apenas Uma Grande Porta"], ["question_id", 1132], ["correct", false], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 (uma de Cada Lado)"], ["question_id", 1132], ["correct", false], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 (as Duas Em Um Único Lado)"], ["question_id", 1132], ["correct", false], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]]  (123.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas letras a Bíblia contém aproximadamente?"], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3566500"], ["question_id", 1133], ["correct", true], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]] SQL (0.8ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1950500"], ["question_id", 1133], ["correct", false], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5231500"], ["question_id", 1133], ["correct", false], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7341500"], ["question_id", 1133], ["correct", false], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]]  (133.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas letras possui o maior versículo da Bíblia (Ester 8:9)?"], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "415"], ["question_id", 1134], ["correct", true], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "213"], ["question_id", 1134], ["correct", false], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "352"], ["question_id", 1134], ["correct", false], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "641"], ["question_id", 1134], ["correct", false], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]]  (139.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas letras possui o menor versículo da Bíblia (Êxodo 20:13)?"], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10"], ["question_id", 1135], ["correct", true], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "32"], ["question_id", 1135], ["correct", false], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 1135], ["correct", false], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "73"], ["question_id", 1135], ["correct", false], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]]  (123.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas ovelhas foram sacrificadas como oferta pacífica quando Deus entrou no Templo de Jerusalém?"], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "120000"], ["question_id", 1136], ["correct", true], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "20000"], ["question_id", 1136], ["correct", false], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "40000"], ["question_id", 1136], ["correct", false], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4000"], ["question_id", 1136], ["correct", false], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]]  (123.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas palavras a Bíblia contém aproximadamente?"], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "773690"], ["question_id", 1137], ["correct", true], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "591690"], ["question_id", 1137], ["correct", false], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "941690"], ["question_id", 1137], ["correct", false], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "294690"], ["question_id", 1137], ["correct", false], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]]  (123.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas pedras Davi apanhou no chão para matar o gigante Golias?"], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 1138], ["correct", true], ["created_at", 2016-08-19 02:48:47 UTC], ["updated_at", 2016-08-19 02:48:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 1138], ["correct", false], ["created_at", 2016-08-19 02:48:48 UTC], ["updated_at", 2016-08-19 02:48:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 1138], ["correct", false], ["created_at", 2016-08-19 02:48:48 UTC], ["updated_at", 2016-08-19 02:48:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 1138], ["correct", false], ["created_at", 2016-08-19 02:48:48 UTC], ["updated_at", 2016-08-19 02:48:48 UTC]]  (149.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas pessoas haviam no navio que naufragou onde Paulo estava em sua viagem para Roma?"], ["created_at", 2016-08-19 02:48:48 UTC], ["updated_at", 2016-08-19 02:48:48 UTC]] SQL (0.8ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "276"], ["question_id", 1139], ["correct", true], ["created_at", 2016-08-19 02:48:48 UTC], ["updated_at", 2016-08-19 02:48:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "390"], ["question_id", 1139], ["correct", false], ["created_at", 2016-08-19 02:48:48 UTC], ["updated_at", 2016-08-19 02:48:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "121"], ["question_id", 1139], ["correct", false], ["created_at", 2016-08-19 02:48:48 UTC], ["updated_at", 2016-08-19 02:48:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "88"], ["question_id", 1139], ["correct", false], ["created_at", 2016-08-19 02:48:48 UTC], ["updated_at", 2016-08-19 02:48:48 UTC]]  (156.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas pessoas Jesus alimentou com 5 peixes e 2 pães?"], ["created_at", 2016-08-19 02:48:48 UTC], ["updated_at", 2016-08-19 02:48:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5000"], ["question_id", 1140], ["correct", true], ["created_at", 2016-08-19 02:48:48 UTC], ["updated_at", 2016-08-19 02:48:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3000"], ["question_id", 1140], ["correct", false], ["created_at", 2016-08-19 02:48:48 UTC], ["updated_at", 2016-08-19 02:48:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1500"], ["question_id", 1140], ["correct", false], ["created_at", 2016-08-19 02:48:48 UTC], ["updated_at", 2016-08-19 02:48:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7500"], ["question_id", 1140], ["correct", false], ["created_at", 2016-08-19 02:48:48 UTC], ["updated_at", 2016-08-19 02:48:48 UTC]]  (123.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas pessoas justas Abraão estava procurando em Sodoma?"], ["created_at", 2016-08-19 02:48:48 UTC], ["updated_at", 2016-08-19 02:48:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10"], ["question_id", 1141], ["correct", true], ["created_at", 2016-08-19 02:48:48 UTC], ["updated_at", 2016-08-19 02:48:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "18"], ["question_id", 1141], ["correct", false], ["created_at", 2016-08-19 02:48:48 UTC], ["updated_at", 2016-08-19 02:48:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "60"], ["question_id", 1141], ["correct", false], ["created_at", 2016-08-19 02:48:48 UTC], ["updated_at", 2016-08-19 02:48:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 1141], ["correct", false], ["created_at", 2016-08-19 02:48:48 UTC], ["updated_at", 2016-08-19 02:48:48 UTC]]  (172.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas pessoas morreram do povo israelita em função da praga enviada por Deus?"], ["created_at", 2016-08-19 02:48:48 UTC], ["updated_at", 2016-08-19 02:48:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "14700"], ["question_id", 1142], ["correct", true], ["created_at", 2016-08-19 02:48:48 UTC], ["updated_at", 2016-08-19 02:48:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "147000"], ["question_id", 1142], ["correct", false], ["created_at", 2016-08-19 02:48:48 UTC], ["updated_at", 2016-08-19 02:48:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1470"], ["question_id", 1142], ["correct", false], ["created_at", 2016-08-19 02:48:48 UTC], ["updated_at", 2016-08-19 02:48:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "147"], ["question_id", 1142], ["correct", false], ["created_at", 2016-08-19 02:48:48 UTC], ["updated_at", 2016-08-19 02:48:48 UTC]]  (148.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas pessoas perderam a sua vida por não saberem pronunciar a palavra Shiboleth?\n1,"], ["created_at", 2016-08-19 02:48:48 UTC], ["updated_at", 2016-08-19 02:48:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "42000"], ["question_id", 1143], ["correct", true], ["created_at", 2016-08-19 02:48:48 UTC], ["updated_at", 2016-08-19 02:48:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1200"], ["question_id", 1143], ["correct", false], ["created_at", 2016-08-19 02:48:48 UTC], ["updated_at", 2016-08-19 02:48:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "240"], ["question_id", 1143], ["correct", false], ["created_at", 2016-08-19 02:48:48 UTC], ["updated_at", 2016-08-19 02:48:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10500"], ["question_id", 1143], ["correct", false], ["created_at", 2016-08-19 02:48:48 UTC], ["updated_at", 2016-08-19 02:48:48 UTC]]  (139.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas portas havia na arca de Noé?"], ["created_at", 2016-08-19 02:48:48 UTC], ["updated_at", 2016-08-19 02:48:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 1144], ["correct", true], ["created_at", 2016-08-19 02:48:48 UTC], ["updated_at", 2016-08-19 02:48:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhuma, Mas Sim Uma Grande Janela"], ["question_id", 1144], ["correct", false], ["created_at", 2016-08-19 02:48:48 UTC], ["updated_at", 2016-08-19 02:48:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 (as Duas Em Um Único Lado)"], ["question_id", 1144], ["correct", false], ["created_at", 2016-08-19 02:48:48 UTC], ["updated_at", 2016-08-19 02:48:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 (uma de Cada Lado)"], ["question_id", 1144], ["correct", false], ["created_at", 2016-08-19 02:48:48 UTC], ["updated_at", 2016-08-19 02:48:48 UTC]]  (123.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas vezes Deus apareceu a Salomão?"], ["created_at", 2016-08-19 02:48:49 UTC], ["updated_at", 2016-08-19 02:48:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 1145], ["correct", true], ["created_at", 2016-08-19 02:48:49 UTC], ["updated_at", 2016-08-19 02:48:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 1145], ["correct", false], ["created_at", 2016-08-19 02:48:49 UTC], ["updated_at", 2016-08-19 02:48:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "8"], ["question_id", 1145], ["correct", false], ["created_at", 2016-08-19 02:48:49 UTC], ["updated_at", 2016-08-19 02:48:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "16"], ["question_id", 1145], ["correct", false], ["created_at", 2016-08-19 02:48:49 UTC], ["updated_at", 2016-08-19 02:48:49 UTC]]  (133.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas vezes Eliseu disse para Naamã se molhar no rio Jordão para se curar da lepra?"], ["created_at", 2016-08-19 02:48:49 UTC], ["updated_at", 2016-08-19 02:48:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7"], ["question_id", 1146], ["correct", true], ["created_at", 2016-08-19 02:48:49 UTC], ["updated_at", 2016-08-19 02:48:49 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12"], ["question_id", 1146], ["correct", false], ["created_at", 2016-08-19 02:48:49 UTC], ["updated_at", 2016-08-19 02:48:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 1146], ["correct", false], ["created_at", 2016-08-19 02:48:49 UTC], ["updated_at", 2016-08-19 02:48:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 1146], ["correct", false], ["created_at", 2016-08-19 02:48:49 UTC], ["updated_at", 2016-08-19 02:48:49 UTC]]  (131.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas vezes Jesus perguntou a Pedro se este o amava?"], ["created_at", 2016-08-19 02:48:49 UTC], ["updated_at", 2016-08-19 02:48:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 1147], ["correct", true], ["created_at", 2016-08-19 02:48:49 UTC], ["updated_at", 2016-08-19 02:48:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 1147], ["correct", false], ["created_at", 2016-08-19 02:48:49 UTC], ["updated_at", 2016-08-19 02:48:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 1147], ["correct", false], ["created_at", 2016-08-19 02:48:49 UTC], ["updated_at", 2016-08-19 02:48:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhuma"], ["question_id", 1147], ["correct", false], ["created_at", 2016-08-19 02:48:49 UTC], ["updated_at", 2016-08-19 02:48:49 UTC]]  (123.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas vezes Noé enviu uma pomba para procurar por terra seca?"], ["created_at", 2016-08-19 02:48:49 UTC], ["updated_at", 2016-08-19 02:48:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 1148], ["correct", true], ["created_at", 2016-08-19 02:48:49 UTC], ["updated_at", 2016-08-19 02:48:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 1148], ["correct", false], ["created_at", 2016-08-19 02:48:49 UTC], ["updated_at", 2016-08-19 02:48:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7"], ["question_id", 1148], ["correct", false], ["created_at", 2016-08-19 02:48:49 UTC], ["updated_at", 2016-08-19 02:48:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 1148], ["correct", false], ["created_at", 2016-08-19 02:48:49 UTC], ["updated_at", 2016-08-19 02:48:49 UTC]]  (124.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas vezes o rei Nabucodonosor atacou Jerusalém?"], ["created_at", 2016-08-19 02:48:49 UTC], ["updated_at", 2016-08-19 02:48:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 1149], ["correct", true], ["created_at", 2016-08-19 02:48:49 UTC], ["updated_at", 2016-08-19 02:48:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 1149], ["correct", false], ["created_at", 2016-08-19 02:48:49 UTC], ["updated_at", 2016-08-19 02:48:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 1149], ["correct", false], ["created_at", 2016-08-19 02:48:49 UTC], ["updated_at", 2016-08-19 02:48:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 1149], ["correct", false], ["created_at", 2016-08-19 02:48:49 UTC], ["updated_at", 2016-08-19 02:48:49 UTC]]  (125.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas vezes Pedro negou a Jesus?"], ["created_at", 2016-08-19 02:48:49 UTC], ["updated_at", 2016-08-19 02:48:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 1150], ["correct", true], ["created_at", 2016-08-19 02:48:49 UTC], ["updated_at", 2016-08-19 02:48:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 1150], ["correct", false], ["created_at", 2016-08-19 02:48:49 UTC], ["updated_at", 2016-08-19 02:48:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 1150], ["correct", false], ["created_at", 2016-08-19 02:48:49 UTC], ["updated_at", 2016-08-19 02:48:49 UTC]] SQL (0.7ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhuma"], ["question_id", 1150], ["correct", false], ["created_at", 2016-08-19 02:48:49 UTC], ["updated_at", 2016-08-19 02:48:49 UTC]]  (291.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas voltas o povo de Israel deu em volta dos muros da cidade de Jericó, para que estes caíssem?"], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7"], ["question_id", 1151], ["correct", true], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12"], ["question_id", 1151], ["correct", false], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 1151], ["correct", false], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "9"], ["question_id", 1151], ["correct", false], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]]  (149.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quanto custou o terreno que foi a sepultura de Sara?"], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "400 Barras de Prata"], ["question_id", 1152], ["correct", true], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "240 Camêlos"], ["question_id", 1152], ["correct", false], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "300 Kg de Ouro"], ["question_id", 1152], ["correct", false], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "120 Côvados de Terra Fértil"], ["question_id", 1152], ["correct", false], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]]  (126.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quanto Jesus foi tentado por Satanás, para matar a fome de Jesus Satanás pediu que as pedras fossem transformadas em:"], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pão"], ["question_id", 1153], ["correct", true], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maná"], ["question_id", 1153], ["correct", false], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bolo"], ["question_id", 1153], ["correct", false], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assado"], ["question_id", 1153], ["correct", false], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]]  (125.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quanto Judas Iscariotes disse que custava o perfume que lavou os pés de Jesus?"], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "300 Denários"], ["question_id", 1154], ["correct", true], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "200 Denários"], ["question_id", 1154], ["correct", false], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "500 Denários"], ["question_id", 1154], ["correct", false], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "100 Denários"], ["question_id", 1154], ["correct", false], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]]  (124.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quanto os príncipes filisteus ofereceram a Dalila para que ela descobrissem o segredo da força de Sansão?"], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1.100 Moedas de Prata de Cada Príncipe"], ["question_id", 1155], ["correct", true], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1.100 Moedas de Prata Ao Total"], ["question_id", 1155], ["correct", false], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1.100 Moedas de Prata A Cada Ano"], ["question_id", 1155], ["correct", false], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1.100 Moedas de Prata Todo Mês"], ["question_id", 1155], ["correct", false], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]]  (150.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quanto pagava Salomão por um cavalo?\n1,"], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "150 Ciclos de Prata"], ["question_id", 1156], ["correct", true], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "150 Moedas de Ouro"], ["question_id", 1156], ["correct", false], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "150 Barras de Cobre"], ["question_id", 1156], ["correct", false], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "150 Vestes de Ouro"], ["question_id", 1156], ["correct", false], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]]  (124.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quanto Satanás tentou a Jesus, o que o mesmo pediu que Jesus transformasse em pão?"], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Pedras"], ["question_id", 1157], ["correct", true], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Cobras"], ["question_id", 1157], ["correct", false], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Varas"], ["question_id", 1157], ["correct", false], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Pássaros"], ["question_id", 1157], ["correct", false], ["created_at", 2016-08-19 02:48:50 UTC], ["updated_at", 2016-08-19 02:48:50 UTC]]  (108.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quanto talentos de prata Hamã ofereceu ao Rei Assuero para exterminar os judeus?"], ["created_at", 2016-08-19 02:48:51 UTC], ["updated_at", 2016-08-19 02:48:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10000"], ["question_id", 1158], ["correct", true], ["created_at", 2016-08-19 02:48:51 UTC], ["updated_at", 2016-08-19 02:48:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2000"], ["question_id", 1158], ["correct", false], ["created_at", 2016-08-19 02:48:51 UTC], ["updated_at", 2016-08-19 02:48:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "100000"], ["question_id", 1158], ["correct", false], ["created_at", 2016-08-19 02:48:51 UTC], ["updated_at", 2016-08-19 02:48:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "20000"], ["question_id", 1158], ["correct", false], ["created_at", 2016-08-19 02:48:51 UTC], ["updated_at", 2016-08-19 02:48:51 UTC]]  (141.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quanto tempo durou a celebração de dedicação do Templo de Jerusalém?"], ["created_at", 2016-08-19 02:48:51 UTC], ["updated_at", 2016-08-19 02:48:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "14 Dias"], ["question_id", 1159], ["correct", true], ["created_at", 2016-08-19 02:48:51 UTC], ["updated_at", 2016-08-19 02:48:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7 Dias"], ["question_id", 1159], ["correct", false], ["created_at", 2016-08-19 02:48:51 UTC], ["updated_at", 2016-08-19 02:48:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Dias"], ["question_id", 1159], ["correct", false], ["created_at", 2016-08-19 02:48:51 UTC], ["updated_at", 2016-08-19 02:48:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "30 Dias"], ["question_id", 1159], ["correct", false], ["created_at", 2016-08-19 02:48:51 UTC], ["updated_at", 2016-08-19 02:48:51 UTC]]  (166.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quanto tempo Moisés ficou no Monte Sinai com Deus?"], ["created_at", 2016-08-19 02:48:51 UTC], ["updated_at", 2016-08-19 02:48:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "40 Dias"], ["question_id", 1160], ["correct", true], ["created_at", 2016-08-19 02:48:51 UTC], ["updated_at", 2016-08-19 02:48:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4 Dias"], ["question_id", 1160], ["correct", false], ["created_at", 2016-08-19 02:48:51 UTC], ["updated_at", 2016-08-19 02:48:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 Semanas"], ["question_id", 1160], ["correct", false], ["created_at", 2016-08-19 02:48:51 UTC], ["updated_at", 2016-08-19 02:48:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 Dias"], ["question_id", 1160], ["correct", false], ["created_at", 2016-08-19 02:48:51 UTC], ["updated_at", 2016-08-19 02:48:51 UTC]]  (150.1ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quanto tempo passou até que José e Maria reencontrassem Jesus, que havia separado-se deles em uma viagem?"], ["created_at", 2016-08-19 02:48:51 UTC], ["updated_at", 2016-08-19 02:48:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Dias"], ["question_id", 1161], ["correct", true], ["created_at", 2016-08-19 02:48:51 UTC], ["updated_at", 2016-08-19 02:48:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Dia"], ["question_id", 1161], ["correct", false], ["created_at", 2016-08-19 02:48:51 UTC], ["updated_at", 2016-08-19 02:48:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10 Dias"], ["question_id", 1161], ["correct", false], ["created_at", 2016-08-19 02:48:51 UTC], ["updated_at", 2016-08-19 02:48:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "6 Dias"], ["question_id", 1161], ["correct", false], ["created_at", 2016-08-19 02:48:51 UTC], ["updated_at", 2016-08-19 02:48:51 UTC]]  (202.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quanto tempo passou até que Maria percebesse que Jesus, então com 12 anos de idade, não estava na caravana de regresso?"], ["created_at", 2016-08-19 02:48:51 UTC], ["updated_at", 2016-08-19 02:48:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Dia"], ["question_id", 1162], ["correct", true], ["created_at", 2016-08-19 02:48:51 UTC], ["updated_at", 2016-08-19 02:48:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Dias"], ["question_id", 1162], ["correct", false], ["created_at", 2016-08-19 02:48:51 UTC], ["updated_at", 2016-08-19 02:48:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7 Dias"], ["question_id", 1162], ["correct", false], ["created_at", 2016-08-19 02:48:51 UTC], ["updated_at", 2016-08-19 02:48:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10 Dias"], ["question_id", 1162], ["correct", false], ["created_at", 2016-08-19 02:48:51 UTC], ["updated_at", 2016-08-19 02:48:51 UTC]]  (150.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos andares havia na arca de Noé?"], ["created_at", 2016-08-19 02:48:51 UTC], ["updated_at", 2016-08-19 02:48:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 1163], ["correct", true], ["created_at", 2016-08-19 02:48:51 UTC], ["updated_at", 2016-08-19 02:48:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 1163], ["correct", false], ["created_at", 2016-08-19 02:48:51 UTC], ["updated_at", 2016-08-19 02:48:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 1163], ["correct", false], ["created_at", 2016-08-19 02:48:51 UTC], ["updated_at", 2016-08-19 02:48:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas Um"], ["question_id", 1163], ["correct", false], ["created_at", 2016-08-19 02:48:51 UTC], ["updated_at", 2016-08-19 02:48:51 UTC]]  (133.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos anos Arão era mais velho do que Moisés?"], ["created_at", 2016-08-19 02:48:52 UTC], ["updated_at", 2016-08-19 02:48:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 1164], ["correct", true], ["created_at", 2016-08-19 02:48:52 UTC], ["updated_at", 2016-08-19 02:48:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 1164], ["correct", false], ["created_at", 2016-08-19 02:48:52 UTC], ["updated_at", 2016-08-19 02:48:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 1164], ["correct", false], ["created_at", 2016-08-19 02:48:52 UTC], ["updated_at", 2016-08-19 02:48:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "15"], ["question_id", 1164], ["correct", false], ["created_at", 2016-08-19 02:48:52 UTC], ["updated_at", 2016-08-19 02:48:52 UTC]]  (149.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos anos de diferença há entre os irmãos Esaú e Jacó?"], ["created_at", 2016-08-19 02:48:52 UTC], ["updated_at", 2016-08-19 02:48:52 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhum, Pois São Irmãos Gêmeos"], ["question_id", 1165], ["correct", true], ["created_at", 2016-08-19 02:48:52 UTC], ["updated_at", 2016-08-19 02:48:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 Anos"], ["question_id", 1165], ["correct", false], ["created_at", 2016-08-19 02:48:52 UTC], ["updated_at", 2016-08-19 02:48:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Anos"], ["question_id", 1165], ["correct", false], ["created_at", 2016-08-19 02:48:52 UTC], ["updated_at", 2016-08-19 02:48:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Ano"], ["question_id", 1165], ["correct", false], ["created_at", 2016-08-19 02:48:52 UTC], ["updated_at", 2016-08-19 02:48:52 UTC]]  (199.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos anos Jacó precisou trabalhar para casar-se com Léia?"], ["created_at", 2016-08-19 02:48:52 UTC], ["updated_at", 2016-08-19 02:48:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7"], ["question_id", 1166], ["correct", true], ["created_at", 2016-08-19 02:48:52 UTC], ["updated_at", 2016-08-19 02:48:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "14"], ["question_id", 1166], ["correct", false], ["created_at", 2016-08-19 02:48:52 UTC], ["updated_at", 2016-08-19 02:48:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10"], ["question_id", 1166], ["correct", false], ["created_at", 2016-08-19 02:48:52 UTC], ["updated_at", 2016-08-19 02:48:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 1166], ["correct", false], ["created_at", 2016-08-19 02:48:52 UTC], ["updated_at", 2016-08-19 02:48:52 UTC]]  (141.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos anos Jacó precisou trabalhar para finalmente casar-se com Raquel?"], ["created_at", 2016-08-19 02:48:52 UTC], ["updated_at", 2016-08-19 02:48:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "14"], ["question_id", 1167], ["correct", true], ["created_at", 2016-08-19 02:48:52 UTC], ["updated_at", 2016-08-19 02:48:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7"], ["question_id", 1167], ["correct", false], ["created_at", 2016-08-19 02:48:52 UTC], ["updated_at", 2016-08-19 02:48:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10"], ["question_id", 1167], ["correct", false], ["created_at", 2016-08-19 02:48:52 UTC], ["updated_at", 2016-08-19 02:48:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 1167], ["correct", false], ["created_at", 2016-08-19 02:48:52 UTC], ["updated_at", 2016-08-19 02:48:52 UTC]]  (141.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos anos José do Egito tinha quando morreu?"], ["created_at", 2016-08-19 02:48:52 UTC], ["updated_at", 2016-08-19 02:48:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "110"], ["question_id", 1168], ["correct", true], ["created_at", 2016-08-19 02:48:52 UTC], ["updated_at", 2016-08-19 02:48:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "90"], ["question_id", 1168], ["correct", false], ["created_at", 2016-08-19 02:48:52 UTC], ["updated_at", 2016-08-19 02:48:52 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "70"], ["question_id", 1168], ["correct", false], ["created_at", 2016-08-19 02:48:52 UTC], ["updated_at", 2016-08-19 02:48:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "115"], ["question_id", 1168], ["correct", false], ["created_at", 2016-08-19 02:48:52 UTC], ["updated_at", 2016-08-19 02:48:52 UTC]]  (165.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos anos Mefibosete tinha quando foi deixado cair por sua babá, e que com isso afetou seus 2 pés?"], ["created_at", 2016-08-19 02:48:52 UTC], ["updated_at", 2016-08-19 02:48:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 1169], ["correct", true], ["created_at", 2016-08-19 02:48:52 UTC], ["updated_at", 2016-08-19 02:48:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 1169], ["correct", false], ["created_at", 2016-08-19 02:48:52 UTC], ["updated_at", 2016-08-19 02:48:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 1169], ["correct", false], ["created_at", 2016-08-19 02:48:52 UTC], ["updated_at", 2016-08-19 02:48:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 1169], ["correct", false], ["created_at", 2016-08-19 02:48:52 UTC], ["updated_at", 2016-08-19 02:48:52 UTC]]  (158.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos anos o rei Salomão levou para construir o Templo de Deus?"], ["created_at", 2016-08-19 02:48:53 UTC], ["updated_at", 2016-08-19 02:48:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7"], ["question_id", 1170], ["correct", true], ["created_at", 2016-08-19 02:48:53 UTC], ["updated_at", 2016-08-19 02:48:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12"], ["question_id", 1170], ["correct", false], ["created_at", 2016-08-19 02:48:53 UTC], ["updated_at", 2016-08-19 02:48:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 1170], ["correct", false], ["created_at", 2016-08-19 02:48:53 UTC], ["updated_at", 2016-08-19 02:48:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 1170], ["correct", false], ["created_at", 2016-08-19 02:48:53 UTC], ["updated_at", 2016-08-19 02:48:53 UTC]]  (134.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos anos tinha Manassés quando foi constituído rei do povo de Israel?"], ["created_at", 2016-08-19 02:48:53 UTC], ["updated_at", 2016-08-19 02:48:53 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12"], ["question_id", 1171], ["correct", true], ["created_at", 2016-08-19 02:48:53 UTC], ["updated_at", 2016-08-19 02:48:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "25"], ["question_id", 1171], ["correct", false], ["created_at", 2016-08-19 02:48:53 UTC], ["updated_at", 2016-08-19 02:48:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "45"], ["question_id", 1171], ["correct", false], ["created_at", 2016-08-19 02:48:53 UTC], ["updated_at", 2016-08-19 02:48:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7"], ["question_id", 1171], ["correct", false], ["created_at", 2016-08-19 02:48:53 UTC], ["updated_at", 2016-08-19 02:48:53 UTC]]  (150.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos anos viveu Matusalém, o homem mais velho da Bíblia?"], ["created_at", 2016-08-19 02:48:53 UTC], ["updated_at", 2016-08-19 02:48:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "969"], ["question_id", 1172], ["correct", true], ["created_at", 2016-08-19 02:48:53 UTC], ["updated_at", 2016-08-19 02:48:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "909"], ["question_id", 1172], ["correct", false], ["created_at", 2016-08-19 02:48:53 UTC], ["updated_at", 2016-08-19 02:48:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "999"], ["question_id", 1172], ["correct", false], ["created_at", 2016-08-19 02:48:53 UTC], ["updated_at", 2016-08-19 02:48:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "949"], ["question_id", 1172], ["correct", false], ["created_at", 2016-08-19 02:48:53 UTC], ["updated_at", 2016-08-19 02:48:53 UTC]]  (308.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos apóstolos Jesus chamou?"], ["created_at", 2016-08-19 02:48:53 UTC], ["updated_at", 2016-08-19 02:48:53 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12"], ["question_id", 1173], ["correct", true], ["created_at", 2016-08-19 02:48:53 UTC], ["updated_at", 2016-08-19 02:48:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "11"], ["question_id", 1173], ["correct", false], ["created_at", 2016-08-19 02:48:53 UTC], ["updated_at", 2016-08-19 02:48:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "13"], ["question_id", 1173], ["correct", false], ["created_at", 2016-08-19 02:48:53 UTC], ["updated_at", 2016-08-19 02:48:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10"], ["question_id", 1173], ["correct", false], ["created_at", 2016-08-19 02:48:53 UTC], ["updated_at", 2016-08-19 02:48:53 UTC]]  (191.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos bois foram sacrificados como oferta pacífica quando Deus entrou no Templo de Jerusalém?"], ["created_at", 2016-08-19 02:48:53 UTC], ["updated_at", 2016-08-19 02:48:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "22000"], ["question_id", 1174], ["correct", true], ["created_at", 2016-08-19 02:48:53 UTC], ["updated_at", 2016-08-19 02:48:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2200"], ["question_id", 1174], ["correct", false], ["created_at", 2016-08-19 02:48:53 UTC], ["updated_at", 2016-08-19 02:48:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "200"], ["question_id", 1174], ["correct", false], ["created_at", 2016-08-19 02:48:53 UTC], ["updated_at", 2016-08-19 02:48:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12000"], ["question_id", 1174], ["correct", false], ["created_at", 2016-08-19 02:48:53 UTC], ["updated_at", 2016-08-19 02:48:53 UTC]]  (124.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos cânticos escreveu Salomão?"], ["created_at", 2016-08-19 02:48:54 UTC], ["updated_at", 2016-08-19 02:48:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1005"], ["question_id", 1175], ["correct", true], ["created_at", 2016-08-19 02:48:54 UTC], ["updated_at", 2016-08-19 02:48:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "505"], ["question_id", 1175], ["correct", false], ["created_at", 2016-08-19 02:48:54 UTC], ["updated_at", 2016-08-19 02:48:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "805"], ["question_id", 1175], ["correct", false], ["created_at", 2016-08-19 02:48:54 UTC], ["updated_at", 2016-08-19 02:48:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "205"], ["question_id", 1175], ["correct", false], ["created_at", 2016-08-19 02:48:54 UTC], ["updated_at", 2016-08-19 02:48:54 UTC]]  (200.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos capítulos a Bíblia possui?"], ["created_at", 2016-08-19 02:48:54 UTC], ["updated_at", 2016-08-19 02:48:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1189"], ["question_id", 1176], ["correct", true], ["created_at", 2016-08-19 02:48:54 UTC], ["updated_at", 2016-08-19 02:48:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "964"], ["question_id", 1176], ["correct", false], ["created_at", 2016-08-19 02:48:54 UTC], ["updated_at", 2016-08-19 02:48:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2412"], ["question_id", 1176], ["correct", false], ["created_at", 2016-08-19 02:48:54 UTC], ["updated_at", 2016-08-19 02:48:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1518"], ["question_id", 1176], ["correct", false], ["created_at", 2016-08-19 02:48:54 UTC], ["updated_at", 2016-08-19 02:48:54 UTC]]  (150.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos capítulos possui o maior livro da Bíblia (Salmos)?"], ["created_at", 2016-08-19 02:48:54 UTC], ["updated_at", 2016-08-19 02:48:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "150"], ["question_id", 1177], ["correct", true], ["created_at", 2016-08-19 02:48:54 UTC], ["updated_at", 2016-08-19 02:48:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "65"], ["question_id", 1177], ["correct", false], ["created_at", 2016-08-19 02:48:54 UTC], ["updated_at", 2016-08-19 02:48:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "95"], ["question_id", 1177], ["correct", false], ["created_at", 2016-08-19 02:48:54 UTC], ["updated_at", 2016-08-19 02:48:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "119"], ["question_id", 1177], ["correct", false], ["created_at", 2016-08-19 02:48:54 UTC], ["updated_at", 2016-08-19 02:48:54 UTC]]  (142.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos cestos de comida ainda sobraram após todas as pessoas terem se alimentado no milagre da multiplicação?"], ["created_at", 2016-08-19 02:48:54 UTC], ["updated_at", 2016-08-19 02:48:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12 Cestos"], ["question_id", 1178], ["correct", true], ["created_at", 2016-08-19 02:48:54 UTC], ["updated_at", 2016-08-19 02:48:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10 Cestos"], ["question_id", 1178], ["correct", false], ["created_at", 2016-08-19 02:48:54 UTC], ["updated_at", 2016-08-19 02:48:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Cestos"], ["question_id", 1178], ["correct", false], ["created_at", 2016-08-19 02:48:54 UTC], ["updated_at", 2016-08-19 02:48:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "15 Cestos"], ["question_id", 1178], ["correct", false], ["created_at", 2016-08-19 02:48:54 UTC], ["updated_at", 2016-08-19 02:48:54 UTC]]  (149.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos conveses havia na arca de Noé?"], ["created_at", 2016-08-19 02:48:54 UTC], ["updated_at", 2016-08-19 02:48:54 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 1179], ["correct", true], ["created_at", 2016-08-19 02:48:54 UTC], ["updated_at", 2016-08-19 02:48:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 1179], ["correct", false], ["created_at", 2016-08-19 02:48:54 UTC], ["updated_at", 2016-08-19 02:48:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 1179], ["correct", false], ["created_at", 2016-08-19 02:48:54 UTC], ["updated_at", 2016-08-19 02:48:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhum"], ["question_id", 1179], ["correct", false], ["created_at", 2016-08-19 02:48:54 UTC], ["updated_at", 2016-08-19 02:48:54 UTC]]  (158.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos demônios Jesus expulsou de Maria Madalena?"], ["created_at", 2016-08-19 02:48:54 UTC], ["updated_at", 2016-08-19 02:48:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7"], ["question_id", 1180], ["correct", true], ["created_at", 2016-08-19 02:48:54 UTC], ["updated_at", 2016-08-19 02:48:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 1180], ["correct", false], ["created_at", 2016-08-19 02:48:54 UTC], ["updated_at", 2016-08-19 02:48:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 1180], ["correct", false], ["created_at", 2016-08-19 02:48:54 UTC], ["updated_at", 2016-08-19 02:48:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 1180], ["correct", false], ["created_at", 2016-08-19 02:48:54 UTC], ["updated_at", 2016-08-19 02:48:54 UTC]]  (141.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos dias a mãe de Rebeca sugeriu que ela ficasse com seus parentes antes de partir para se casar?"], ["created_at", 2016-08-19 02:48:55 UTC], ["updated_at", 2016-08-19 02:48:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10 Dias"], ["question_id", 1181], ["correct", true], ["created_at", 2016-08-19 02:48:55 UTC], ["updated_at", 2016-08-19 02:48:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "30 Dias"], ["question_id", 1181], ["correct", false], ["created_at", 2016-08-19 02:48:55 UTC], ["updated_at", 2016-08-19 02:48:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 Dias"], ["question_id", 1181], ["correct", false], ["created_at", 2016-08-19 02:48:55 UTC], ["updated_at", 2016-08-19 02:48:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "14 Dias"], ["question_id", 1181], ["correct", false], ["created_at", 2016-08-19 02:48:55 UTC], ["updated_at", 2016-08-19 02:48:55 UTC]]  (166.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos dias Jesus jejuou enquanto esteve no deserto, antes de iniciar seu ministério?"], ["created_at", 2016-08-19 02:48:55 UTC], ["updated_at", 2016-08-19 02:48:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "40"], ["question_id", 1182], ["correct", true], ["created_at", 2016-08-19 02:48:55 UTC], ["updated_at", 2016-08-19 02:48:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "30"], ["question_id", 1182], ["correct", false], ["created_at", 2016-08-19 02:48:55 UTC], ["updated_at", 2016-08-19 02:48:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "50"], ["question_id", 1182], ["correct", false], ["created_at", 2016-08-19 02:48:55 UTC], ["updated_at", 2016-08-19 02:48:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "20"], ["question_id", 1182], ["correct", false], ["created_at", 2016-08-19 02:48:55 UTC], ["updated_at", 2016-08-19 02:48:55 UTC]]  (125.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos dias Lázaro esteve sepultado antes de ser ressuscitado por Jesus?"], ["created_at", 2016-08-19 02:48:55 UTC], ["updated_at", 2016-08-19 02:48:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 1183], ["correct", true], ["created_at", 2016-08-19 02:48:55 UTC], ["updated_at", 2016-08-19 02:48:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7"], ["question_id", 1183], ["correct", false], ["created_at", 2016-08-19 02:48:55 UTC], ["updated_at", 2016-08-19 02:48:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 1183], ["correct", false], ["created_at", 2016-08-19 02:48:55 UTC], ["updated_at", 2016-08-19 02:48:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 1183], ["correct", false], ["created_at", 2016-08-19 02:48:55 UTC], ["updated_at", 2016-08-19 02:48:55 UTC]]  (124.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos discípulos Jesus mandou tomar emprestado um jumento?"], ["created_at", 2016-08-19 02:48:55 UTC], ["updated_at", 2016-08-19 02:48:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 1184], ["correct", true], ["created_at", 2016-08-19 02:48:55 UTC], ["updated_at", 2016-08-19 02:48:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 1184], ["correct", false], ["created_at", 2016-08-19 02:48:55 UTC], ["updated_at", 2016-08-19 02:48:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 1184], ["correct", false], ["created_at", 2016-08-19 02:48:55 UTC], ["updated_at", 2016-08-19 02:48:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 1184], ["correct", false], ["created_at", 2016-08-19 02:48:55 UTC], ["updated_at", 2016-08-19 02:48:55 UTC]]  (124.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos Evangelhos existem no Antigo Testamento?"], ["created_at", 2016-08-19 02:48:55 UTC], ["updated_at", 2016-08-19 02:48:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhum"], ["question_id", 1185], ["correct", true], ["created_at", 2016-08-19 02:48:55 UTC], ["updated_at", 2016-08-19 02:48:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 1185], ["correct", false], ["created_at", 2016-08-19 02:48:55 UTC], ["updated_at", 2016-08-19 02:48:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 1185], ["correct", false], ["created_at", 2016-08-19 02:48:55 UTC], ["updated_at", 2016-08-19 02:48:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 1185], ["correct", false], ["created_at", 2016-08-19 02:48:55 UTC], ["updated_at", 2016-08-19 02:48:55 UTC]]  (141.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos Evangelhos existem no Novo Testamento?"], ["created_at", 2016-08-19 02:48:55 UTC], ["updated_at", 2016-08-19 02:48:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 1186], ["correct", true], ["created_at", 2016-08-19 02:48:55 UTC], ["updated_at", 2016-08-19 02:48:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 1186], ["correct", false], ["created_at", 2016-08-19 02:48:55 UTC], ["updated_at", 2016-08-19 02:48:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 1186], ["correct", false], ["created_at", 2016-08-19 02:48:55 UTC], ["updated_at", 2016-08-19 02:48:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 1186], ["correct", false], ["created_at", 2016-08-19 02:48:55 UTC], ["updated_at", 2016-08-19 02:48:55 UTC]]  (241.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos filhos de Davi nasceram durante seu reinado em Hebrom?"], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "6"], ["question_id", 1187], ["correct", true], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 1187], ["correct", false], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 1187], ["correct", false], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 1187], ["correct", false], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]]  (107.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos filhos de José se tornaram líderes das tribos de Israel?"], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhum"], ["question_id", 1188], ["correct", true], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12"], ["question_id", 1188], ["correct", false], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas 6"], ["question_id", 1188], ["correct", false], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "18"], ["question_id", 1188], ["correct", false], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]]  (108.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos filhos Jair, juiz de Israel, tinha?"], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "30"], ["question_id", 1189], ["correct", true], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 1189], ["correct", false], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "13"], ["question_id", 1189], ["correct", false], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "23"], ["question_id", 1189], ["correct", false], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]]  (116.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos filhos Noé tinha?"], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 1190], ["correct", true], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 1190], ["correct", false], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 1190], ["correct", false], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7"], ["question_id", 1190], ["correct", false], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]]  (125.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos filisteus morreram quando Sansão destruiu a construção em que se encontravam?"], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Mil"], ["question_id", 1191], ["correct", true], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 Mil"], ["question_id", 1191], ["correct", false], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "300"], ["question_id", 1191], ["correct", false], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5 Mil"], ["question_id", 1191], ["correct", false], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]]  (133.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos filisteus Sansão matou com apenas uma única queixada de jumento?"], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1000"], ["question_id", 1192], ["correct", true], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "300"], ["question_id", 1192], ["correct", false], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "600"], ["question_id", 1192], ["correct", false], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1500"], ["question_id", 1192], ["correct", false], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]]  (160.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos foram os dias da criação?"], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "6"], ["question_id", 1193], ["correct", true], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7"], ["question_id", 1193], ["correct", false], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 1193], ["correct", false], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhum"], ["question_id", 1193], ["correct", false], ["created_at", 2016-08-19 02:48:56 UTC], ["updated_at", 2016-08-19 02:48:56 UTC]]  (191.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos foram os filhos que Davi teve com Bate-Seba?"], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 1194], ["correct", true], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 1194], ["correct", false], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 1194], ["correct", false], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 1194], ["correct", false], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]]  (133.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos Governadores o rei Dario nomeou quando assumiu o reino da Babilônia?"], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "120"], ["question_id", 1195], ["correct", true], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12"], ["question_id", 1195], ["correct", false], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 1195], ["correct", false], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "60"], ["question_id", 1195], ["correct", false], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]]  (149.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos homens foram precisos para amarrar Sansão?"], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3000"], ["question_id", 1196], ["correct", true], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "30"], ["question_id", 1196], ["correct", false], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "300"], ["question_id", 1196], ["correct", false], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 1196], ["correct", false], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]]  (191.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos músicos faziam parte da orquestra do rei Davi?"], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "288"], ["question_id", 1197], ["correct", true], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "28"], ["question_id", 1197], ["correct", false], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "88"], ["question_id", 1197], ["correct", false], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "148"], ["question_id", 1197], ["correct", false], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]]  (125.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos personagens do Velho Testamento apareceram na montanha durante a transfiguração?"], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 1198], ["correct", true], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 1198], ["correct", false], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 1198], ["correct", false], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 1198], ["correct", false], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]]  (142.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos Presidentes o rei Dario nomeou quando assumiu o reino da Babilônia?"], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 1199], ["correct", true], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "6"], ["question_id", 1199], ["correct", false], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "9"], ["question_id", 1199], ["correct", false], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 1199], ["correct", false], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]]  (132.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos príncipes filisteus ofereceram a Dalila 1.100 moedas de prata?"], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 1200], ["correct", true], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas 1"], ["question_id", 1200], ["correct", false], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todos Os 10"], ["question_id", 1200], ["correct", false], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7"], ["question_id", 1200], ["correct", false], ["created_at", 2016-08-19 02:48:57 UTC], ["updated_at", 2016-08-19 02:48:57 UTC]]  (107.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos provérbios escreveu Salomão?"], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3000"], ["question_id", 1201], ["correct", true], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "13000"], ["question_id", 1201], ["correct", false], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1500"], ["question_id", 1201], ["correct", false], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5000"], ["question_id", 1201], ["correct", false], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]]  (110.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos querubins de ouro haviam sobre o propiciatório da Arca da Aliança?"], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 1202], ["correct", true], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 1202], ["correct", false], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 1202], ["correct", false], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhum de Ouro, Mas 2 de Prata"], ["question_id", 1202], ["correct", false], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]]  (124.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos trabalhadores foram designados para a construção do Templo de Jerusalém?"], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "30000"], ["question_id", 1203], ["correct", true], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10000"], ["question_id", 1203], ["correct", false], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5000"], ["question_id", 1203], ["correct", false], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "70000"], ["question_id", 1203], ["correct", false], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]]  (125.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos versículos a Bíblia possui?"], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "31102"], ["question_id", 1204], ["correct", true], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "19453"], ["question_id", 1204], ["correct", false], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "54870"], ["question_id", 1204], ["correct", false], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "69541"], ["question_id", 1204], ["correct", false], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]]  (158.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos versículos possui o maior capítulo da Bíblia (Salmos 119)?"], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "176"], ["question_id", 1205], ["correct", true], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "150"], ["question_id", 1205], ["correct", false], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "145"], ["question_id", 1205], ["correct", false], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "160"], ["question_id", 1205], ["correct", false], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]]  (191.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos versículos possui o menor capítulo da Bíblia (Salmos 117)?"], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 1206], ["correct", true], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "9"], ["question_id", 1206], ["correct", false], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "6"], ["question_id", 1206], ["correct", false], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 1206], ["correct", false], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]]  (124.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos versículos possui o menor livro da Bíblia (2ª João)?"], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "13"], ["question_id", 1207], ["correct", true], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "15"], ["question_id", 1207], ["correct", false], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "11"], ["question_id", 1207], ["correct", false], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "17"], ["question_id", 1207], ["correct", false], ["created_at", 2016-08-19 02:48:58 UTC], ["updated_at", 2016-08-19 02:48:58 UTC]]  (176.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que animais os 30 filhos de Jair, juiz de Israel, montavam?"], ["created_at", 2016-08-19 02:48:59 UTC], ["updated_at", 2016-08-19 02:48:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jumentos"], ["question_id", 1208], ["correct", true], ["created_at", 2016-08-19 02:48:59 UTC], ["updated_at", 2016-08-19 02:48:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cavalos"], ["question_id", 1208], ["correct", false], ["created_at", 2016-08-19 02:48:59 UTC], ["updated_at", 2016-08-19 02:48:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Camelos"], ["question_id", 1208], ["correct", false], ["created_at", 2016-08-19 02:48:59 UTC], ["updated_at", 2016-08-19 02:48:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Burros"], ["question_id", 1208], ["correct", false], ["created_at", 2016-08-19 02:48:59 UTC], ["updated_at", 2016-08-19 02:48:59 UTC]]  (175.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que animal Balaão possuía que chegou a falar após ter visto um anjo do Senhor?"], ["created_at", 2016-08-19 02:48:59 UTC], ["updated_at", 2016-08-19 02:48:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Burro"], ["question_id", 1209], ["correct", true], ["created_at", 2016-08-19 02:48:59 UTC], ["updated_at", 2016-08-19 02:48:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cavalo"], ["question_id", 1209], ["correct", false], ["created_at", 2016-08-19 02:48:59 UTC], ["updated_at", 2016-08-19 02:48:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cachorro"], ["question_id", 1209], ["correct", false], ["created_at", 2016-08-19 02:48:59 UTC], ["updated_at", 2016-08-19 02:48:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vaca"], ["question_id", 1209], ["correct", false], ["created_at", 2016-08-19 02:48:59 UTC], ["updated_at", 2016-08-19 02:48:59 UTC]]  (132.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que animal comprimiu o pé de Balaão contra o muro?"], ["created_at", 2016-08-19 02:48:59 UTC], ["updated_at", 2016-08-19 02:48:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jumenta"], ["question_id", 1210], ["correct", true], ["created_at", 2016-08-19 02:48:59 UTC], ["updated_at", 2016-08-19 02:48:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Burro"], ["question_id", 1210], ["correct", false], ["created_at", 2016-08-19 02:48:59 UTC], ["updated_at", 2016-08-19 02:48:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cavalo"], ["question_id", 1210], ["correct", false], ["created_at", 2016-08-19 02:48:59 UTC], ["updated_at", 2016-08-19 02:48:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Boi"], ["question_id", 1210], ["correct", false], ["created_at", 2016-08-19 02:48:59 UTC], ["updated_at", 2016-08-19 02:48:59 UTC]]  (149.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que animal teria que ser reposto cinco vezes mais se fosse roubado por alguém?"], ["created_at", 2016-08-19 02:48:59 UTC], ["updated_at", 2016-08-19 02:48:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Boi"], ["question_id", 1211], ["correct", true], ["created_at", 2016-08-19 02:48:59 UTC], ["updated_at", 2016-08-19 02:48:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ovelha"], ["question_id", 1211], ["correct", false], ["created_at", 2016-08-19 02:48:59 UTC], ["updated_at", 2016-08-19 02:48:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jumento"], ["question_id", 1211], ["correct", false], ["created_at", 2016-08-19 02:48:59 UTC], ["updated_at", 2016-08-19 02:48:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cabrito"], ["question_id", 1211], ["correct", false], ["created_at", 2016-08-19 02:48:59 UTC], ["updated_at", 2016-08-19 02:48:59 UTC]]  (125.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que cena incrível Moisés presenciou quando ele estava no Monte Horebe?"], ["created_at", 2016-08-19 02:48:59 UTC], ["updated_at", 2016-08-19 02:48:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Arbusto Em Chamas Que Não Se Consumia"], ["question_id", 1212], ["correct", true], ["created_at", 2016-08-19 02:48:59 UTC], ["updated_at", 2016-08-19 02:48:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Água Jorrando de Uma Pedra"], ["question_id", 1212], ["correct", false], ["created_at", 2016-08-19 02:48:59 UTC], ["updated_at", 2016-08-19 02:48:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Bando de Codornizes Que Falavam"], ["question_id", 1212], ["correct", false], ["created_at", 2016-08-19 02:48:59 UTC], ["updated_at", 2016-08-19 02:48:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Ovelha Que Voava"], ["question_id", 1212], ["correct", false], ["created_at", 2016-08-19 02:48:59 UTC], ["updated_at", 2016-08-19 02:48:59 UTC]]  (132.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que desejava construir o Templo de Deus, mas cujo pedido foi negado por Deus?"], ["created_at", 2016-08-19 02:48:59 UTC], ["updated_at", 2016-08-19 02:48:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1213], ["correct", true], ["created_at", 2016-08-19 02:48:59 UTC], ["updated_at", 2016-08-19 02:48:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1213], ["correct", false], ["created_at", 2016-08-19 02:48:59 UTC], ["updated_at", 2016-08-19 02:48:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel"], ["question_id", 1213], ["correct", false], ["created_at", 2016-08-19 02:48:59 UTC], ["updated_at", 2016-08-19 02:48:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 1213], ["correct", false], ["created_at", 2016-08-19 02:48:59 UTC], ["updated_at", 2016-08-19 02:48:59 UTC]]  (208.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que discípulo Jesus encontrou sob uma figueira?"], ["created_at", 2016-08-19 02:49:00 UTC], ["updated_at", 2016-08-19 02:49:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Natanael"], ["question_id", 1214], ["correct", true], ["created_at", 2016-08-19 02:49:00 UTC], ["updated_at", 2016-08-19 02:49:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mateus"], ["question_id", 1214], ["correct", false], ["created_at", 2016-08-19 02:49:00 UTC], ["updated_at", 2016-08-19 02:49:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marcos"], ["question_id", 1214], ["correct", false], ["created_at", 2016-08-19 02:49:00 UTC], ["updated_at", 2016-08-19 02:49:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 1214], ["correct", false], ["created_at", 2016-08-19 02:49:00 UTC], ["updated_at", 2016-08-19 02:49:00 UTC]]  (149.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que evento ocorreu quando Jesus tinha apenas 8 dias de idade?"], ["created_at", 2016-08-19 02:49:00 UTC], ["updated_at", 2016-08-19 02:49:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Foi Circuncidado"], ["question_id", 1215], ["correct", true], ["created_at", 2016-08-19 02:49:00 UTC], ["updated_at", 2016-08-19 02:49:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Foi Desmamado"], ["question_id", 1215], ["correct", false], ["created_at", 2016-08-19 02:49:00 UTC], ["updated_at", 2016-08-19 02:49:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Foi Batizado"], ["question_id", 1215], ["correct", false], ["created_at", 2016-08-19 02:49:00 UTC], ["updated_at", 2016-08-19 02:49:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Foi Apresentado Ao Templo"], ["question_id", 1215], ["correct", false], ["created_at", 2016-08-19 02:49:00 UTC], ["updated_at", 2016-08-19 02:49:00 UTC]]  (125.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que faixa de montanhas produziu as árvores de cedro e de cipreste que Salomão utilizou na construção do Templo?"], ["created_at", 2016-08-19 02:49:00 UTC], ["updated_at", 2016-08-19 02:49:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Montanhas do Líbano"], ["question_id", 1216], ["correct", true], ["created_at", 2016-08-19 02:49:00 UTC], ["updated_at", 2016-08-19 02:49:00 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Montanhas da Síria"], ["question_id", 1216], ["correct", false], ["created_at", 2016-08-19 02:49:00 UTC], ["updated_at", 2016-08-19 02:49:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Montanhas da Assíria"], ["question_id", 1216], ["correct", false], ["created_at", 2016-08-19 02:49:00 UTC], ["updated_at", 2016-08-19 02:49:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Montanhas da Líbia"], ["question_id", 1216], ["correct", false], ["created_at", 2016-08-19 02:49:00 UTC], ["updated_at", 2016-08-19 02:49:00 UTC]]  (132.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que falso deus era a divindade principal de Canaã?"], ["created_at", 2016-08-19 02:49:00 UTC], ["updated_at", 2016-08-19 02:49:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Baal"], ["question_id", 1217], ["correct", true], ["created_at", 2016-08-19 02:49:00 UTC], ["updated_at", 2016-08-19 02:49:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zeus"], ["question_id", 1217], ["correct", false], ["created_at", 2016-08-19 02:49:00 UTC], ["updated_at", 2016-08-19 02:49:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amon"], ["question_id", 1217], ["correct", false], ["created_at", 2016-08-19 02:49:00 UTC], ["updated_at", 2016-08-19 02:49:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiglete-pileser"], ["question_id", 1217], ["correct", false], ["created_at", 2016-08-19 02:49:00 UTC], ["updated_at", 2016-08-19 02:49:00 UTC]]  (150.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que foi a mãe de Jeroboão?"], ["created_at", 2016-08-19 02:49:00 UTC], ["updated_at", 2016-08-19 02:49:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maacá"], ["question_id", 1218], ["correct", true], ["created_at", 2016-08-19 02:49:00 UTC], ["updated_at", 2016-08-19 02:49:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vasti"], ["question_id", 1218], ["correct", false], ["created_at", 2016-08-19 02:49:00 UTC], ["updated_at", 2016-08-19 02:49:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ester"], ["question_id", 1218], ["correct", false], ["created_at", 2016-08-19 02:49:00 UTC], ["updated_at", 2016-08-19 02:49:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sabá"], ["question_id", 1218], ["correct", false], ["created_at", 2016-08-19 02:49:00 UTC], ["updated_at", 2016-08-19 02:49:00 UTC]]  (159.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que foi o pai dos músicos?"], ["created_at", 2016-08-19 02:49:00 UTC], ["updated_at", 2016-08-19 02:49:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jubal"], ["question_id", 1219], ["correct", true], ["created_at", 2016-08-19 02:49:00 UTC], ["updated_at", 2016-08-19 02:49:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matusalém"], ["question_id", 1219], ["correct", false], ["created_at", 2016-08-19 02:49:00 UTC], ["updated_at", 2016-08-19 02:49:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Melquisedeque"], ["question_id", 1219], ["correct", false], ["created_at", 2016-08-19 02:49:00 UTC], ["updated_at", 2016-08-19 02:49:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jafé"], ["question_id", 1219], ["correct", false], ["created_at", 2016-08-19 02:49:00 UTC], ["updated_at", 2016-08-19 02:49:00 UTC]]  (125.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que grupo de pessoas queria saber o segredo da força de Sansão?"], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Filisteus"], ["question_id", 1220], ["correct", true], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Amalequitas"], ["question_id", 1220], ["correct", false], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Persas"], ["question_id", 1220], ["correct", false], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Fariseus"], ["question_id", 1220], ["correct", false], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]]  (125.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que homem israelita era celebrado por sua beleza?"], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 1221], ["correct", true], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Balaão"], ["question_id", 1221], ["correct", false], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1221], ["correct", false], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1221], ["correct", false], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]]  (124.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que ídolo representava o deus sírio louvado pelo general Naamã?"], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rimon"], ["question_id", 1222], ["correct", true], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bel"], ["question_id", 1222], ["correct", false], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gade"], ["question_id", 1222], ["correct", false], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nebo"], ["question_id", 1222], ["correct", false], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]]  (142.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que instrumento era tocado nos funerais nos tempos do Novo Testamento?"], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Flauta"], ["question_id", 1223], ["correct", true], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Harpa"], ["question_id", 1223], ["correct", false], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trombetas"], ["question_id", 1223], ["correct", false], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Liras"], ["question_id", 1223], ["correct", false], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]]  (158.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que instrumento musical foi ouvido antes de Moisés subir ao Sinai e receber a Lei?"], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trombeta"], ["question_id", 1224], ["correct", true], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Harpas"], ["question_id", 1224], ["correct", false], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tambores"], ["question_id", 1224], ["correct", false], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tamborim"], ["question_id", 1224], ["correct", false], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]]  (116.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que instrumentos Miriã tocou depois da travessia do Mar Vermelho?"], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tamborim"], ["question_id", 1225], ["correct", true], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Flauta"], ["question_id", 1225], ["correct", false], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Harpa"], ["question_id", 1225], ["correct", false], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trombeta"], ["question_id", 1225], ["correct", false], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]]  (124.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que mandamento nos instrui a não matar?"], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "6º"], ["question_id", 1226], ["correct", true], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "8º"], ["question_id", 1226], ["correct", false], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10º"], ["question_id", 1226], ["correct", false], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "9º"], ["question_id", 1226], ["correct", false], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]]  (125.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que mandamento nos instrui a sermos honestos com o próximo?"], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "9º"], ["question_id", 1227], ["correct", true], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7º"], ["question_id", 1227], ["correct", false], ["created_at", 2016-08-19 02:49:01 UTC], ["updated_at", 2016-08-19 02:49:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5º"], ["question_id", 1227], ["correct", false], ["created_at", 2016-08-19 02:49:02 UTC], ["updated_at", 2016-08-19 02:49:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10º"], ["question_id", 1227], ["correct", false], ["created_at", 2016-08-19 02:49:02 UTC], ["updated_at", 2016-08-19 02:49:02 UTC]]  (124.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que monte era tão sagrado que se um animal o tocasse morreria instantaneamente?"], ["created_at", 2016-08-19 02:49:02 UTC], ["updated_at", 2016-08-19 02:49:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sinai"], ["question_id", 1228], ["correct", true], ["created_at", 2016-08-19 02:49:02 UTC], ["updated_at", 2016-08-19 02:49:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hebrom"], ["question_id", 1228], ["correct", false], ["created_at", 2016-08-19 02:49:02 UTC], ["updated_at", 2016-08-19 02:49:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carmelo"], ["question_id", 1228], ["correct", false], ["created_at", 2016-08-19 02:49:02 UTC], ["updated_at", 2016-08-19 02:49:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ararat"], ["question_id", 1228], ["correct", false], ["created_at", 2016-08-19 02:49:02 UTC], ["updated_at", 2016-08-19 02:49:02 UTC]]  (124.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que mulher abandonou a família para acompanhar a sogra?\n1,"], ["created_at", 2016-08-19 02:49:02 UTC], ["updated_at", 2016-08-19 02:49:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rute"], ["question_id", 1229], ["correct", true], ["created_at", 2016-08-19 02:49:02 UTC], ["updated_at", 2016-08-19 02:49:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ester"], ["question_id", 1229], ["correct", false], ["created_at", 2016-08-19 02:49:02 UTC], ["updated_at", 2016-08-19 02:49:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 1229], ["correct", false], ["created_at", 2016-08-19 02:49:02 UTC], ["updated_at", 2016-08-19 02:49:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Raquel"], ["question_id", 1229], ["correct", false], ["created_at", 2016-08-19 02:49:02 UTC], ["updated_at", 2016-08-19 02:49:02 UTC]]  (158.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que mulher ajudou o filho a praticar uma fraude?\n1,"], ["created_at", 2016-08-19 02:49:02 UTC], ["updated_at", 2016-08-19 02:49:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 1230], ["correct", true], ["created_at", 2016-08-19 02:49:02 UTC], ["updated_at", 2016-08-19 02:49:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isabel"], ["question_id", 1230], ["correct", false], ["created_at", 2016-08-19 02:49:02 UTC], ["updated_at", 2016-08-19 02:49:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Diná"], ["question_id", 1230], ["correct", false], ["created_at", 2016-08-19 02:49:02 UTC], ["updated_at", 2016-08-19 02:49:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Priscila"], ["question_id", 1230], ["correct", false], ["created_at", 2016-08-19 02:49:02 UTC], ["updated_at", 2016-08-19 02:49:02 UTC]]  (166.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que mulher devotada dedicou seu filho, Samuel, ao Senhor?"], ["created_at", 2016-08-19 02:49:02 UTC], ["updated_at", 2016-08-19 02:49:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 1231], ["correct", true], ["created_at", 2016-08-19 02:49:02 UTC], ["updated_at", 2016-08-19 02:49:02 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lídia"], ["question_id", 1231], ["correct", false], ["created_at", 2016-08-19 02:49:02 UTC], ["updated_at", 2016-08-19 02:49:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elisabete"], ["question_id", 1231], ["correct", false], ["created_at", 2016-08-19 02:49:02 UTC], ["updated_at", 2016-08-19 02:49:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abigail"], ["question_id", 1231], ["correct", false], ["created_at", 2016-08-19 02:49:02 UTC], ["updated_at", 2016-08-19 02:49:02 UTC]]  (150.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que mulher diabólica tentou destruir o rei Jeoás e toda a prole de Judá?"], ["created_at", 2016-08-19 02:49:02 UTC], ["updated_at", 2016-08-19 02:49:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Atalia"], ["question_id", 1232], ["correct", true], ["created_at", 2016-08-19 02:49:02 UTC], ["updated_at", 2016-08-19 02:49:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliana"], ["question_id", 1232], ["correct", false], ["created_at", 2016-08-19 02:49:02 UTC], ["updated_at", 2016-08-19 02:49:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elcana"], ["question_id", 1232], ["correct", false], ["created_at", 2016-08-19 02:49:02 UTC], ["updated_at", 2016-08-19 02:49:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jezabel"], ["question_id", 1232], ["correct", false], ["created_at", 2016-08-19 02:49:02 UTC], ["updated_at", 2016-08-19 02:49:02 UTC]]  (201.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que mulher matou toda a família real para ser rainha?"], ["created_at", 2016-08-19 02:49:02 UTC], ["updated_at", 2016-08-19 02:49:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Atalia"], ["question_id", 1233], ["correct", true], ["created_at", 2016-08-19 02:49:02 UTC], ["updated_at", 2016-08-19 02:49:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rute"], ["question_id", 1233], ["correct", false], ["created_at", 2016-08-19 02:49:02 UTC], ["updated_at", 2016-08-19 02:49:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jezabel"], ["question_id", 1233], ["correct", false], ["created_at", 2016-08-19 02:49:02 UTC], ["updated_at", 2016-08-19 02:49:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeoseba"], ["question_id", 1233], ["correct", false], ["created_at", 2016-08-19 02:49:02 UTC], ["updated_at", 2016-08-19 02:49:02 UTC]]  (150.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que parte do corpo de Mefibosete foi afetada quando sua babá o deixou cair com apenas 5 anos de idade?"], ["created_at", 2016-08-19 02:49:03 UTC], ["updated_at", 2016-08-19 02:49:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Pés"], ["question_id", 1234], ["correct", true], ["created_at", 2016-08-19 02:49:03 UTC], ["updated_at", 2016-08-19 02:49:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Braços"], ["question_id", 1234], ["correct", false], ["created_at", 2016-08-19 02:49:03 UTC], ["updated_at", 2016-08-19 02:49:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Suas Mãos"], ["question_id", 1234], ["correct", false], ["created_at", 2016-08-19 02:49:03 UTC], ["updated_at", 2016-08-19 02:49:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Suas Pernas"], ["question_id", 1234], ["correct", false], ["created_at", 2016-08-19 02:49:03 UTC], ["updated_at", 2016-08-19 02:49:03 UTC]]  (199.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que parte do corpo uma jumenta comprimiu o profeta Balaão contra um muro?"], ["created_at", 2016-08-19 02:49:03 UTC], ["updated_at", 2016-08-19 02:49:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pé"], ["question_id", 1235], ["correct", true], ["created_at", 2016-08-19 02:49:03 UTC], ["updated_at", 2016-08-19 02:49:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mão"], ["question_id", 1235], ["correct", false], ["created_at", 2016-08-19 02:49:03 UTC], ["updated_at", 2016-08-19 02:49:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cabeça"], ["question_id", 1235], ["correct", false], ["created_at", 2016-08-19 02:49:03 UTC], ["updated_at", 2016-08-19 02:49:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tórax"], ["question_id", 1235], ["correct", false], ["created_at", 2016-08-19 02:49:03 UTC], ["updated_at", 2016-08-19 02:49:03 UTC]]  (141.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que pessoas o profeta Isaías predisse que seriam levadas cativas para Babilônia e se tornatiam eunucas no palácio?"], ["created_at", 2016-08-19 02:49:03 UTC], ["updated_at", 2016-08-19 02:49:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Filhos de Ezequias"], ["question_id", 1236], ["correct", true], ["created_at", 2016-08-19 02:49:03 UTC], ["updated_at", 2016-08-19 02:49:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Profetas de Judá"], ["question_id", 1236], ["correct", false], ["created_at", 2016-08-19 02:49:03 UTC], ["updated_at", 2016-08-19 02:49:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Família de Isaías"], ["question_id", 1236], ["correct", false], ["created_at", 2016-08-19 02:49:03 UTC], ["updated_at", 2016-08-19 02:49:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Toda A Nação Israelita"], ["question_id", 1236], ["correct", false], ["created_at", 2016-08-19 02:49:03 UTC], ["updated_at", 2016-08-19 02:49:03 UTC]]  (184.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que povo chamava Belzebu como o \"príncipe dos espíritos do diabo\"?"], ["created_at", 2016-08-19 02:49:03 UTC], ["updated_at", 2016-08-19 02:49:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fariseus"], ["question_id", 1237], ["correct", true], ["created_at", 2016-08-19 02:49:03 UTC], ["updated_at", 2016-08-19 02:49:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Levitas"], ["question_id", 1237], ["correct", false], ["created_at", 2016-08-19 02:49:03 UTC], ["updated_at", 2016-08-19 02:49:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escribas"], ["question_id", 1237], ["correct", false], ["created_at", 2016-08-19 02:49:03 UTC], ["updated_at", 2016-08-19 02:49:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Romanos"], ["question_id", 1237], ["correct", false], ["created_at", 2016-08-19 02:49:03 UTC], ["updated_at", 2016-08-19 02:49:03 UTC]]  (159.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que povo derrotou o rei Saul e seus filhos no Monte Gilboa?"], ["created_at", 2016-08-19 02:49:03 UTC], ["updated_at", 2016-08-19 02:49:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filisteu"], ["question_id", 1238], ["correct", true], ["created_at", 2016-08-19 02:49:03 UTC], ["updated_at", 2016-08-19 02:49:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cananeu"], ["question_id", 1238], ["correct", false], ["created_at", 2016-08-19 02:49:03 UTC], ["updated_at", 2016-08-19 02:49:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amorreu"], ["question_id", 1238], ["correct", false], ["created_at", 2016-08-19 02:49:03 UTC], ["updated_at", 2016-08-19 02:49:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônico"], ["question_id", 1238], ["correct", false], ["created_at", 2016-08-19 02:49:03 UTC], ["updated_at", 2016-08-19 02:49:03 UTC]]  (183.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que rei reconheceu que Deus fez com ele o mesmo que ele tinha feito aos seus inimigos?\n1,"], ["created_at", 2016-08-19 02:49:04 UTC], ["updated_at", 2016-08-19 02:49:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adoni-bezeque"], ["question_id", 1239], ["correct", true], ["created_at", 2016-08-19 02:49:04 UTC], ["updated_at", 2016-08-19 02:49:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bezeque"], ["question_id", 1239], ["correct", false], ["created_at", 2016-08-19 02:49:04 UTC], ["updated_at", 2016-08-19 02:49:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eglom"], ["question_id", 1239], ["correct", false], ["created_at", 2016-08-19 02:49:04 UTC], ["updated_at", 2016-08-19 02:49:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Baraque"], ["question_id", 1239], ["correct", false], ["created_at", 2016-08-19 02:49:04 UTC], ["updated_at", 2016-08-19 02:49:04 UTC]]  (177.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que rio se transformou em sangue?"], ["created_at", 2016-08-19 02:49:04 UTC], ["updated_at", 2016-08-19 02:49:04 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nilo"], ["question_id", 1240], ["correct", true], ["created_at", 2016-08-19 02:49:04 UTC], ["updated_at", 2016-08-19 02:49:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tigre"], ["question_id", 1240], ["correct", false], ["created_at", 2016-08-19 02:49:04 UTC], ["updated_at", 2016-08-19 02:49:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eufrates"], ["question_id", 1240], ["correct", false], ["created_at", 2016-08-19 02:49:04 UTC], ["updated_at", 2016-08-19 02:49:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jordão"], ["question_id", 1240], ["correct", false], ["created_at", 2016-08-19 02:49:04 UTC], ["updated_at", 2016-08-19 02:49:04 UTC]]  (191.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que substância Jesus disse ser inútil após ter perdido o gosto?"], ["created_at", 2016-08-19 02:49:04 UTC], ["updated_at", 2016-08-19 02:49:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sal"], ["question_id", 1241], ["correct", true], ["created_at", 2016-08-19 02:49:04 UTC], ["updated_at", 2016-08-19 02:49:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Açúcar"], ["question_id", 1241], ["correct", false], ["created_at", 2016-08-19 02:49:04 UTC], ["updated_at", 2016-08-19 02:49:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Levedo"], ["question_id", 1241], ["correct", false], ["created_at", 2016-08-19 02:49:04 UTC], ["updated_at", 2016-08-19 02:49:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fermento"], ["question_id", 1241], ["correct", false], ["created_at", 2016-08-19 02:49:04 UTC], ["updated_at", 2016-08-19 02:49:04 UTC]]  (175.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem absteu-se de alimentar-se dos alimentos impuros que haviam na mesa do rei?"], ["created_at", 2016-08-19 02:49:04 UTC], ["updated_at", 2016-08-19 02:49:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 1242], ["correct", true], ["created_at", 2016-08-19 02:49:04 UTC], ["updated_at", 2016-08-19 02:49:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 1242], ["correct", false], ["created_at", 2016-08-19 02:49:04 UTC], ["updated_at", 2016-08-19 02:49:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Naamã"], ["question_id", 1242], ["correct", false], ["created_at", 2016-08-19 02:49:04 UTC], ["updated_at", 2016-08-19 02:49:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Potifar"], ["question_id", 1242], ["correct", false], ["created_at", 2016-08-19 02:49:04 UTC], ["updated_at", 2016-08-19 02:49:04 UTC]]  (301.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem aconselhou Jacó a retornar para a terra de seus pais?"], ["created_at", 2016-08-19 02:49:04 UTC], ["updated_at", 2016-08-19 02:49:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deus"], ["question_id", 1243], ["correct", true], ["created_at", 2016-08-19 02:49:04 UTC], ["updated_at", 2016-08-19 02:49:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Profeta Elias"], ["question_id", 1243], ["correct", false], ["created_at", 2016-08-19 02:49:04 UTC], ["updated_at", 2016-08-19 02:49:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Anjo"], ["question_id", 1243], ["correct", false], ["created_at", 2016-08-19 02:49:04 UTC], ["updated_at", 2016-08-19 02:49:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 1243], ["correct", false], ["created_at", 2016-08-19 02:49:04 UTC], ["updated_at", 2016-08-19 02:49:04 UTC]]  (133.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem adoeceu que obrigou o rei Jeroboão a procurar o profeta Aías para dizer-lhe sobre sua condição de saúde?"], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Filho"], ["question_id", 1244], ["correct", true], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Neto"], ["question_id", 1244], ["correct", false], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Pai"], ["question_id", 1244], ["correct", false], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Sogra"], ["question_id", 1244], ["correct", false], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]]  (141.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem afirmou que apenas Deus poderia interpretar os sonhos que o rei Nabucodonosor estava tendo?"], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 1245], ["correct", true], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mesaque"], ["question_id", 1245], ["correct", false], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sadraque"], ["question_id", 1245], ["correct", false], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1245], ["correct", false], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]]  (124.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ajudou uma viúva pobre enchendo várias vasilhas de azeite?"], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 1246], ["correct", true], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 1246], ["correct", false], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eli"], ["question_id", 1246], ["correct", false], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elismael"], ["question_id", 1246], ["correct", false], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]]  (124.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem amarrou Sansão com 7 tendões não secos?"], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dalila"], ["question_id", 1247], ["correct", true], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Príncipes Filisteus"], ["question_id", 1247], ["correct", false], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Líderes Religiosos Filisteus"], ["question_id", 1247], ["correct", false], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Povo Filisteu"], ["question_id", 1247], ["correct", false], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]]  (124.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem amparou Saulo e defendeu-o para os apóstolos, assegurando-lhes que agora Saulo era um verdadeiro cristão?"], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Barnabé"], ["question_id", 1248], ["correct", true], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ananias"], ["question_id", 1248], ["correct", false], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Silas"], ["question_id", 1248], ["correct", false], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marcos"], ["question_id", 1248], ["correct", false], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]]  (160.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem Ananias curou da cegueira?"], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 1249], ["correct", true], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saulo"], ["question_id", 1249], ["correct", false], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 1249], ["correct", false], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Timóteo"], ["question_id", 1249], ["correct", false], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]]  (155.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem apareceu a Jesus na montanha durante a transfiguração?"], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés e Elias"], ["question_id", 1250], ["correct", true], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Enoque e Moisés"], ["question_id", 1250], ["correct", false], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias e Enoque"], ["question_id", 1250], ["correct", false], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés e Abraão"], ["question_id", 1250], ["correct", false], ["created_at", 2016-08-19 02:49:05 UTC], ["updated_at", 2016-08-19 02:49:05 UTC]]  (142.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem apareceu a Jesus para tentá-lo no deserto?"], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Satanás"], ["question_id", 1251], ["correct", true], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodias"], ["question_id", 1251], ["correct", false], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 1251], ["correct", false], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Legião de Demônios"], ["question_id", 1251], ["correct", false], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]]  (125.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem apresentou Jesus surrado à multidão, dizendo: \"Eis o homem!\"?"], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 1252], ["correct", true], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Agripa"], ["question_id", 1252], ["correct", false], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Antipa"], ["question_id", 1252], ["correct", false], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sacerdote Caifás"], ["question_id", 1252], ["correct", false], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]]  (127.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem arrancou as portas de entrada da cidade de Gaza?"], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 1253], ["correct", true], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1253], ["correct", false], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel"], ["question_id", 1253], ["correct", false], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1253], ["correct", false], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]]  (134.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem arrependeu-se após ter visto Jesus ser levado preso para a presença de Pôncio Pilatos?"], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas"], ["question_id", 1254], ["correct", true], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 1254], ["correct", false], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 1254], ["correct", false], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 1254], ["correct", false], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]]  (126.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem Atalia matou para poder ser rainha?\n1,"], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Toda A Família Real"], ["question_id", 1255], ["correct", true], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Rei"], ["question_id", 1255], ["correct", false], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Irmãos do Rei"], ["question_id", 1255], ["correct", false], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Mãe"], ["question_id", 1255], ["correct", false], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]]  (124.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem Barnabé defendeu perante os apóstolos, assegurando que ele havia se convertido?"], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 1256], ["correct", true], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saulo"], ["question_id", 1256], ["correct", false], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas Iscariotes"], ["question_id", 1256], ["correct", false], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Barrabás"], ["question_id", 1256], ["correct", false], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]]  (134.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem batizava as pessoas no rio Jordão para que se arrependessem e buscassem o perdão de Deus?"], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 1257], ["correct", true], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 1257], ["correct", false], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "André"], ["question_id", 1257], ["correct", false], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zaqueu"], ["question_id", 1257], ["correct", false], ["created_at", 2016-08-19 02:49:06 UTC], ["updated_at", 2016-08-19 02:49:06 UTC]]  (125.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem casou-se com Bate-Seba após ela ter terminado seu período de luto por Urias?"], ["created_at", 2016-08-19 02:49:07 UTC], ["updated_at", 2016-08-19 02:49:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1258], ["correct", true], ["created_at", 2016-08-19 02:49:07 UTC], ["updated_at", 2016-08-19 02:49:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1258], ["correct", false], ["created_at", 2016-08-19 02:49:07 UTC], ["updated_at", 2016-08-19 02:49:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 1258], ["correct", false], ["created_at", 2016-08-19 02:49:07 UTC], ["updated_at", 2016-08-19 02:49:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1258], ["correct", false], ["created_at", 2016-08-19 02:49:07 UTC], ["updated_at", 2016-08-19 02:49:07 UTC]]  (133.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem casou-se com Maria, mãe de Jesus?"], ["created_at", 2016-08-19 02:49:07 UTC], ["updated_at", 2016-08-19 02:49:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 1259], ["correct", true], ["created_at", 2016-08-19 02:49:07 UTC], ["updated_at", 2016-08-19 02:49:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias"], ["question_id", 1259], ["correct", false], ["created_at", 2016-08-19 02:49:07 UTC], ["updated_at", 2016-08-19 02:49:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 1259], ["correct", false], ["created_at", 2016-08-19 02:49:07 UTC], ["updated_at", 2016-08-19 02:49:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tomé"], ["question_id", 1259], ["correct", false], ["created_at", 2016-08-19 02:49:07 UTC], ["updated_at", 2016-08-19 02:49:07 UTC]]  (133.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem cavalgou um camelo quando dirigia-se ao seu casamento?\n1,"], ["created_at", 2016-08-19 02:49:07 UTC], ["updated_at", 2016-08-19 02:49:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 1260], ["correct", true], ["created_at", 2016-08-19 02:49:07 UTC], ["updated_at", 2016-08-19 02:49:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 1260], ["correct", false], ["created_at", 2016-08-19 02:49:07 UTC], ["updated_at", 2016-08-19 02:49:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria, Mãe de Jesus"], ["question_id", 1260], ["correct", false], ["created_at", 2016-08-19 02:49:07 UTC], ["updated_at", 2016-08-19 02:49:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1260], ["correct", false], ["created_at", 2016-08-19 02:49:07 UTC], ["updated_at", 2016-08-19 02:49:07 UTC]]  (233.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem chamou o fogo dos Céus para consumir um altar de sacrifícios?"], ["created_at", 2016-08-19 02:49:07 UTC], ["updated_at", 2016-08-19 02:49:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 1261], ["correct", true], ["created_at", 2016-08-19 02:49:07 UTC], ["updated_at", 2016-08-19 02:49:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 1261], ["correct", false], ["created_at", 2016-08-19 02:49:07 UTC], ["updated_at", 2016-08-19 02:49:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 1261], ["correct", false], ["created_at", 2016-08-19 02:49:07 UTC], ["updated_at", 2016-08-19 02:49:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obadias"], ["question_id", 1261], ["correct", false], ["created_at", 2016-08-19 02:49:07 UTC], ["updated_at", 2016-08-19 02:49:07 UTC]]  (140.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem chorou quando viu o alicerce do Templo ser reconstruído, após terem retornado do cativeiro da Babilônia?"], ["created_at", 2016-08-19 02:49:07 UTC], ["updated_at", 2016-08-19 02:49:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Idosos"], ["question_id", 1262], ["correct", true], ["created_at", 2016-08-19 02:49:07 UTC], ["updated_at", 2016-08-19 02:49:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Crianças"], ["question_id", 1262], ["correct", false], ["created_at", 2016-08-19 02:49:07 UTC], ["updated_at", 2016-08-19 02:49:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Líderes Religiosos"], ["question_id", 1262], ["correct", false], ["created_at", 2016-08-19 02:49:07 UTC], ["updated_at", 2016-08-19 02:49:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Profetas"], ["question_id", 1262], ["correct", false], ["created_at", 2016-08-19 02:49:07 UTC], ["updated_at", 2016-08-19 02:49:07 UTC]]  (174.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem chorou sobre Jerusalém no Monte das Oliveiras?"], ["created_at", 2016-08-19 02:49:07 UTC], ["updated_at", 2016-08-19 02:49:07 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 1263], ["correct", true], ["created_at", 2016-08-19 02:49:07 UTC], ["updated_at", 2016-08-19 02:49:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 1263], ["correct", false], ["created_at", 2016-08-19 02:49:07 UTC], ["updated_at", 2016-08-19 02:49:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lázaro"], ["question_id", 1263], ["correct", false], ["created_at", 2016-08-19 02:49:07 UTC], ["updated_at", 2016-08-19 02:49:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 1263], ["correct", false], ["created_at", 2016-08-19 02:49:07 UTC], ["updated_at", 2016-08-19 02:49:07 UTC]]  (166.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem colocou o bebê Moisés em um cesto no rio Nilo?"], ["created_at", 2016-08-19 02:49:08 UTC], ["updated_at", 2016-08-19 02:49:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Mãe"], ["question_id", 1264], ["correct", true], ["created_at", 2016-08-19 02:49:08 UTC], ["updated_at", 2016-08-19 02:49:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Irmã"], ["question_id", 1264], ["correct", false], ["created_at", 2016-08-19 02:49:08 UTC], ["updated_at", 2016-08-19 02:49:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Irmão"], ["question_id", 1264], ["correct", false], ["created_at", 2016-08-19 02:49:08 UTC], ["updated_at", 2016-08-19 02:49:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Pai"], ["question_id", 1264], ["correct", false], ["created_at", 2016-08-19 02:49:08 UTC], ["updated_at", 2016-08-19 02:49:08 UTC]]  (116.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem colocou os irmãos de José na prisão, quando estes foram comprar grãos no Egito?"], ["created_at", 2016-08-19 02:49:08 UTC], ["updated_at", 2016-08-19 02:49:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 1265], ["correct", true], ["created_at", 2016-08-19 02:49:08 UTC], ["updated_at", 2016-08-19 02:49:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Faraó"], ["question_id", 1265], ["correct", false], ["created_at", 2016-08-19 02:49:08 UTC], ["updated_at", 2016-08-19 02:49:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Potifar"], ["question_id", 1265], ["correct", false], ["created_at", 2016-08-19 02:49:08 UTC], ["updated_at", 2016-08-19 02:49:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 1265], ["correct", false], ["created_at", 2016-08-19 02:49:08 UTC], ["updated_at", 2016-08-19 02:49:08 UTC]]  (133.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem colocou Zedequias no trono do reino de Judá?"], ["created_at", 2016-08-19 02:49:08 UTC], ["updated_at", 2016-08-19 02:49:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 1266], ["correct", true], ["created_at", 2016-08-19 02:49:08 UTC], ["updated_at", 2016-08-19 02:49:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiro"], ["question_id", 1266], ["correct", false], ["created_at", 2016-08-19 02:49:08 UTC], ["updated_at", 2016-08-19 02:49:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiglete-pileser"], ["question_id", 1266], ["correct", false], ["created_at", 2016-08-19 02:49:08 UTC], ["updated_at", 2016-08-19 02:49:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belsazar"], ["question_id", 1266], ["correct", false], ["created_at", 2016-08-19 02:49:08 UTC], ["updated_at", 2016-08-19 02:49:08 UTC]]  (176.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem comandou os israelitas em sua batalha contra Jericó?"], ["created_at", 2016-08-19 02:49:08 UTC], ["updated_at", 2016-08-19 02:49:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 1267], ["correct", true], ["created_at", 2016-08-19 02:49:08 UTC], ["updated_at", 2016-08-19 02:49:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1267], ["correct", false], ["created_at", 2016-08-19 02:49:08 UTC], ["updated_at", 2016-08-19 02:49:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 1267], ["correct", false], ["created_at", 2016-08-19 02:49:08 UTC], ["updated_at", 2016-08-19 02:49:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 1267], ["correct", false], ["created_at", 2016-08-19 02:49:08 UTC], ["updated_at", 2016-08-19 02:49:08 UTC]]  (176.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem comprou o direito de primogenitura que não lhe era seu por direito?"], ["created_at", 2016-08-19 02:49:08 UTC], ["updated_at", 2016-08-19 02:49:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 1268], ["correct", true], ["created_at", 2016-08-19 02:49:08 UTC], ["updated_at", 2016-08-19 02:49:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 1268], ["correct", false], ["created_at", 2016-08-19 02:49:08 UTC], ["updated_at", 2016-08-19 02:49:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 1268], ["correct", false], ["created_at", 2016-08-19 02:49:08 UTC], ["updated_at", 2016-08-19 02:49:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 1268], ["correct", false], ["created_at", 2016-08-19 02:49:08 UTC], ["updated_at", 2016-08-19 02:49:08 UTC]]  (124.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem comunicou a Maria, futura mãe de Jesus, que ela iria ter um bebê?"], ["created_at", 2016-08-19 02:49:08 UTC], ["updated_at", 2016-08-19 02:49:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anjo Gabriel"], ["question_id", 1269], ["correct", true], ["created_at", 2016-08-19 02:49:08 UTC], ["updated_at", 2016-08-19 02:49:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Próprio Deus"], ["question_id", 1269], ["correct", false], ["created_at", 2016-08-19 02:49:08 UTC], ["updated_at", 2016-08-19 02:49:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José, Seu Marido"], ["question_id", 1269], ["correct", false], ["created_at", 2016-08-19 02:49:08 UTC], ["updated_at", 2016-08-19 02:49:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Irmã Isabel"], ["question_id", 1269], ["correct", false], ["created_at", 2016-08-19 02:49:08 UTC], ["updated_at", 2016-08-19 02:49:08 UTC]]  (158.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem conduziu os israelitas cantando após a travessia do Mar Vermelho?"], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 1270], ["correct", true], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zípora"], ["question_id", 1270], ["correct", false], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 1270], ["correct", false], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abigail"], ["question_id", 1270], ["correct", false], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]]  (158.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem confundiu um canto da multidão com um canto de guerra?"], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 1271], ["correct", true], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1271], ["correct", false], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ezequias"], ["question_id", 1271], ["correct", false], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias"], ["question_id", 1271], ["correct", false], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]]  (140.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem construiu a cidade de Nínive?"], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ninrode"], ["question_id", 1272], ["correct", true], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caim"], ["question_id", 1272], ["correct", false], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mefibosete"], ["question_id", 1272], ["correct", false], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Enoque"], ["question_id", 1272], ["correct", false], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]]  (124.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem construiu o Templo de Deus em Jerusalém?"], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1273], ["correct", true], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 1273], ["correct", false], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Simeão"], ["question_id", 1273], ["correct", false], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1273], ["correct", false], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]]  (141.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem contou aos pastores sobre o nascimento de Jesus?"], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Anjos"], ["question_id", 1274], ["correct", true], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Próprio Deus"], ["question_id", 1274], ["correct", false], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Anjo Gabriel"], ["question_id", 1274], ["correct", false], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Anjo Miguel"], ["question_id", 1274], ["correct", false], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]]  (182.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem cortava os cabelos no fim de cada ano, pois os mesmos muito lhe pesavam?"], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 1275], ["correct", true], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 1275], ["correct", false], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eli"], ["question_id", 1275], ["correct", false], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jefté"], ["question_id", 1275], ["correct", false], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]]  (124.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem cortou o cabelo de Sansão?"], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dalila"], ["question_id", 1276], ["correct", true], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cleópatra"], ["question_id", 1276], ["correct", false], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rainha Jezabel"], ["question_id", 1276], ["correct", false], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria Madalena"], ["question_id", 1276], ["correct", false], ["created_at", 2016-08-19 02:49:09 UTC], ["updated_at", 2016-08-19 02:49:09 UTC]]  (124.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem cuspiu em Jesus enquanto o mesmo estava sendo surrado?"], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Soldados Romanos"], ["question_id", 1277], ["correct", true], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Sacerdotes do Templo"], ["question_id", 1277], ["correct", false], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Fariseus"], ["question_id", 1277], ["correct", false], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Povo Judeu"], ["question_id", 1277], ["correct", false], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]]  (141.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem dançou na festa de aniversário de Herodes?"], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Filha de Herodias"], ["question_id", 1278], ["correct", true], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodias"], ["question_id", 1278], ["correct", false], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Irmã de Herodias"], ["question_id", 1278], ["correct", false], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Neta de Herodias"], ["question_id", 1278], ["correct", false], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]]  (109.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem decidiu que, caso as pessoas não conseguissem decifrar seus sonhos, essas pessoas seriam mortas?"], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 1279], ["correct", true], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 1279], ["correct", false], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Faraó do Egito"], ["question_id", 1279], ["correct", false], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Alexandre, O Grande"], ["question_id", 1279], ["correct", false], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]]  (134.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem deixou seu filho sob um arbusto para não vê-lo morrer?"], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Agar"], ["question_id", 1280], ["correct", true], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ester"], ["question_id", 1280], ["correct", false], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sara"], ["question_id", 1280], ["correct", false], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 1280], ["correct", false], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]]  (149.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem deu beijos políticos aos cidadãos de Israel?"], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 1281], ["correct", true], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Labão"], ["question_id", 1281], ["correct", false], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 1281], ["correct", false], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1281], ["correct", false], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]]  (150.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem deu presentes de ouro ao menino Jesus?"], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Reis Magos"], ["question_id", 1282], ["correct", true], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes"], ["question_id", 1282], ["correct", false], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Pastores"], ["question_id", 1282], ["correct", false], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 1282], ["correct", false], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]]  (124.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem deu um beijo de traição em Jesus?"], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas Iscariotes"], ["question_id", 1283], ["correct", true], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José de Arimatéia"], ["question_id", 1283], ["correct", false], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caifás"], ["question_id", 1283], ["correct", false], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Líderes Religiosos Judeus"], ["question_id", 1283], ["correct", false], ["created_at", 2016-08-19 02:49:10 UTC], ["updated_at", 2016-08-19 02:49:10 UTC]]  (133.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem Deus enviou para preparar o caminho de Jesus?"], ["created_at", 2016-08-19 02:49:11 UTC], ["updated_at", 2016-08-19 02:49:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 1284], ["correct", true], ["created_at", 2016-08-19 02:49:11 UTC], ["updated_at", 2016-08-19 02:49:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias"], ["question_id", 1284], ["correct", false], ["created_at", 2016-08-19 02:49:11 UTC], ["updated_at", 2016-08-19 02:49:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Pai, José"], ["question_id", 1284], ["correct", false], ["created_at", 2016-08-19 02:49:11 UTC], ["updated_at", 2016-08-19 02:49:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Mãe, Maria"], ["question_id", 1284], ["correct", false], ["created_at", 2016-08-19 02:49:11 UTC], ["updated_at", 2016-08-19 02:49:11 UTC]]  (133.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem disse a frase \"Raça de víboras, quem vos ensinou a fugir da ira vindoura?\""], ["created_at", 2016-08-19 02:49:11 UTC], ["updated_at", 2016-08-19 02:49:11 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 1285], ["correct", true], ["created_at", 2016-08-19 02:49:11 UTC], ["updated_at", 2016-08-19 02:49:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 1285], ["correct", false], ["created_at", 2016-08-19 02:49:11 UTC], ["updated_at", 2016-08-19 02:49:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 1285], ["correct", false], ["created_at", 2016-08-19 02:49:11 UTC], ["updated_at", 2016-08-19 02:49:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Estêvão"], ["question_id", 1285], ["correct", false], ["created_at", 2016-08-19 02:49:11 UTC], ["updated_at", 2016-08-19 02:49:11 UTC]]  (132.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem disse a Zacarias que ele teria um filho?"], ["created_at", 2016-08-19 02:49:11 UTC], ["updated_at", 2016-08-19 02:49:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anjo"], ["question_id", 1286], ["correct", true], ["created_at", 2016-08-19 02:49:11 UTC], ["updated_at", 2016-08-19 02:49:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isabel"], ["question_id", 1286], ["correct", false], ["created_at", 2016-08-19 02:49:11 UTC], ["updated_at", 2016-08-19 02:49:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria, Mãe de Jesus"], ["question_id", 1286], ["correct", false], ["created_at", 2016-08-19 02:49:11 UTC], ["updated_at", 2016-08-19 02:49:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José, Pai de Jesus"], ["question_id", 1286], ["correct", false], ["created_at", 2016-08-19 02:49:11 UTC], ["updated_at", 2016-08-19 02:49:11 UTC]]  (124.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem disse ao Faraó que haveria um período de muita fome no Egito?"], ["created_at", 2016-08-19 02:49:11 UTC], ["updated_at", 2016-08-19 02:49:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 1287], ["correct", true], ["created_at", 2016-08-19 02:49:11 UTC], ["updated_at", 2016-08-19 02:49:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1287], ["correct", false], ["created_at", 2016-08-19 02:49:11 UTC], ["updated_at", 2016-08-19 02:49:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 1287], ["correct", false], ["created_at", 2016-08-19 02:49:11 UTC], ["updated_at", 2016-08-19 02:49:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 1287], ["correct", false], ["created_at", 2016-08-19 02:49:11 UTC], ["updated_at", 2016-08-19 02:49:11 UTC]]  (140.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem disse que queria ver os furos nas mãos e nos pés de Jesus para acreditar que Jesus havia ressuscitado?"], ["created_at", 2016-08-19 02:49:11 UTC], ["updated_at", 2016-08-19 02:49:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tomé"], ["question_id", 1288], ["correct", true], ["created_at", 2016-08-19 02:49:11 UTC], ["updated_at", 2016-08-19 02:49:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 1288], ["correct", false], ["created_at", 2016-08-19 02:49:11 UTC], ["updated_at", 2016-08-19 02:49:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 1288], ["correct", false], ["created_at", 2016-08-19 02:49:11 UTC], ["updated_at", 2016-08-19 02:49:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 1288], ["correct", false], ["created_at", 2016-08-19 02:49:11 UTC], ["updated_at", 2016-08-19 02:49:11 UTC]]  (158.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem disse: \"Desafio hoje as fileiras de Israel; dai-me um homem para que pelejemos.\""], ["created_at", 2016-08-19 02:49:11 UTC], ["updated_at", 2016-08-19 02:49:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Golias"], ["question_id", 1289], ["correct", true], ["created_at", 2016-08-19 02:49:11 UTC], ["updated_at", 2016-08-19 02:49:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belsazar"], ["question_id", 1289], ["correct", false], ["created_at", 2016-08-19 02:49:11 UTC], ["updated_at", 2016-08-19 02:49:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 1289], ["correct", false], ["created_at", 2016-08-19 02:49:11 UTC], ["updated_at", 2016-08-19 02:49:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Naamã"], ["question_id", 1289], ["correct", false], ["created_at", 2016-08-19 02:49:11 UTC], ["updated_at", 2016-08-19 02:49:11 UTC]]  (157.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem disse: \"Se tu é o Filho de Deus, manda a esta pedra que se torne pão.\""], ["created_at", 2016-08-19 02:49:12 UTC], ["updated_at", 2016-08-19 02:49:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Satanás"], ["question_id", 1290], ["correct", true], ["created_at", 2016-08-19 02:49:12 UTC], ["updated_at", 2016-08-19 02:49:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas"], ["question_id", 1290], ["correct", false], ["created_at", 2016-08-19 02:49:12 UTC], ["updated_at", 2016-08-19 02:49:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 1290], ["correct", false], ["created_at", 2016-08-19 02:49:12 UTC], ["updated_at", 2016-08-19 02:49:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caifás"], ["question_id", 1290], ["correct", false], ["created_at", 2016-08-19 02:49:12 UTC], ["updated_at", 2016-08-19 02:49:12 UTC]]  (166.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem disse: \"Sou inocente do sangue deste homem.\""], ["created_at", 2016-08-19 02:49:12 UTC], ["updated_at", 2016-08-19 02:49:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilates"], ["question_id", 1291], ["correct", true], ["created_at", 2016-08-19 02:49:12 UTC], ["updated_at", 2016-08-19 02:49:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Antipas"], ["question_id", 1291], ["correct", false], ["created_at", 2016-08-19 02:49:12 UTC], ["updated_at", 2016-08-19 02:49:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Agripa"], ["question_id", 1291], ["correct", false], ["created_at", 2016-08-19 02:49:12 UTC], ["updated_at", 2016-08-19 02:49:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Barrabás"], ["question_id", 1291], ["correct", false], ["created_at", 2016-08-19 02:49:12 UTC], ["updated_at", 2016-08-19 02:49:12 UTC]]  (139.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem durante 7 anos imaginava que era um animal?"], ["created_at", 2016-08-19 02:49:12 UTC], ["updated_at", 2016-08-19 02:49:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 1292], ["correct", true], ["created_at", 2016-08-19 02:49:12 UTC], ["updated_at", 2016-08-19 02:49:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belsazar"], ["question_id", 1292], ["correct", false], ["created_at", 2016-08-19 02:49:12 UTC], ["updated_at", 2016-08-19 02:49:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 1292], ["correct", false], ["created_at", 2016-08-19 02:49:12 UTC], ["updated_at", 2016-08-19 02:49:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 1292], ["correct", false], ["created_at", 2016-08-19 02:49:12 UTC], ["updated_at", 2016-08-19 02:49:12 UTC]]  (125.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem durante sua viagem para Roma enfrentou uma violenta tempestade no mar?"], ["created_at", 2016-08-19 02:49:12 UTC], ["updated_at", 2016-08-19 02:49:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 1293], ["correct", true], ["created_at", 2016-08-19 02:49:12 UTC], ["updated_at", 2016-08-19 02:49:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 1293], ["correct", false], ["created_at", 2016-08-19 02:49:12 UTC], ["updated_at", 2016-08-19 02:49:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 1293], ["correct", false], ["created_at", 2016-08-19 02:49:12 UTC], ["updated_at", 2016-08-19 02:49:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 1293], ["correct", false], ["created_at", 2016-08-19 02:49:12 UTC], ["updated_at", 2016-08-19 02:49:12 UTC]]  (159.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem é chamado de \"o príncipe dos espíritos do diabo\" pelos fariseus?"], ["created_at", 2016-08-19 02:49:12 UTC], ["updated_at", 2016-08-19 02:49:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belzebu"], ["question_id", 1294], ["correct", true], ["created_at", 2016-08-19 02:49:12 UTC], ["updated_at", 2016-08-19 02:49:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bel"], ["question_id", 1294], ["correct", false], ["created_at", 2016-08-19 02:49:12 UTC], ["updated_at", 2016-08-19 02:49:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Baalins"], ["question_id", 1294], ["correct", false], ["created_at", 2016-08-19 02:49:12 UTC], ["updated_at", 2016-08-19 02:49:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Baal"], ["question_id", 1294], ["correct", false], ["created_at", 2016-08-19 02:49:12 UTC], ["updated_at", 2016-08-19 02:49:12 UTC]]  (262.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem é o primeiro bígamo citado na Bíblia?"], ["created_at", 2016-08-19 02:49:12 UTC], ["updated_at", 2016-08-19 02:49:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lameque"], ["question_id", 1295], ["correct", true], ["created_at", 2016-08-19 02:49:12 UTC], ["updated_at", 2016-08-19 02:49:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1295], ["correct", false], ["created_at", 2016-08-19 02:49:12 UTC], ["updated_at", 2016-08-19 02:49:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1295], ["correct", false], ["created_at", 2016-08-19 02:49:12 UTC], ["updated_at", 2016-08-19 02:49:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 1295], ["correct", false], ["created_at", 2016-08-19 02:49:12 UTC], ["updated_at", 2016-08-19 02:49:12 UTC]]  (164.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem encontrou a cesta onde Moisés encontrava-se escondido, presa junto aos juncos do rio Nilo?"], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Filha do Faraó"], ["question_id", 1296], ["correct", true], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Faraó"], ["question_id", 1296], ["correct", false], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Concubinas do Faraó"], ["question_id", 1296], ["correct", false], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Esposa do Faraó"], ["question_id", 1296], ["correct", false], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]]  (132.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem encontrou um arbusto em chamas que não se consumia?"], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1297], ["correct", true], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1297], ["correct", false], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noé"], ["question_id", 1297], ["correct", false], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1297], ["correct", false], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]]  (132.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem enganou Eva no Jardim do Éden?"], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Serpente"], ["question_id", 1298], ["correct", true], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Papagaio"], ["question_id", 1298], ["correct", false], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adão"], ["question_id", 1298], ["correct", false], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caim"], ["question_id", 1298], ["correct", false], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]]  (141.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem enganou Jacó em seu próprio banquete de casamento?"], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Labão"], ["question_id", 1299], ["correct", true], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 1299], ["correct", false], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 1299], ["correct", false], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 1299], ["correct", false], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]]  (149.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem enganou Jacó, que ao final dos primeiros 7 anos de trabalho, não recebeu a mão de Raquel, mas sim da sua irmã Léia?"], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Próprio Futuro Sogro"], ["question_id", 1300], ["correct", true], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Léia"], ["question_id", 1300], ["correct", false], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Própria Raquel"], ["question_id", 1300], ["correct", false], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Própria Futura Sogra"], ["question_id", 1300], ["correct", false], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]]  (124.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem enganou o rei Dario, fazendo-o com que assinasse um decreto onde o rei deveria receber unicamente as orações?"], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Demais Presidentes"], ["question_id", 1301], ["correct", true], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Governadores"], ["question_id", 1301], ["correct", false], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Povo de Babilônia"], ["question_id", 1301], ["correct", false], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Magos da Corte"], ["question_id", 1301], ["correct", false], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]]  (133.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem enviou Eliezer para procurar por uma esposa para Isaque?"], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1302], ["correct", true], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sara"], ["question_id", 1302], ["correct", false], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 1302], ["correct", false], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 1302], ["correct", false], ["created_at", 2016-08-19 02:49:13 UTC], ["updated_at", 2016-08-19 02:49:13 UTC]]  (133.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem enviou espias para a cidade de Jericó?"], ["created_at", 2016-08-19 02:49:14 UTC], ["updated_at", 2016-08-19 02:49:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 1303], ["correct", true], ["created_at", 2016-08-19 02:49:14 UTC], ["updated_at", 2016-08-19 02:49:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1303], ["correct", false], ["created_at", 2016-08-19 02:49:14 UTC], ["updated_at", 2016-08-19 02:49:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 1303], ["correct", false], ["created_at", 2016-08-19 02:49:14 UTC], ["updated_at", 2016-08-19 02:49:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 1303], ["correct", false], ["created_at", 2016-08-19 02:49:14 UTC], ["updated_at", 2016-08-19 02:49:14 UTC]]  (134.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era a esposa do impostor Ananias?"], ["created_at", 2016-08-19 02:49:14 UTC], ["updated_at", 2016-08-19 02:49:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Safira"], ["question_id", 1304], ["correct", true], ["created_at", 2016-08-19 02:49:14 UTC], ["updated_at", 2016-08-19 02:49:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Priscila"], ["question_id", 1304], ["correct", false], ["created_at", 2016-08-19 02:49:14 UTC], ["updated_at", 2016-08-19 02:49:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 1304], ["correct", false], ["created_at", 2016-08-19 02:49:14 UTC], ["updated_at", 2016-08-19 02:49:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Áquila"], ["question_id", 1304], ["correct", false], ["created_at", 2016-08-19 02:49:14 UTC], ["updated_at", 2016-08-19 02:49:14 UTC]]  (133.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era a esposa do rei Assuero que recusou-se a ser exibida em frente a alguns convidados bêbados?"], ["created_at", 2016-08-19 02:49:14 UTC], ["updated_at", 2016-08-19 02:49:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vasti"], ["question_id", 1305], ["correct", true], ["created_at", 2016-08-19 02:49:14 UTC], ["updated_at", 2016-08-19 02:49:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ester"], ["question_id", 1305], ["correct", false], ["created_at", 2016-08-19 02:49:14 UTC], ["updated_at", 2016-08-19 02:49:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rute"], ["question_id", 1305], ["correct", false], ["created_at", 2016-08-19 02:49:14 UTC], ["updated_at", 2016-08-19 02:49:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sabá"], ["question_id", 1305], ["correct", false], ["created_at", 2016-08-19 02:49:14 UTC], ["updated_at", 2016-08-19 02:49:14 UTC]]  (133.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era a mulher viúva e moabita que se dedicara inteiramente à sua sogra?"], ["created_at", 2016-08-19 02:49:14 UTC], ["updated_at", 2016-08-19 02:49:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rute"], ["question_id", 1306], ["correct", true], ["created_at", 2016-08-19 02:49:14 UTC], ["updated_at", 2016-08-19 02:49:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noemi"], ["question_id", 1306], ["correct", false], ["created_at", 2016-08-19 02:49:14 UTC], ["updated_at", 2016-08-19 02:49:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Orfa"], ["question_id", 1306], ["correct", false], ["created_at", 2016-08-19 02:49:14 UTC], ["updated_at", 2016-08-19 02:49:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ester"], ["question_id", 1306], ["correct", false], ["created_at", 2016-08-19 02:49:14 UTC], ["updated_at", 2016-08-19 02:49:14 UTC]]  (200.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era a rainha cruel de Israel que foi devorada pelos cachorros quado morreu?"], ["created_at", 2016-08-19 02:49:14 UTC], ["updated_at", 2016-08-19 02:49:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jezabel"], ["question_id", 1307], ["correct", true], ["created_at", 2016-08-19 02:49:14 UTC], ["updated_at", 2016-08-19 02:49:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Atalia"], ["question_id", 1307], ["correct", false], ["created_at", 2016-08-19 02:49:14 UTC], ["updated_at", 2016-08-19 02:49:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vasti"], ["question_id", 1307], ["correct", false], ["created_at", 2016-08-19 02:49:14 UTC], ["updated_at", 2016-08-19 02:49:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ester"], ["question_id", 1307], ["correct", false], ["created_at", 2016-08-19 02:49:14 UTC], ["updated_at", 2016-08-19 02:49:14 UTC]]  (132.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era a sogra de Rute?"], ["created_at", 2016-08-19 02:49:14 UTC], ["updated_at", 2016-08-19 02:49:14 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Orfa"], ["question_id", 1308], ["correct", true], ["created_at", 2016-08-19 02:49:14 UTC], ["updated_at", 2016-08-19 02:49:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noemi"], ["question_id", 1308], ["correct", false], ["created_at", 2016-08-19 02:49:14 UTC], ["updated_at", 2016-08-19 02:49:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ester"], ["question_id", 1308], ["correct", false], ["created_at", 2016-08-19 02:49:14 UTC], ["updated_at", 2016-08-19 02:49:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rute Não Era Casada"], ["question_id", 1308], ["correct", false], ["created_at", 2016-08-19 02:49:14 UTC], ["updated_at", 2016-08-19 02:49:14 UTC]]  (183.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o centurião romano honrado e temente a Deus que teve uma visão de Deus?"], ["created_at", 2016-08-19 02:49:15 UTC], ["updated_at", 2016-08-19 02:49:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cornélio"], ["question_id", 1309], ["correct", true], ["created_at", 2016-08-19 02:49:15 UTC], ["updated_at", 2016-08-19 02:49:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Procópio"], ["question_id", 1309], ["correct", false], ["created_at", 2016-08-19 02:49:15 UTC], ["updated_at", 2016-08-19 02:49:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Susteis"], ["question_id", 1309], ["correct", false], ["created_at", 2016-08-19 02:49:15 UTC], ["updated_at", 2016-08-19 02:49:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nicolau"], ["question_id", 1309], ["correct", false], ["created_at", 2016-08-19 02:49:15 UTC], ["updated_at", 2016-08-19 02:49:15 UTC]]  (375.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o conselheiro influente do rei Davi que desertou para o lado de Absalão?"], ["created_at", 2016-08-19 02:49:15 UTC], ["updated_at", 2016-08-19 02:49:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aitofel"], ["question_id", 1310], ["correct", true], ["created_at", 2016-08-19 02:49:15 UTC], ["updated_at", 2016-08-19 02:49:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joabe"], ["question_id", 1310], ["correct", false], ["created_at", 2016-08-19 02:49:15 UTC], ["updated_at", 2016-08-19 02:49:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abner"], ["question_id", 1310], ["correct", false], ["created_at", 2016-08-19 02:49:15 UTC], ["updated_at", 2016-08-19 02:49:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ugar"], ["question_id", 1310], ["correct", false], ["created_at", 2016-08-19 02:49:15 UTC], ["updated_at", 2016-08-19 02:49:15 UTC]]  (157.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o deus dos amonitas que exigia o sacrifício de crianças?"], ["created_at", 2016-08-19 02:49:15 UTC], ["updated_at", 2016-08-19 02:49:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moloque"], ["question_id", 1311], ["correct", true], ["created_at", 2016-08-19 02:49:15 UTC], ["updated_at", 2016-08-19 02:49:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nebo"], ["question_id", 1311], ["correct", false], ["created_at", 2016-08-19 02:49:15 UTC], ["updated_at", 2016-08-19 02:49:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Baal"], ["question_id", 1311], ["correct", false], ["created_at", 2016-08-19 02:49:15 UTC], ["updated_at", 2016-08-19 02:49:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tartaque"], ["question_id", 1311], ["correct", false], ["created_at", 2016-08-19 02:49:15 UTC], ["updated_at", 2016-08-19 02:49:15 UTC]]  (192.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o home da terra de Uz?"], ["created_at", 2016-08-19 02:49:15 UTC], ["updated_at", 2016-08-19 02:49:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jó"], ["question_id", 1312], ["correct", true], ["created_at", 2016-08-19 02:49:15 UTC], ["updated_at", 2016-08-19 02:49:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 1312], ["correct", false], ["created_at", 2016-08-19 02:49:15 UTC], ["updated_at", 2016-08-19 02:49:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1312], ["correct", false], ["created_at", 2016-08-19 02:49:15 UTC], ["updated_at", 2016-08-19 02:49:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeremias"], ["question_id", 1312], ["correct", false], ["created_at", 2016-08-19 02:49:15 UTC], ["updated_at", 2016-08-19 02:49:15 UTC]]  (141.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o homem segundo o coração de Deus?"], ["created_at", 2016-08-19 02:49:15 UTC], ["updated_at", 2016-08-19 02:49:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1313], ["correct", true], ["created_at", 2016-08-19 02:49:15 UTC], ["updated_at", 2016-08-19 02:49:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1313], ["correct", false], ["created_at", 2016-08-19 02:49:15 UTC], ["updated_at", 2016-08-19 02:49:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1313], ["correct", false], ["created_at", 2016-08-19 02:49:15 UTC], ["updated_at", 2016-08-19 02:49:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noé"], ["question_id", 1313], ["correct", false], ["created_at", 2016-08-19 02:49:15 UTC], ["updated_at", 2016-08-19 02:49:15 UTC]]  (125.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o honesto homem a quem Deus deu instruções para construiur uma arca?"], ["created_at", 2016-08-19 02:49:16 UTC], ["updated_at", 2016-08-19 02:49:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noé"], ["question_id", 1314], ["correct", true], ["created_at", 2016-08-19 02:49:16 UTC], ["updated_at", 2016-08-19 02:49:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ninoode"], ["question_id", 1314], ["correct", false], ["created_at", 2016-08-19 02:49:16 UTC], ["updated_at", 2016-08-19 02:49:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Naor"], ["question_id", 1314], ["correct", false], ["created_at", 2016-08-19 02:49:16 UTC], ["updated_at", 2016-08-19 02:49:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1314], ["correct", false], ["created_at", 2016-08-19 02:49:16 UTC], ["updated_at", 2016-08-19 02:49:16 UTC]]  (124.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o irmão de Moisés?"], ["created_at", 2016-08-19 02:49:16 UTC], ["updated_at", 2016-08-19 02:49:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 1315], ["correct", true], ["created_at", 2016-08-19 02:49:16 UTC], ["updated_at", 2016-08-19 02:49:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abner"], ["question_id", 1315], ["correct", false], ["created_at", 2016-08-19 02:49:16 UTC], ["updated_at", 2016-08-19 02:49:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1315], ["correct", false], ["created_at", 2016-08-19 02:49:16 UTC], ["updated_at", 2016-08-19 02:49:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cão"], ["question_id", 1315], ["correct", false], ["created_at", 2016-08-19 02:49:16 UTC], ["updated_at", 2016-08-19 02:49:16 UTC]]  (150.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o irmão mais novo de Miriã?\n1,"], ["created_at", 2016-08-19 02:49:16 UTC], ["updated_at", 2016-08-19 02:49:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1316], ["correct", true], ["created_at", 2016-08-19 02:49:16 UTC], ["updated_at", 2016-08-19 02:49:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 1316], ["correct", false], ["created_at", 2016-08-19 02:49:16 UTC], ["updated_at", 2016-08-19 02:49:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ló"], ["question_id", 1316], ["correct", false], ["created_at", 2016-08-19 02:49:16 UTC], ["updated_at", 2016-08-19 02:49:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1316], ["correct", false], ["created_at", 2016-08-19 02:49:16 UTC], ["updated_at", 2016-08-19 02:49:16 UTC]]  (191.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o marido impostor de Safira?"], ["created_at", 2016-08-19 02:49:16 UTC], ["updated_at", 2016-08-19 02:49:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ananias"], ["question_id", 1317], ["correct", true], ["created_at", 2016-08-19 02:49:16 UTC], ["updated_at", 2016-08-19 02:49:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miquéias"], ["question_id", 1317], ["correct", false], ["created_at", 2016-08-19 02:49:16 UTC], ["updated_at", 2016-08-19 02:49:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sofonias"], ["question_id", 1317], ["correct", false], ["created_at", 2016-08-19 02:49:16 UTC], ["updated_at", 2016-08-19 02:49:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Malaquias"], ["question_id", 1317], ["correct", false], ["created_at", 2016-08-19 02:49:16 UTC], ["updated_at", 2016-08-19 02:49:16 UTC]]  (124.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o melhor amigo de Davi?"], ["created_at", 2016-08-19 02:49:16 UTC], ["updated_at", 2016-08-19 02:49:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jônatas"], ["question_id", 1318], ["correct", true], ["created_at", 2016-08-19 02:49:16 UTC], ["updated_at", 2016-08-19 02:49:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 1318], ["correct", false], ["created_at", 2016-08-19 02:49:16 UTC], ["updated_at", 2016-08-19 02:49:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 1318], ["correct", false], ["created_at", 2016-08-19 02:49:16 UTC], ["updated_at", 2016-08-19 02:49:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 1318], ["correct", false], ["created_at", 2016-08-19 02:49:16 UTC], ["updated_at", 2016-08-19 02:49:16 UTC]]  (125.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o pai de Ló, que foi resgatado por um anjo da cidade de Sodoma?"], ["created_at", 2016-08-19 02:49:16 UTC], ["updated_at", 2016-08-19 02:49:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Harã"], ["question_id", 1319], ["correct", true], ["created_at", 2016-08-19 02:49:16 UTC], ["updated_at", 2016-08-19 02:49:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hamã"], ["question_id", 1319], ["correct", false], ["created_at", 2016-08-19 02:49:16 UTC], ["updated_at", 2016-08-19 02:49:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Natã"], ["question_id", 1319], ["correct", false], ["created_at", 2016-08-19 02:49:16 UTC], ["updated_at", 2016-08-19 02:49:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sarã"], ["question_id", 1319], ["correct", false], ["created_at", 2016-08-19 02:49:16 UTC], ["updated_at", 2016-08-19 02:49:16 UTC]]  (125.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o profeta de Jerusalém que visitou os cristãos em Antioquia e contou-lhes sobre uma grande fome que estava por vir?"], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ágabo"], ["question_id", 1320], ["correct", true], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rufo"], ["question_id", 1320], ["correct", false], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Malco"], ["question_id", 1320], ["correct", false], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias"], ["question_id", 1320], ["correct", false], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]]  (116.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o rei da Assíria quando Deus matou 185.000 homens que estavam tentando tomar Jerusalém?"], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Senaqueribe"], ["question_id", 1321], ["correct", true], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sargão"], ["question_id", 1321], ["correct", false], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiglete-pileser"], ["question_id", 1321], ["correct", false], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belsazar"], ["question_id", 1321], ["correct", false], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]]  (116.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o rei de Israel quando a Assíria conquistou o reinado do norte?"], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 1322], ["correct", true], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeoás"], ["question_id", 1322], ["correct", false], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zinri"], ["question_id", 1322], ["correct", false], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jedidias"], ["question_id", 1322], ["correct", false], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]]  (124.4ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o rei de Judá quando Nabucodonosor atacou Jerusalém pela 1ª vez?"], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeoaquim"], ["question_id", 1323], ["correct", true], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ezequias"], ["question_id", 1323], ["correct", false], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zedequias"], ["question_id", 1323], ["correct", false], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josias"], ["question_id", 1323], ["correct", false], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]]  (124.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o rei de Judá quando Nabucodonosor atacou pela 3ª vez a cidade de Jerusalém?"], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zedequias"], ["question_id", 1324], ["correct", true], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josias"], ["question_id", 1324], ["correct", false], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 1324], ["correct", false], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acaz"], ["question_id", 1324], ["correct", false], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]]  (134.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o rei governante em Jerusalém quando Jesus nasceu?"], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes, O Grande"], ["question_id", 1325], ["correct", true], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Antipas"], ["question_id", 1325], ["correct", false], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Agripa"], ["question_id", 1325], ["correct", false], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todas As Alternativas Estão Corretas"], ["question_id", 1325], ["correct", false], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]]  (125.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o Sumo Sacerdote que cuidou de Samuel?"], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eli"], ["question_id", 1326], ["correct", true], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 1326], ["correct", false], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 1326], ["correct", false], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ananias"], ["question_id", 1326], ["correct", false], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]]  (117.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o tio de Ló?"], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1327], ["correct", true], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 1327], ["correct", false], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 1327], ["correct", false], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 1327], ["correct", false], ["created_at", 2016-08-19 02:49:17 UTC], ["updated_at", 2016-08-19 02:49:17 UTC]]  (126.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem eram os pais de Jedidias?"], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi e Bate-seba"], ["question_id", 1328], ["correct", true], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elcana e Ana"], ["question_id", 1328], ["correct", false], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Boaz e Rute"], ["question_id", 1328], ["correct", false], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão e Dalila"], ["question_id", 1328], ["correct", false], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]]  (133.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem eram os pais de José e Benjamim?"], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José e Raquel"], ["question_id", 1329], ["correct", true], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão e Sara"], ["question_id", 1329], ["correct", false], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque e Rebeca"], ["question_id", 1329], ["correct", false], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José e Maria"], ["question_id", 1329], ["correct", false], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]]  (124.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem eram os pais de Sete?"], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adão e Eva"], ["question_id", 1330], ["correct", true], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque e Rebeca"], ["question_id", 1330], ["correct", false], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi e Bate-seba"], ["question_id", 1330], ["correct", false], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José e Maria"], ["question_id", 1330], ["correct", false], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]]  (133.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem eram os pais dos irmãos gêmeos Esaú e Jacó?"], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque e Rebeca"], ["question_id", 1331], ["correct", true], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão e Dalila"], ["question_id", 1331], ["correct", false], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão e Sara"], ["question_id", 1331], ["correct", false], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José e Asenate"], ["question_id", 1331], ["correct", false], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]]  (124.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem escondeu Moisés em uma cesta, com o objetivo de protegê-lo do decreto de morte pronunciado pelo Faraó?"], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Mãe"], ["question_id", 1332], ["correct", true], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sara"], ["question_id", 1332], ["correct", false], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 1332], ["correct", false], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 1332], ["correct", false], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]]  (124.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem escondeu os espias na cidade de Jericó?"], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Raabe"], ["question_id", 1333], ["correct", true], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Raquel"], ["question_id", 1333], ["correct", false], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Raão"], ["question_id", 1333], ["correct", false], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Raísa"], ["question_id", 1333], ["correct", false], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]]  (124.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem escreveu a carta de Paulo aos Romanos?"], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tércio"], ["question_id", 1334], ["correct", true], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 1334], ["correct", false], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 1334], ["correct", false], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Barnabé"], ["question_id", 1334], ["correct", false], ["created_at", 2016-08-19 02:49:18 UTC], ["updated_at", 2016-08-19 02:49:18 UTC]]  (125.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem espargia o sangue do sacrifício no propiciatório da Arca da Aliança?"], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sacerdote"], ["question_id", 1335], ["correct", true], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Levita"], ["question_id", 1335], ["correct", false], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escriba"], ["question_id", 1335], ["correct", false], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Próprio Deus"], ["question_id", 1335], ["correct", false], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]]  (125.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem estava em pé no pináculo do Templo e tentou Jesus a saltar?"], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Satanás"], ["question_id", 1336], ["correct", true], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes, O Grande"], ["question_id", 1336], ["correct", false], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 1336], ["correct", false], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Agripa"], ["question_id", 1336], ["correct", false], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]]  (116.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem estava perseguindo o povo israelita quando eles estavam atravessando o Mar Vermelho?"], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Egípcios"], ["question_id", 1337], ["correct", true], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Medo-persas"], ["question_id", 1337], ["correct", false], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Gregos"], ["question_id", 1337], ["correct", false], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Amorreus"], ["question_id", 1337], ["correct", false], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]]  (133.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem estava procurando Jesus, quando Este tinha apenas 12 anos, e estava ensinando no Templo?"], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Pais"], ["question_id", 1338], ["correct", true], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 1338], ["correct", false], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Discípulos"], ["question_id", 1338], ["correct", false], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Irmão"], ["question_id", 1338], ["correct", false], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]]  (132.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem estava sentado eu uma jumenta quando apareceu um anjo com a espada desembainhada?"], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Balaão"], ["question_id", 1339], ["correct", true], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1339], ["correct", false], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeroboão"], ["question_id", 1339], ["correct", false], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Roboão"], ["question_id", 1339], ["correct", false], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]]  (133.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem esteve sepultado por 4 dias até que foi ressuscitado por Jesus?"], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lázaro"], ["question_id", 1340], ["correct", true], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matusalém"], ["question_id", 1340], ["correct", false], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 1340], ["correct", false], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Habacuque"], ["question_id", 1340], ["correct", false], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]]  (117.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem expulsou os mercadores que haviam se alojado no Templo?"], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 1341], ["correct", true], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Líderes Religiosos"], ["question_id", 1341], ["correct", false], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 1341], ["correct", false], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Agripa"], ["question_id", 1341], ["correct", false], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]]  (117.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem falsamente acusou José de tentar seduzí-la?"], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Esposa de Potifar"], ["question_id", 1342], ["correct", true], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Criada de Potifar"], ["question_id", 1342], ["correct", false], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Mãe de Potifar"], ["question_id", 1342], ["correct", false], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Filha de Potifar"], ["question_id", 1342], ["correct", false], ["created_at", 2016-08-19 02:49:19 UTC], ["updated_at", 2016-08-19 02:49:19 UTC]]  (160.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem fez a primeira tradução completa da Bíblia para o inglês, no ano de 1380?\n1,"], ["created_at", 2016-08-19 02:49:20 UTC], ["updated_at", 2016-08-19 02:49:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Wycliffe"], ["question_id", 1343], ["correct", true], ["created_at", 2016-08-19 02:49:20 UTC], ["updated_at", 2016-08-19 02:49:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Martinho Lutero"], ["question_id", 1343], ["correct", false], ["created_at", 2016-08-19 02:49:20 UTC], ["updated_at", 2016-08-19 02:49:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "John Lázarus"], ["question_id", 1343], ["correct", false], ["created_at", 2016-08-19 02:49:20 UTC], ["updated_at", 2016-08-19 02:49:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Episcopapus Laurentis"], ["question_id", 1343], ["correct", false], ["created_at", 2016-08-19 02:49:20 UTC], ["updated_at", 2016-08-19 02:49:20 UTC]]  (192.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem fez descer uma corda púrpura pela janela quando os israelitas invadiram Jericó?"], ["created_at", 2016-08-19 02:49:20 UTC], ["updated_at", 2016-08-19 02:49:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Raabe"], ["question_id", 1344], ["correct", true], ["created_at", 2016-08-19 02:49:20 UTC], ["updated_at", 2016-08-19 02:49:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Raquel"], ["question_id", 1344], ["correct", false], ["created_at", 2016-08-19 02:49:20 UTC], ["updated_at", 2016-08-19 02:49:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rute"], ["question_id", 1344], ["correct", false], ["created_at", 2016-08-19 02:49:20 UTC], ["updated_at", 2016-08-19 02:49:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Orfa"], ["question_id", 1344], ["correct", false], ["created_at", 2016-08-19 02:49:20 UTC], ["updated_at", 2016-08-19 02:49:20 UTC]]  (141.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem fez saques em Jericó mesmo após Josué ter instruído o povo a não fazê-lo?"], ["created_at", 2016-08-19 02:49:20 UTC], ["updated_at", 2016-08-19 02:49:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acã"], ["question_id", 1345], ["correct", true], ["created_at", 2016-08-19 02:49:20 UTC], ["updated_at", 2016-08-19 02:49:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cabele"], ["question_id", 1345], ["correct", false], ["created_at", 2016-08-19 02:49:20 UTC], ["updated_at", 2016-08-19 02:49:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Natã"], ["question_id", 1345], ["correct", false], ["created_at", 2016-08-19 02:49:20 UTC], ["updated_at", 2016-08-19 02:49:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hamã"], ["question_id", 1345], ["correct", false], ["created_at", 2016-08-19 02:49:20 UTC], ["updated_at", 2016-08-19 02:49:20 UTC]]  (174.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem fez um bezerro de ouro como ídolo para os israelitas?"], ["created_at", 2016-08-19 02:49:20 UTC], ["updated_at", 2016-08-19 02:49:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 1346], ["correct", true], ["created_at", 2016-08-19 02:49:20 UTC], ["updated_at", 2016-08-19 02:49:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adão"], ["question_id", 1346], ["correct", false], ["created_at", 2016-08-19 02:49:20 UTC], ["updated_at", 2016-08-19 02:49:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1346], ["correct", false], ["created_at", 2016-08-19 02:49:20 UTC], ["updated_at", 2016-08-19 02:49:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 1346], ["correct", false], ["created_at", 2016-08-19 02:49:20 UTC], ["updated_at", 2016-08-19 02:49:20 UTC]]  (150.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem fez uma estátua de ouro de si próprio para ser cultuada e que tinha 90 pés de altura?"], ["created_at", 2016-08-19 02:49:20 UTC], ["updated_at", 2016-08-19 02:49:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 1347], ["correct", true], ["created_at", 2016-08-19 02:49:20 UTC], ["updated_at", 2016-08-19 02:49:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 1347], ["correct", false], ["created_at", 2016-08-19 02:49:20 UTC], ["updated_at", 2016-08-19 02:49:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ninrode"], ["question_id", 1347], ["correct", false], ["created_at", 2016-08-19 02:49:20 UTC], ["updated_at", 2016-08-19 02:49:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 1347], ["correct", false], ["created_at", 2016-08-19 02:49:20 UTC], ["updated_at", 2016-08-19 02:49:20 UTC]]  (125.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ficou 3 dias na barriga de um grande peixe?"], ["created_at", 2016-08-19 02:49:20 UTC], ["updated_at", 2016-08-19 02:49:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jonas"], ["question_id", 1348], ["correct", true], ["created_at", 2016-08-19 02:49:20 UTC], ["updated_at", 2016-08-19 02:49:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jó"], ["question_id", 1348], ["correct", false], ["created_at", 2016-08-19 02:49:20 UTC], ["updated_at", 2016-08-19 02:49:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas"], ["question_id", 1348], ["correct", false], ["created_at", 2016-08-19 02:49:20 UTC], ["updated_at", 2016-08-19 02:49:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jorão"], ["question_id", 1348], ["correct", false], ["created_at", 2016-08-19 02:49:20 UTC], ["updated_at", 2016-08-19 02:49:20 UTC]]  (133.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ficou cego na estrada de Damasco?"], ["created_at", 2016-08-19 02:49:21 UTC], ["updated_at", 2016-08-19 02:49:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 1349], ["correct", true], ["created_at", 2016-08-19 02:49:21 UTC], ["updated_at", 2016-08-19 02:49:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saulo"], ["question_id", 1349], ["correct", false], ["created_at", 2016-08-19 02:49:21 UTC], ["updated_at", 2016-08-19 02:49:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 1349], ["correct", false], ["created_at", 2016-08-19 02:49:21 UTC], ["updated_at", 2016-08-19 02:49:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 1349], ["correct", false], ["created_at", 2016-08-19 02:49:21 UTC], ["updated_at", 2016-08-19 02:49:21 UTC]]  (157.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ficou cego quando dirigia-se para a cidade de Damasco prender alguns cristãos?"], ["created_at", 2016-08-19 02:49:21 UTC], ["updated_at", 2016-08-19 02:49:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saulo"], ["question_id", 1350], ["correct", true], ["created_at", 2016-08-19 02:49:21 UTC], ["updated_at", 2016-08-19 02:49:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 1350], ["correct", false], ["created_at", 2016-08-19 02:49:21 UTC], ["updated_at", 2016-08-19 02:49:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 1350], ["correct", false], ["created_at", 2016-08-19 02:49:21 UTC], ["updated_at", 2016-08-19 02:49:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 1350], ["correct", false], ["created_at", 2016-08-19 02:49:21 UTC], ["updated_at", 2016-08-19 02:49:21 UTC]]  (166.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ficou com os 2 pés feridos porque quando tinha apenas 5 anos a babá que o carregava o deixou cair?"], ["created_at", 2016-08-19 02:49:21 UTC], ["updated_at", 2016-08-19 02:49:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mefibosete"], ["question_id", 1351], ["correct", true], ["created_at", 2016-08-19 02:49:21 UTC], ["updated_at", 2016-08-19 02:49:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matusalém"], ["question_id", 1351], ["correct", false], ["created_at", 2016-08-19 02:49:21 UTC], ["updated_at", 2016-08-19 02:49:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Melquisedeque"], ["question_id", 1351], ["correct", false], ["created_at", 2016-08-19 02:49:21 UTC], ["updated_at", 2016-08-19 02:49:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sadraque"], ["question_id", 1351], ["correct", false], ["created_at", 2016-08-19 02:49:21 UTC], ["updated_at", 2016-08-19 02:49:21 UTC]]  (140.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ficou enciumada pelo êxito de seu irmão mais novo?\n1,"], ["created_at", 2016-08-19 02:49:21 UTC], ["updated_at", 2016-08-19 02:49:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 1352], ["correct", true], ["created_at", 2016-08-19 02:49:21 UTC], ["updated_at", 2016-08-19 02:49:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria Madalena"], ["question_id", 1352], ["correct", false], ["created_at", 2016-08-19 02:49:21 UTC], ["updated_at", 2016-08-19 02:49:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Drusila"], ["question_id", 1352], ["correct", false], ["created_at", 2016-08-19 02:49:21 UTC], ["updated_at", 2016-08-19 02:49:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Raquel"], ["question_id", 1352], ["correct", false], ["created_at", 2016-08-19 02:49:21 UTC], ["updated_at", 2016-08-19 02:49:21 UTC]]  (166.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ficou irritada ao perceber que sua irmã não a ajudava, preferindo ouvir as palavras de Jesus?"], ["created_at", 2016-08-19 02:49:21 UTC], ["updated_at", 2016-08-19 02:49:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marta"], ["question_id", 1353], ["correct", true], ["created_at", 2016-08-19 02:49:21 UTC], ["updated_at", 2016-08-19 02:49:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria"], ["question_id", 1353], ["correct", false], ["created_at", 2016-08-19 02:49:21 UTC], ["updated_at", 2016-08-19 02:49:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 1353], ["correct", false], ["created_at", 2016-08-19 02:49:21 UTC], ["updated_at", 2016-08-19 02:49:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lázaro"], ["question_id", 1353], ["correct", false], ["created_at", 2016-08-19 02:49:21 UTC], ["updated_at", 2016-08-19 02:49:21 UTC]]  (167.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ficou preso pelos cabelos em um carvalho?"], ["created_at", 2016-08-19 02:49:21 UTC], ["updated_at", 2016-08-19 02:49:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 1354], ["correct", true], ["created_at", 2016-08-19 02:49:21 UTC], ["updated_at", 2016-08-19 02:49:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Balaão"], ["question_id", 1354], ["correct", false], ["created_at", 2016-08-19 02:49:21 UTC], ["updated_at", 2016-08-19 02:49:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1354], ["correct", false], ["created_at", 2016-08-19 02:49:21 UTC], ["updated_at", 2016-08-19 02:49:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1354], ["correct", false], ["created_at", 2016-08-19 02:49:21 UTC], ["updated_at", 2016-08-19 02:49:21 UTC]]  (126.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ficou preso pelos cabelos em um cedro do Líbano?"], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Ficou Preso Em Um Carvalho"], ["question_id", 1355], ["correct", true], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 1355], ["correct", false], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Balaão"], ["question_id", 1355], ["correct", false], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1355], ["correct", false], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]]  (126.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem fingiu ser Esaú para obter a bênção da primogenitura?"], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 1356], ["correct", true], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 1356], ["correct", false], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 1356], ["correct", false], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 1356], ["correct", false], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]]  (124.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a 1ª pessoa a ver Jesus ressuscitado?"], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria Madalena"], ["question_id", 1357], ["correct", true], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Mãe Maria"], ["question_id", 1357], ["correct", false], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Tia Isabel"], ["question_id", 1357], ["correct", false], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marta, Irmã de Lázaro"], ["question_id", 1357], ["correct", false], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]]  (125.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a 1ª pessoa que testemunhou a conversão de Saulo?"], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ananias"], ["question_id", 1358], ["correct", true], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Barnabé"], ["question_id", 1358], ["correct", false], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bartolomeu"], ["question_id", 1358], ["correct", false], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nicodemos"], ["question_id", 1358], ["correct", false], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]]  (124.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a avó de Timóteo?"], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Loide"], ["question_id", 1359], ["correct", true], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 1359], ["correct", false], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eunice"], ["question_id", 1359], ["correct", false], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rispa"], ["question_id", 1359], ["correct", false], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]]  (124.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a bisavó de Davi?"], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rute"], ["question_id", 1360], ["correct", true], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ester"], ["question_id", 1360], ["correct", false], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sara"], ["question_id", 1360], ["correct", false], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 1360], ["correct", false], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]]  (142.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a dedicada discípula em Jope que Pedro ressuscitou?"], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dorcas"], ["question_id", 1361], ["correct", true], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 1361], ["correct", false], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Safira"], ["question_id", 1361], ["correct", false], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adria"], ["question_id", 1361], ["correct", false], ["created_at", 2016-08-19 02:49:22 UTC], ["updated_at", 2016-08-19 02:49:22 UTC]]  (124.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a esposa de Boaz?"], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rute"], ["question_id", 1362], ["correct", true], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ester"], ["question_id", 1362], ["correct", false], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noemi"], ["question_id", 1362], ["correct", false], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Orfa"], ["question_id", 1362], ["correct", false], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]]  (158.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a garota israelita que casou com o rei persa Assuero?"], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ester"], ["question_id", 1363], ["correct", true], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Débora"], ["question_id", 1363], ["correct", false], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rute"], ["question_id", 1363], ["correct", false], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 1363], ["correct", false], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]]  (125.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a irmã de Arão, o Sumo-Sacerdote?"], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 1364], ["correct", true], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1364], ["correct", false], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1364], ["correct", false], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 1364], ["correct", false], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]]  (142.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a mãe de Ismael?"], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Agar"], ["question_id", 1365], ["correct", true], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sara"], ["question_id", 1365], ["correct", false], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Profetisa Ana"], ["question_id", 1365], ["correct", false], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 1365], ["correct", false], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]]  (184.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a mãe de João Batista?"], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isabel"], ["question_id", 1366], ["correct", true], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria Madalena"], ["question_id", 1366], ["correct", false], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marta"], ["question_id", 1366], ["correct", false], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria, Irmã de Marta"], ["question_id", 1366], ["correct", false], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]]  (160.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a mãe de Moisés?"], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joquebede"], ["question_id", 1367], ["correct", true], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bate-seba"], ["question_id", 1367], ["correct", false], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vasti"], ["question_id", 1367], ["correct", false], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 1367], ["correct", false], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]]  (142.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a mãe de Obede?"], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rute"], ["question_id", 1368], ["correct", true], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noemi"], ["question_id", 1368], ["correct", false], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Orfa"], ["question_id", 1368], ["correct", false], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elcana"], ["question_id", 1368], ["correct", false], ["created_at", 2016-08-19 02:49:23 UTC], ["updated_at", 2016-08-19 02:49:23 UTC]]  (208.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a mãe de Roboão?"], ["created_at", 2016-08-19 02:49:24 UTC], ["updated_at", 2016-08-19 02:49:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maacá"], ["question_id", 1369], ["correct", true], ["created_at", 2016-08-19 02:49:24 UTC], ["updated_at", 2016-08-19 02:49:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Minéias"], ["question_id", 1369], ["correct", false], ["created_at", 2016-08-19 02:49:24 UTC], ["updated_at", 2016-08-19 02:49:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lia"], ["question_id", 1369], ["correct", false], ["created_at", 2016-08-19 02:49:24 UTC], ["updated_at", 2016-08-19 02:49:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isabel"], ["question_id", 1369], ["correct", false], ["created_at", 2016-08-19 02:49:24 UTC], ["updated_at", 2016-08-19 02:49:24 UTC]]  (191.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a mãe de Salomão?"], ["created_at", 2016-08-19 02:49:24 UTC], ["updated_at", 2016-08-19 02:49:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bate-seba"], ["question_id", 1370], ["correct", true], ["created_at", 2016-08-19 02:49:24 UTC], ["updated_at", 2016-08-19 02:49:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adonias"], ["question_id", 1370], ["correct", false], ["created_at", 2016-08-19 02:49:24 UTC], ["updated_at", 2016-08-19 02:49:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elcana"], ["question_id", 1370], ["correct", false], ["created_at", 2016-08-19 02:49:24 UTC], ["updated_at", 2016-08-19 02:49:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Profetisa Ana"], ["question_id", 1370], ["correct", false], ["created_at", 2016-08-19 02:49:24 UTC], ["updated_at", 2016-08-19 02:49:24 UTC]]  (142.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a mãe de Timóteo?"], ["created_at", 2016-08-19 02:49:24 UTC], ["updated_at", 2016-08-19 02:49:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eunice"], ["question_id", 1371], ["correct", true], ["created_at", 2016-08-19 02:49:24 UTC], ["updated_at", 2016-08-19 02:49:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Priscila"], ["question_id", 1371], ["correct", false], ["created_at", 2016-08-19 02:49:24 UTC], ["updated_at", 2016-08-19 02:49:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Loide"], ["question_id", 1371], ["correct", false], ["created_at", 2016-08-19 02:49:24 UTC], ["updated_at", 2016-08-19 02:49:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Safira"], ["question_id", 1371], ["correct", false], ["created_at", 2016-08-19 02:49:24 UTC], ["updated_at", 2016-08-19 02:49:24 UTC]]  (149.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a primeira mulher convertida na Europa?\n1,"], ["created_at", 2016-08-19 02:49:24 UTC], ["updated_at", 2016-08-19 02:49:24 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lídia"], ["question_id", 1372], ["correct", true], ["created_at", 2016-08-19 02:49:24 UTC], ["updated_at", 2016-08-19 02:49:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Priscila"], ["question_id", 1372], ["correct", false], ["created_at", 2016-08-19 02:49:24 UTC], ["updated_at", 2016-08-19 02:49:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 1372], ["correct", false], ["created_at", 2016-08-19 02:49:24 UTC], ["updated_at", 2016-08-19 02:49:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joséfa"], ["question_id", 1372], ["correct", false], ["created_at", 2016-08-19 02:49:24 UTC], ["updated_at", 2016-08-19 02:49:24 UTC]]  (124.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a primeira pessoa a cometer assassinato na Bíblia?"], ["created_at", 2016-08-19 02:49:24 UTC], ["updated_at", 2016-08-19 02:49:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caim"], ["question_id", 1373], ["correct", true], ["created_at", 2016-08-19 02:49:24 UTC], ["updated_at", 2016-08-19 02:49:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abel"], ["question_id", 1373], ["correct", false], ["created_at", 2016-08-19 02:49:24 UTC], ["updated_at", 2016-08-19 02:49:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adão"], ["question_id", 1373], ["correct", false], ["created_at", 2016-08-19 02:49:24 UTC], ["updated_at", 2016-08-19 02:49:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eva"], ["question_id", 1373], ["correct", false], ["created_at", 2016-08-19 02:49:24 UTC], ["updated_at", 2016-08-19 02:49:24 UTC]]  (150.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a única médium registrada na Bíblia?\n1,"], ["created_at", 2016-08-19 02:49:25 UTC], ["updated_at", 2016-08-19 02:49:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "En-dor"], ["question_id", 1374], ["correct", true], ["created_at", 2016-08-19 02:49:25 UTC], ["updated_at", 2016-08-19 02:49:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jezabel"], ["question_id", 1374], ["correct", false], ["created_at", 2016-08-19 02:49:25 UTC], ["updated_at", 2016-08-19 02:49:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nefertite"], ["question_id", 1374], ["correct", false], ["created_at", 2016-08-19 02:49:25 UTC], ["updated_at", 2016-08-19 02:49:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rainha de Sabá"], ["question_id", 1374], ["correct", false], ["created_at", 2016-08-19 02:49:25 UTC], ["updated_at", 2016-08-19 02:49:25 UTC]]  (125.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a vítima do primeiro assassinato ocorrido na Bíblia?"], ["created_at", 2016-08-19 02:49:25 UTC], ["updated_at", 2016-08-19 02:49:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abel"], ["question_id", 1375], ["correct", true], ["created_at", 2016-08-19 02:49:25 UTC], ["updated_at", 2016-08-19 02:49:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caim"], ["question_id", 1375], ["correct", false], ["created_at", 2016-08-19 02:49:25 UTC], ["updated_at", 2016-08-19 02:49:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adão"], ["question_id", 1375], ["correct", false], ["created_at", 2016-08-19 02:49:25 UTC], ["updated_at", 2016-08-19 02:49:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eva"], ["question_id", 1375], ["correct", false], ["created_at", 2016-08-19 02:49:25 UTC], ["updated_at", 2016-08-19 02:49:25 UTC]]  (175.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi acusado falsamente de tentar seduzir a esposa de Potifar?"], ["created_at", 2016-08-19 02:49:25 UTC], ["updated_at", 2016-08-19 02:49:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 1376], ["correct", true], ["created_at", 2016-08-19 02:49:25 UTC], ["updated_at", 2016-08-19 02:49:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 1376], ["correct", false], ["created_at", 2016-08-19 02:49:25 UTC], ["updated_at", 2016-08-19 02:49:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 1376], ["correct", false], ["created_at", 2016-08-19 02:49:25 UTC], ["updated_at", 2016-08-19 02:49:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 1376], ["correct", false], ["created_at", 2016-08-19 02:49:25 UTC], ["updated_at", 2016-08-19 02:49:25 UTC]]  (159.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi ao Egito durante uma longa estiagem de seca e fome?"], ["created_at", 2016-08-19 02:49:25 UTC], ["updated_at", 2016-08-19 02:49:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1377], ["correct", true], ["created_at", 2016-08-19 02:49:25 UTC], ["updated_at", 2016-08-19 02:49:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sete"], ["question_id", 1377], ["correct", false], ["created_at", 2016-08-19 02:49:25 UTC], ["updated_at", 2016-08-19 02:49:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matusalém"], ["question_id", 1377], ["correct", false], ["created_at", 2016-08-19 02:49:25 UTC], ["updated_at", 2016-08-19 02:49:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 1377], ["correct", false], ["created_at", 2016-08-19 02:49:25 UTC], ["updated_at", 2016-08-19 02:49:25 UTC]]  (192.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi apresentado no Templo de Jerusalém como um bebê?"], ["created_at", 2016-08-19 02:49:25 UTC], ["updated_at", 2016-08-19 02:49:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 1378], ["correct", true], ["created_at", 2016-08-19 02:49:25 UTC], ["updated_at", 2016-08-19 02:49:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1378], ["correct", false], ["created_at", 2016-08-19 02:49:25 UTC], ["updated_at", 2016-08-19 02:49:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 1378], ["correct", false], ["created_at", 2016-08-19 02:49:25 UTC], ["updated_at", 2016-08-19 02:49:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1378], ["correct", false], ["created_at", 2016-08-19 02:49:25 UTC], ["updated_at", 2016-08-19 02:49:25 UTC]]  (150.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi atirado à cova dos leões?"], ["created_at", 2016-08-19 02:49:25 UTC], ["updated_at", 2016-08-19 02:49:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 1379], ["correct", true], ["created_at", 2016-08-19 02:49:25 UTC], ["updated_at", 2016-08-19 02:49:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mesaque"], ["question_id", 1379], ["correct", false], ["created_at", 2016-08-19 02:49:25 UTC], ["updated_at", 2016-08-19 02:49:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abede-nego"], ["question_id", 1379], ["correct", false], ["created_at", 2016-08-19 02:49:25 UTC], ["updated_at", 2016-08-19 02:49:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sadraque"], ["question_id", 1379], ["correct", false], ["created_at", 2016-08-19 02:49:25 UTC], ["updated_at", 2016-08-19 02:49:25 UTC]]  (183.4ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi batizado por João Batista no rio Nilo?"], ["created_at", 2016-08-19 02:49:26 UTC], ["updated_at", 2016-08-19 02:49:26 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Jamais Batizou Alguém No Egito"], ["question_id", 1380], ["correct", true], ["created_at", 2016-08-19 02:49:26 UTC], ["updated_at", 2016-08-19 02:49:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 1380], ["correct", false], ["created_at", 2016-08-19 02:49:26 UTC], ["updated_at", 2016-08-19 02:49:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria"], ["question_id", 1380], ["correct", false], ["created_at", 2016-08-19 02:49:26 UTC], ["updated_at", 2016-08-19 02:49:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 1380], ["correct", false], ["created_at", 2016-08-19 02:49:26 UTC], ["updated_at", 2016-08-19 02:49:26 UTC]]  (165.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi chamado de cristãos pela 1ª vez na cidade de Antioquia?"], ["created_at", 2016-08-19 02:49:26 UTC], ["updated_at", 2016-08-19 02:49:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Discípulos"], ["question_id", 1381], ["correct", true], ["created_at", 2016-08-19 02:49:26 UTC], ["updated_at", 2016-08-19 02:49:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 1381], ["correct", false], ["created_at", 2016-08-19 02:49:26 UTC], ["updated_at", 2016-08-19 02:49:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 1381], ["correct", false], ["created_at", 2016-08-19 02:49:26 UTC], ["updated_at", 2016-08-19 02:49:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas Iscariotes"], ["question_id", 1381], ["correct", false], ["created_at", 2016-08-19 02:49:26 UTC], ["updated_at", 2016-08-19 02:49:26 UTC]]  (141.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi colocado em uma cesta no rio Nilo, quando ainda era bebê?"], ["created_at", 2016-08-19 02:49:26 UTC], ["updated_at", 2016-08-19 02:49:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1382], ["correct", true], ["created_at", 2016-08-19 02:49:26 UTC], ["updated_at", 2016-08-19 02:49:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 1382], ["correct", false], ["created_at", 2016-08-19 02:49:26 UTC], ["updated_at", 2016-08-19 02:49:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 1382], ["correct", false], ["created_at", 2016-08-19 02:49:26 UTC], ["updated_at", 2016-08-19 02:49:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 1382], ["correct", false], ["created_at", 2016-08-19 02:49:26 UTC], ["updated_at", 2016-08-19 02:49:26 UTC]]  (174.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi confundido pelos gregos como sendo o deus Júpiter?"], ["created_at", 2016-08-19 02:49:26 UTC], ["updated_at", 2016-08-19 02:49:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Barnabé"], ["question_id", 1383], ["correct", true], ["created_at", 2016-08-19 02:49:26 UTC], ["updated_at", 2016-08-19 02:49:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tomé"], ["question_id", 1383], ["correct", false], ["created_at", 2016-08-19 02:49:26 UTC], ["updated_at", 2016-08-19 02:49:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 1383], ["correct", false], ["created_at", 2016-08-19 02:49:26 UTC], ["updated_at", 2016-08-19 02:49:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 1383], ["correct", false], ["created_at", 2016-08-19 02:49:26 UTC], ["updated_at", 2016-08-19 02:49:26 UTC]]  (134.1ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi decapitado pelo rei Herodes?"], ["created_at", 2016-08-19 02:49:26 UTC], ["updated_at", 2016-08-19 02:49:26 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 1384], ["correct", true], ["created_at", 2016-08-19 02:49:26 UTC], ["updated_at", 2016-08-19 02:49:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José de Arimatéia"], ["question_id", 1384], ["correct", false], ["created_at", 2016-08-19 02:49:26 UTC], ["updated_at", 2016-08-19 02:49:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas Iscariotes"], ["question_id", 1384], ["correct", false], ["created_at", 2016-08-19 02:49:26 UTC], ["updated_at", 2016-08-19 02:49:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Estêvão"], ["question_id", 1384], ["correct", false], ["created_at", 2016-08-19 02:49:26 UTC], ["updated_at", 2016-08-19 02:49:26 UTC]]  (149.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi escondido em uma cesta por sua mãe com o objetivo de protegê-lo de morte?"], ["created_at", 2016-08-19 02:49:26 UTC], ["updated_at", 2016-08-19 02:49:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1385], ["correct", true], ["created_at", 2016-08-19 02:49:26 UTC], ["updated_at", 2016-08-19 02:49:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1385], ["correct", false], ["created_at", 2016-08-19 02:49:26 UTC], ["updated_at", 2016-08-19 02:49:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 1385], ["correct", false], ["created_at", 2016-08-19 02:49:26 UTC], ["updated_at", 2016-08-19 02:49:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 1385], ["correct", false], ["created_at", 2016-08-19 02:49:26 UTC], ["updated_at", 2016-08-19 02:49:26 UTC]]  (149.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi escravo pessoal de Potifar?"], ["created_at", 2016-08-19 02:49:27 UTC], ["updated_at", 2016-08-19 02:49:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 1386], ["correct", true], ["created_at", 2016-08-19 02:49:27 UTC], ["updated_at", 2016-08-19 02:49:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 1386], ["correct", false], ["created_at", 2016-08-19 02:49:27 UTC], ["updated_at", 2016-08-19 02:49:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rúben"], ["question_id", 1386], ["correct", false], ["created_at", 2016-08-19 02:49:27 UTC], ["updated_at", 2016-08-19 02:49:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eli"], ["question_id", 1386], ["correct", false], ["created_at", 2016-08-19 02:49:27 UTC], ["updated_at", 2016-08-19 02:49:27 UTC]]  (149.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi filho de Davi e Bate-Seba?"], ["created_at", 2016-08-19 02:49:27 UTC], ["updated_at", 2016-08-19 02:49:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todas As Alternativas Estão Corretas"], ["question_id", 1387], ["correct", true], ["created_at", 2016-08-19 02:49:27 UTC], ["updated_at", 2016-08-19 02:49:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samua"], ["question_id", 1387], ["correct", false], ["created_at", 2016-08-19 02:49:27 UTC], ["updated_at", 2016-08-19 02:49:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sobabe"], ["question_id", 1387], ["correct", false], ["created_at", 2016-08-19 02:49:27 UTC], ["updated_at", 2016-08-19 02:49:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bebê Que Morreu Devido Ao Pecado de Davi"], ["question_id", 1387], ["correct", false], ["created_at", 2016-08-19 02:49:27 UTC], ["updated_at", 2016-08-19 02:49:27 UTC]]  (133.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi filho de Terá?"], ["created_at", 2016-08-19 02:49:27 UTC], ["updated_at", 2016-08-19 02:49:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1388], ["correct", true], ["created_at", 2016-08-19 02:49:27 UTC], ["updated_at", 2016-08-19 02:49:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ló"], ["question_id", 1388], ["correct", false], ["created_at", 2016-08-19 02:49:27 UTC], ["updated_at", 2016-08-19 02:49:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 1388], ["correct", false], ["created_at", 2016-08-19 02:49:27 UTC], ["updated_at", 2016-08-19 02:49:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Safate"], ["question_id", 1388], ["correct", false], ["created_at", 2016-08-19 02:49:27 UTC], ["updated_at", 2016-08-19 02:49:27 UTC]]  (225.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi levado escravo para o Egito?"], ["created_at", 2016-08-19 02:49:27 UTC], ["updated_at", 2016-08-19 02:49:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 1389], ["correct", true], ["created_at", 2016-08-19 02:49:27 UTC], ["updated_at", 2016-08-19 02:49:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1389], ["correct", false], ["created_at", 2016-08-19 02:49:27 UTC], ["updated_at", 2016-08-19 02:49:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 1389], ["correct", false], ["created_at", 2016-08-19 02:49:27 UTC], ["updated_at", 2016-08-19 02:49:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1389], ["correct", false], ["created_at", 2016-08-19 02:49:27 UTC], ["updated_at", 2016-08-19 02:49:27 UTC]]  (141.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi neto de Obede?"], ["created_at", 2016-08-19 02:49:27 UTC], ["updated_at", 2016-08-19 02:49:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1390], ["correct", true], ["created_at", 2016-08-19 02:49:27 UTC], ["updated_at", 2016-08-19 02:49:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 1390], ["correct", false], ["created_at", 2016-08-19 02:49:27 UTC], ["updated_at", 2016-08-19 02:49:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noé"], ["question_id", 1390], ["correct", false], ["created_at", 2016-08-19 02:49:27 UTC], ["updated_at", 2016-08-19 02:49:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matusalém"], ["question_id", 1390], ["correct", false], ["created_at", 2016-08-19 02:49:27 UTC], ["updated_at", 2016-08-19 02:49:27 UTC]]  (141.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi nomeado Presidente do reino da Babilônia, através do rei Dario?"], ["created_at", 2016-08-19 02:49:27 UTC], ["updated_at", 2016-08-19 02:49:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 1391], ["correct", true], ["created_at", 2016-08-19 02:49:27 UTC], ["updated_at", 2016-08-19 02:49:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eli"], ["question_id", 1391], ["correct", false], ["created_at", 2016-08-19 02:49:27 UTC], ["updated_at", 2016-08-19 02:49:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1391], ["correct", false], ["created_at", 2016-08-19 02:49:27 UTC], ["updated_at", 2016-08-19 02:49:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 1391], ["correct", false], ["created_at", 2016-08-19 02:49:27 UTC], ["updated_at", 2016-08-19 02:49:27 UTC]]  (224.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o 1º filho de Adão e Eva?"], ["created_at", 2016-08-19 02:49:28 UTC], ["updated_at", 2016-08-19 02:49:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caim"], ["question_id", 1392], ["correct", true], ["created_at", 2016-08-19 02:49:28 UTC], ["updated_at", 2016-08-19 02:49:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abel"], ["question_id", 1392], ["correct", false], ["created_at", 2016-08-19 02:49:28 UTC], ["updated_at", 2016-08-19 02:49:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cão"], ["question_id", 1392], ["correct", false], ["created_at", 2016-08-19 02:49:28 UTC], ["updated_at", 2016-08-19 02:49:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sete"], ["question_id", 1392], ["correct", false], ["created_at", 2016-08-19 02:49:28 UTC], ["updated_at", 2016-08-19 02:49:28 UTC]]  (159.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o 2º rei de Israel?"], ["created_at", 2016-08-19 02:49:28 UTC], ["updated_at", 2016-08-19 02:49:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1393], ["correct", true], ["created_at", 2016-08-19 02:49:28 UTC], ["updated_at", 2016-08-19 02:49:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 1393], ["correct", false], ["created_at", 2016-08-19 02:49:28 UTC], ["updated_at", 2016-08-19 02:49:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1393], ["correct", false], ["created_at", 2016-08-19 02:49:28 UTC], ["updated_at", 2016-08-19 02:49:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 1393], ["correct", false], ["created_at", 2016-08-19 02:49:28 UTC], ["updated_at", 2016-08-19 02:49:28 UTC]]  (132.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o 3º filho de Adão e Eva?"], ["created_at", 2016-08-19 02:49:28 UTC], ["updated_at", 2016-08-19 02:49:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sete"], ["question_id", 1394], ["correct", true], ["created_at", 2016-08-19 02:49:28 UTC], ["updated_at", 2016-08-19 02:49:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caim"], ["question_id", 1394], ["correct", false], ["created_at", 2016-08-19 02:49:28 UTC], ["updated_at", 2016-08-19 02:49:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abel"], ["question_id", 1394], ["correct", false], ["created_at", 2016-08-19 02:49:28 UTC], ["updated_at", 2016-08-19 02:49:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jafé"], ["question_id", 1394], ["correct", false], ["created_at", 2016-08-19 02:49:28 UTC], ["updated_at", 2016-08-19 02:49:28 UTC]]  (166.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o avô de Arão?"], ["created_at", 2016-08-19 02:49:28 UTC], ["updated_at", 2016-08-19 02:49:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Coate"], ["question_id", 1395], ["correct", true], ["created_at", 2016-08-19 02:49:28 UTC], ["updated_at", 2016-08-19 02:49:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jetro"], ["question_id", 1395], ["correct", false], ["created_at", 2016-08-19 02:49:28 UTC], ["updated_at", 2016-08-19 02:49:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obede"], ["question_id", 1395], ["correct", false], ["created_at", 2016-08-19 02:49:28 UTC], ["updated_at", 2016-08-19 02:49:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jônatas"], ["question_id", 1395], ["correct", false], ["created_at", 2016-08-19 02:49:28 UTC], ["updated_at", 2016-08-19 02:49:28 UTC]]  (183.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o avô de Davi?"], ["created_at", 2016-08-19 02:49:28 UTC], ["updated_at", 2016-08-19 02:49:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obede"], ["question_id", 1396], ["correct", true], ["created_at", 2016-08-19 02:49:28 UTC], ["updated_at", 2016-08-19 02:49:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jessé"], ["question_id", 1396], ["correct", false], ["created_at", 2016-08-19 02:49:28 UTC], ["updated_at", 2016-08-19 02:49:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josafá"], ["question_id", 1396], ["correct", false], ["created_at", 2016-08-19 02:49:28 UTC], ["updated_at", 2016-08-19 02:49:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeroboão"], ["question_id", 1396], ["correct", false], ["created_at", 2016-08-19 02:49:28 UTC], ["updated_at", 2016-08-19 02:49:28 UTC]]  (133.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o avô de Jesus?"], ["created_at", 2016-08-19 02:49:28 UTC], ["updated_at", 2016-08-19 02:49:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 1397], ["correct", true], ["created_at", 2016-08-19 02:49:28 UTC], ["updated_at", 2016-08-19 02:49:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias"], ["question_id", 1397], ["correct", false], ["created_at", 2016-08-19 02:49:28 UTC], ["updated_at", 2016-08-19 02:49:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Levi"], ["question_id", 1397], ["correct", false], ["created_at", 2016-08-19 02:49:28 UTC], ["updated_at", 2016-08-19 02:49:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hacalias"], ["question_id", 1397], ["correct", false], ["created_at", 2016-08-19 02:49:28 UTC], ["updated_at", 2016-08-19 02:49:28 UTC]]  (118.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o avô de Moisés?"], ["created_at", 2016-08-19 02:49:29 UTC], ["updated_at", 2016-08-19 02:49:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Coate"], ["question_id", 1398], ["correct", true], ["created_at", 2016-08-19 02:49:29 UTC], ["updated_at", 2016-08-19 02:49:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josafá"], ["question_id", 1398], ["correct", false], ["created_at", 2016-08-19 02:49:29 UTC], ["updated_at", 2016-08-19 02:49:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quis"], ["question_id", 1398], ["correct", false], ["created_at", 2016-08-19 02:49:29 UTC], ["updated_at", 2016-08-19 02:49:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elimeleque"], ["question_id", 1398], ["correct", false], ["created_at", 2016-08-19 02:49:29 UTC], ["updated_at", 2016-08-19 02:49:29 UTC]]  (176.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o avô de Noé?"], ["created_at", 2016-08-19 02:49:29 UTC], ["updated_at", 2016-08-19 02:49:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matusalem"], ["question_id", 1399], ["correct", true], ["created_at", 2016-08-19 02:49:29 UTC], ["updated_at", 2016-08-19 02:49:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adão"], ["question_id", 1399], ["correct", false], ["created_at", 2016-08-19 02:49:29 UTC], ["updated_at", 2016-08-19 02:49:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abel"], ["question_id", 1399], ["correct", false], ["created_at", 2016-08-19 02:49:29 UTC], ["updated_at", 2016-08-19 02:49:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sete"], ["question_id", 1399], ["correct", false], ["created_at", 2016-08-19 02:49:29 UTC], ["updated_at", 2016-08-19 02:49:29 UTC]]  (184.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o avô de Raquel e Léia, esposas de Jacó?"], ["created_at", 2016-08-19 02:49:29 UTC], ["updated_at", 2016-08-19 02:49:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Naor"], ["question_id", 1400], ["correct", true], ["created_at", 2016-08-19 02:49:29 UTC], ["updated_at", 2016-08-19 02:49:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1400], ["correct", false], ["created_at", 2016-08-19 02:49:29 UTC], ["updated_at", 2016-08-19 02:49:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matusalém"], ["question_id", 1400], ["correct", false], ["created_at", 2016-08-19 02:49:29 UTC], ["updated_at", 2016-08-19 02:49:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noé"], ["question_id", 1400], ["correct", false], ["created_at", 2016-08-19 02:49:29 UTC], ["updated_at", 2016-08-19 02:49:29 UTC]]  (133.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o bisavô de Ninrode, construtor da cidade de Nínive?"], ["created_at", 2016-08-19 02:49:29 UTC], ["updated_at", 2016-08-19 02:49:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noé"], ["question_id", 1401], ["correct", true], ["created_at", 2016-08-19 02:49:29 UTC], ["updated_at", 2016-08-19 02:49:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matusalém"], ["question_id", 1401], ["correct", false], ["created_at", 2016-08-19 02:49:29 UTC], ["updated_at", 2016-08-19 02:49:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Enoque"], ["question_id", 1401], ["correct", false], ["created_at", 2016-08-19 02:49:29 UTC], ["updated_at", 2016-08-19 02:49:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caim"], ["question_id", 1401], ["correct", false], ["created_at", 2016-08-19 02:49:29 UTC], ["updated_at", 2016-08-19 02:49:29 UTC]]  (133.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o bisneto de Rute?"], ["created_at", 2016-08-19 02:49:29 UTC], ["updated_at", 2016-08-19 02:49:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1402], ["correct", true], ["created_at", 2016-08-19 02:49:29 UTC], ["updated_at", 2016-08-19 02:49:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 1402], ["correct", false], ["created_at", 2016-08-19 02:49:29 UTC], ["updated_at", 2016-08-19 02:49:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1402], ["correct", false], ["created_at", 2016-08-19 02:49:29 UTC], ["updated_at", 2016-08-19 02:49:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obadias"], ["question_id", 1402], ["correct", false], ["created_at", 2016-08-19 02:49:29 UTC], ["updated_at", 2016-08-19 02:49:29 UTC]]  (133.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o gigante morto por Davi?"], ["created_at", 2016-08-19 02:49:29 UTC], ["updated_at", 2016-08-19 02:49:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Golias"], ["question_id", 1403], ["correct", true], ["created_at", 2016-08-19 02:49:29 UTC], ["updated_at", 2016-08-19 02:49:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gileade"], ["question_id", 1403], ["correct", false], ["created_at", 2016-08-19 02:49:29 UTC], ["updated_at", 2016-08-19 02:49:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gadiel"], ["question_id", 1403], ["correct", false], ["created_at", 2016-08-19 02:49:29 UTC], ["updated_at", 2016-08-19 02:49:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mefibosete"], ["question_id", 1403], ["correct", false], ["created_at", 2016-08-19 02:49:29 UTC], ["updated_at", 2016-08-19 02:49:29 UTC]]  (150.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o irmão do Sumo-Sacerdote Arão?"], ["created_at", 2016-08-19 02:49:29 UTC], ["updated_at", 2016-08-19 02:49:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1404], ["correct", true], ["created_at", 2016-08-19 02:49:29 UTC], ["updated_at", 2016-08-19 02:49:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 1404], ["correct", false], ["created_at", 2016-08-19 02:49:30 UTC], ["updated_at", 2016-08-19 02:49:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1404], ["correct", false], ["created_at", 2016-08-19 02:49:30 UTC], ["updated_at", 2016-08-19 02:49:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mefibosete"], ["question_id", 1404], ["correct", false], ["created_at", 2016-08-19 02:49:30 UTC], ["updated_at", 2016-08-19 02:49:30 UTC]]  (124.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o marido de Priscila, que auxiliou no ministério de Paulo?"], ["created_at", 2016-08-19 02:49:30 UTC], ["updated_at", 2016-08-19 02:49:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Áquila"], ["question_id", 1405], ["correct", true], ["created_at", 2016-08-19 02:49:30 UTC], ["updated_at", 2016-08-19 02:49:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Átila"], ["question_id", 1405], ["correct", false], ["created_at", 2016-08-19 02:49:30 UTC], ["updated_at", 2016-08-19 02:49:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eustáquio"], ["question_id", 1405], ["correct", false], ["created_at", 2016-08-19 02:49:30 UTC], ["updated_at", 2016-08-19 02:49:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Benjamin"], ["question_id", 1405], ["correct", false], ["created_at", 2016-08-19 02:49:30 UTC], ["updated_at", 2016-08-19 02:49:30 UTC]]  (208.5ms) commit transaction  (0.1ms) begin transaction SQL (0.5ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o marido de Rute?"], ["created_at", 2016-08-19 02:49:30 UTC], ["updated_at", 2016-08-19 02:49:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Boaz"], ["question_id", 1406], ["correct", true], ["created_at", 2016-08-19 02:49:30 UTC], ["updated_at", 2016-08-19 02:49:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elifaz"], ["question_id", 1406], ["correct", false], ["created_at", 2016-08-19 02:49:30 UTC], ["updated_at", 2016-08-19 02:49:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Malaquias"], ["question_id", 1406], ["correct", false], ["created_at", 2016-08-19 02:49:30 UTC], ["updated_at", 2016-08-19 02:49:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Melquisedeque"], ["question_id", 1406], ["correct", false], ["created_at", 2016-08-19 02:49:30 UTC], ["updated_at", 2016-08-19 02:49:30 UTC]]  (141.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai da rainha Jezabel?"], ["created_at", 2016-08-19 02:49:30 UTC], ["updated_at", 2016-08-19 02:49:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Erbaal"], ["question_id", 1407], ["correct", true], ["created_at", 2016-08-19 02:49:30 UTC], ["updated_at", 2016-08-19 02:49:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiglate-pileser"], ["question_id", 1407], ["correct", false], ["created_at", 2016-08-19 02:49:30 UTC], ["updated_at", 2016-08-19 02:49:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elate"], ["question_id", 1407], ["correct", false], ["created_at", 2016-08-19 02:49:30 UTC], ["updated_at", 2016-08-19 02:49:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zadoque"], ["question_id", 1407], ["correct", false], ["created_at", 2016-08-19 02:49:30 UTC], ["updated_at", 2016-08-19 02:49:30 UTC]]  (124.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Acabe?"], ["created_at", 2016-08-19 02:49:30 UTC], ["updated_at", 2016-08-19 02:49:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Onri"], ["question_id", 1408], ["correct", true], ["created_at", 2016-08-19 02:49:30 UTC], ["updated_at", 2016-08-19 02:49:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hacalias"], ["question_id", 1408], ["correct", false], ["created_at", 2016-08-19 02:49:30 UTC], ["updated_at", 2016-08-19 02:49:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Safate"], ["question_id", 1408], ["correct", false], ["created_at", 2016-08-19 02:49:30 UTC], ["updated_at", 2016-08-19 02:49:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nebaiote"], ["question_id", 1408], ["correct", false], ["created_at", 2016-08-19 02:49:30 UTC], ["updated_at", 2016-08-19 02:49:30 UTC]]  (124.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Elcana?"], ["created_at", 2016-08-19 02:49:30 UTC], ["updated_at", 2016-08-19 02:49:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeroão"], ["question_id", 1409], ["correct", true], ["created_at", 2016-08-19 02:49:30 UTC], ["updated_at", 2016-08-19 02:49:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quis"], ["question_id", 1409], ["correct", false], ["created_at", 2016-08-19 02:49:30 UTC], ["updated_at", 2016-08-19 02:49:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 1409], ["correct", false], ["created_at", 2016-08-19 02:49:30 UTC], ["updated_at", 2016-08-19 02:49:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mefibosete"], ["question_id", 1409], ["correct", false], ["created_at", 2016-08-19 02:49:30 UTC], ["updated_at", 2016-08-19 02:49:30 UTC]]  (125.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Eliseu?"], ["created_at", 2016-08-19 02:49:30 UTC], ["updated_at", 2016-08-19 02:49:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Safate"], ["question_id", 1410], ["correct", true], ["created_at", 2016-08-19 02:49:30 UTC], ["updated_at", 2016-08-19 02:49:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ido"], ["question_id", 1410], ["correct", false], ["created_at", 2016-08-19 02:49:30 UTC], ["updated_at", 2016-08-19 02:49:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Onri"], ["question_id", 1410], ["correct", false], ["created_at", 2016-08-19 02:49:30 UTC], ["updated_at", 2016-08-19 02:49:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amitai"], ["question_id", 1410], ["correct", false], ["created_at", 2016-08-19 02:49:30 UTC], ["updated_at", 2016-08-19 02:49:30 UTC]]  (127.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Esdras?"], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seraías"], ["question_id", 1411], ["correct", true], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judá"], ["question_id", 1411], ["correct", false], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hadade"], ["question_id", 1411], ["correct", false], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nafis"], ["question_id", 1411], ["correct", false], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]]  (133.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Gideão?"], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joás"], ["question_id", 1412], ["correct", true], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josafá"], ["question_id", 1412], ["correct", false], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cusi"], ["question_id", 1412], ["correct", false], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Safate"], ["question_id", 1412], ["correct", false], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]]  (140.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Ismael?"], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1413], ["correct", true], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1413], ["correct", false], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 1413], ["correct", false], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1413], ["correct", false], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]]  (132.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Jeroboão?"], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1414], ["correct", true], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 1414], ["correct", false], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Azarias"], ["question_id", 1414], ["correct", false], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 1414], ["correct", false], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]]  (124.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Jônas?"], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amitai"], ["question_id", 1415], ["correct", true], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cusi"], ["question_id", 1415], ["correct", false], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amnom"], ["question_id", 1415], ["correct", false], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abias"], ["question_id", 1415], ["correct", false], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]]  (141.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Jônatas?"], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 1416], ["correct", true], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1416], ["correct", false], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1416], ["correct", false], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 1416], ["correct", false], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]]  (133.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Josué?"], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Num"], ["question_id", 1417], ["correct", true], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amitai"], ["question_id", 1417], ["correct", false], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Petuel"], ["question_id", 1417], ["correct", false], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Beeri"], ["question_id", 1417], ["correct", false], ["created_at", 2016-08-19 02:49:31 UTC], ["updated_at", 2016-08-19 02:49:31 UTC]]  (141.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Lia e Raquel?"], ["created_at", 2016-08-19 02:49:32 UTC], ["updated_at", 2016-08-19 02:49:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Labão"], ["question_id", 1418], ["correct", true], ["created_at", 2016-08-19 02:49:32 UTC], ["updated_at", 2016-08-19 02:49:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Coate"], ["question_id", 1418], ["correct", false], ["created_at", 2016-08-19 02:49:32 UTC], ["updated_at", 2016-08-19 02:49:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jetro"], ["question_id", 1418], ["correct", false], ["created_at", 2016-08-19 02:49:32 UTC], ["updated_at", 2016-08-19 02:49:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elimeleque"], ["question_id", 1418], ["correct", false], ["created_at", 2016-08-19 02:49:32 UTC], ["updated_at", 2016-08-19 02:49:32 UTC]]  (182.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Manassés?"], ["created_at", 2016-08-19 02:49:32 UTC], ["updated_at", 2016-08-19 02:49:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 1419], ["correct", true], ["created_at", 2016-08-19 02:49:32 UTC], ["updated_at", 2016-08-19 02:49:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 1419], ["correct", false], ["created_at", 2016-08-19 02:49:32 UTC], ["updated_at", 2016-08-19 02:49:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 1419], ["correct", false], ["created_at", 2016-08-19 02:49:32 UTC], ["updated_at", 2016-08-19 02:49:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Melquisedeque"], ["question_id", 1419], ["correct", false], ["created_at", 2016-08-19 02:49:32 UTC], ["updated_at", 2016-08-19 02:49:32 UTC]]  (141.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Mefibosete?"], ["created_at", 2016-08-19 02:49:32 UTC], ["updated_at", 2016-08-19 02:49:32 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jônatas"], ["question_id", 1420], ["correct", true], ["created_at", 2016-08-19 02:49:32 UTC], ["updated_at", 2016-08-19 02:49:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 1420], ["correct", false], ["created_at", 2016-08-19 02:49:32 UTC], ["updated_at", 2016-08-19 02:49:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1420], ["correct", false], ["created_at", 2016-08-19 02:49:32 UTC], ["updated_at", 2016-08-19 02:49:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Malaquias"], ["question_id", 1420], ["correct", false], ["created_at", 2016-08-19 02:49:32 UTC], ["updated_at", 2016-08-19 02:49:32 UTC]]  (190.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de muitas nações?"], ["created_at", 2016-08-19 02:49:32 UTC], ["updated_at", 2016-08-19 02:49:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1421], ["correct", true], ["created_at", 2016-08-19 02:49:32 UTC], ["updated_at", 2016-08-19 02:49:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 1421], ["correct", false], ["created_at", 2016-08-19 02:49:32 UTC], ["updated_at", 2016-08-19 02:49:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 1421], ["correct", false], ["created_at", 2016-08-19 02:49:32 UTC], ["updated_at", 2016-08-19 02:49:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1421], ["correct", false], ["created_at", 2016-08-19 02:49:32 UTC], ["updated_at", 2016-08-19 02:49:32 UTC]]  (157.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Obede?"], ["created_at", 2016-08-19 02:49:32 UTC], ["updated_at", 2016-08-19 02:49:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Boaz"], ["question_id", 1422], ["correct", true], ["created_at", 2016-08-19 02:49:32 UTC], ["updated_at", 2016-08-19 02:49:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acaz"], ["question_id", 1422], ["correct", false], ["created_at", 2016-08-19 02:49:32 UTC], ["updated_at", 2016-08-19 02:49:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 1422], ["correct", false], ["created_at", 2016-08-19 02:49:32 UTC], ["updated_at", 2016-08-19 02:49:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joquebede"], ["question_id", 1422], ["correct", false], ["created_at", 2016-08-19 02:49:32 UTC], ["updated_at", 2016-08-19 02:49:32 UTC]]  (142.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Roboão?"], ["created_at", 2016-08-19 02:49:32 UTC], ["updated_at", 2016-08-19 02:49:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1423], ["correct", true], ["created_at", 2016-08-19 02:49:32 UTC], ["updated_at", 2016-08-19 02:49:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1423], ["correct", false], ["created_at", 2016-08-19 02:49:32 UTC], ["updated_at", 2016-08-19 02:49:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adonias"], ["question_id", 1423], ["correct", false], ["created_at", 2016-08-19 02:49:32 UTC], ["updated_at", 2016-08-19 02:49:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acaz"], ["question_id", 1423], ["correct", false], ["created_at", 2016-08-19 02:49:32 UTC], ["updated_at", 2016-08-19 02:49:32 UTC]]  (175.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Salomão?"], ["created_at", 2016-08-19 02:49:33 UTC], ["updated_at", 2016-08-19 02:49:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1424], ["correct", true], ["created_at", 2016-08-19 02:49:33 UTC], ["updated_at", 2016-08-19 02:49:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel"], ["question_id", 1424], ["correct", false], ["created_at", 2016-08-19 02:49:33 UTC], ["updated_at", 2016-08-19 02:49:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 1424], ["correct", false], ["created_at", 2016-08-19 02:49:33 UTC], ["updated_at", 2016-08-19 02:49:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1424], ["correct", false], ["created_at", 2016-08-19 02:49:33 UTC], ["updated_at", 2016-08-19 02:49:33 UTC]]  (132.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Saul?"], ["created_at", 2016-08-19 02:49:33 UTC], ["updated_at", 2016-08-19 02:49:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quis"], ["question_id", 1425], ["correct", true], ["created_at", 2016-08-19 02:49:33 UTC], ["updated_at", 2016-08-19 02:49:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Safate"], ["question_id", 1425], ["correct", false], ["created_at", 2016-08-19 02:49:33 UTC], ["updated_at", 2016-08-19 02:49:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ido"], ["question_id", 1425], ["correct", false], ["created_at", 2016-08-19 02:49:33 UTC], ["updated_at", 2016-08-19 02:49:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amitai"], ["question_id", 1425], ["correct", false], ["created_at", 2016-08-19 02:49:33 UTC], ["updated_at", 2016-08-19 02:49:33 UTC]]  (135.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Zípora?"], ["created_at", 2016-08-19 02:49:33 UTC], ["updated_at", 2016-08-19 02:49:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jetro"], ["question_id", 1426], ["correct", true], ["created_at", 2016-08-19 02:49:33 UTC], ["updated_at", 2016-08-19 02:49:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joás"], ["question_id", 1426], ["correct", false], ["created_at", 2016-08-19 02:49:33 UTC], ["updated_at", 2016-08-19 02:49:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Beeri"], ["question_id", 1426], ["correct", false], ["created_at", 2016-08-19 02:49:33 UTC], ["updated_at", 2016-08-19 02:49:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josafá"], ["question_id", 1426], ["correct", false], ["created_at", 2016-08-19 02:49:33 UTC], ["updated_at", 2016-08-19 02:49:33 UTC]]  (191.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai do profeta Neemias?"], ["created_at", 2016-08-19 02:49:33 UTC], ["updated_at", 2016-08-19 02:49:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hacalias"], ["question_id", 1427], ["correct", true], ["created_at", 2016-08-19 02:49:33 UTC], ["updated_at", 2016-08-19 02:49:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seraías"], ["question_id", 1427], ["correct", false], ["created_at", 2016-08-19 02:49:33 UTC], ["updated_at", 2016-08-19 02:49:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mordecai"], ["question_id", 1427], ["correct", false], ["created_at", 2016-08-19 02:49:33 UTC], ["updated_at", 2016-08-19 02:49:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quedar"], ["question_id", 1427], ["correct", false], ["created_at", 2016-08-19 02:49:33 UTC], ["updated_at", 2016-08-19 02:49:33 UTC]]  (141.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai do profeta Oséias?"], ["created_at", 2016-08-19 02:49:33 UTC], ["updated_at", 2016-08-19 02:49:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Beeri"], ["question_id", 1428], ["correct", true], ["created_at", 2016-08-19 02:49:33 UTC], ["updated_at", 2016-08-19 02:49:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Petuel"], ["question_id", 1428], ["correct", false], ["created_at", 2016-08-19 02:49:33 UTC], ["updated_at", 2016-08-19 02:49:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mordecai"], ["question_id", 1428], ["correct", false], ["created_at", 2016-08-19 02:49:33 UTC], ["updated_at", 2016-08-19 02:49:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seraías"], ["question_id", 1428], ["correct", false], ["created_at", 2016-08-19 02:49:33 UTC], ["updated_at", 2016-08-19 02:49:33 UTC]]  (167.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai do profeta Sofonias?"], ["created_at", 2016-08-19 02:49:33 UTC], ["updated_at", 2016-08-19 02:49:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cusi"], ["question_id", 1429], ["correct", true], ["created_at", 2016-08-19 02:49:33 UTC], ["updated_at", 2016-08-19 02:49:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zebulom"], ["question_id", 1429], ["correct", false], ["created_at", 2016-08-19 02:49:33 UTC], ["updated_at", 2016-08-19 02:49:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aftali"], ["question_id", 1429], ["correct", false], ["created_at", 2016-08-19 02:49:33 UTC], ["updated_at", 2016-08-19 02:49:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Asser"], ["question_id", 1429], ["correct", false], ["created_at", 2016-08-19 02:49:33 UTC], ["updated_at", 2016-08-19 02:49:33 UTC]]  (141.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai do rei babilônico Belsazar?"], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 1430], ["correct", true], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 1430], ["correct", false], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiro"], ["question_id", 1430], ["correct", false], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belaquiel"], ["question_id", 1430], ["correct", false], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]]  (140.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai do rei Davi?"], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jessé"], ["question_id", 1431], ["correct", true], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Manassés"], ["question_id", 1431], ["correct", false], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obede"], ["question_id", 1431], ["correct", false], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 1431], ["correct", false], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]]  (132.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai do rei Jotão?"], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Azarias"], ["question_id", 1432], ["correct", true], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeroboão"], ["question_id", 1432], ["correct", false], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amazias"], ["question_id", 1432], ["correct", false], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeoás"], ["question_id", 1432], ["correct", false], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]]  (142.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai do rei Manassés?"], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ezequias"], ["question_id", 1433], ["correct", true], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 1433], ["correct", false], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 1433], ["correct", false], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Azarias"], ["question_id", 1433], ["correct", false], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]]  (142.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai dos líderes das 12 tribos de Israel?"], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 1434], ["correct", true], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 1434], ["correct", false], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1434], ["correct", false], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1434], ["correct", false], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]]  (142.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai dos que habitam em tendas e possuem gados?"], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jabal"], ["question_id", 1435], ["correct", true], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cão"], ["question_id", 1435], ["correct", false], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sete"], ["question_id", 1435], ["correct", false], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adão"], ["question_id", 1435], ["correct", false], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]]  (141.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai dos que tocam harpa e flauta?"], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jubal"], ["question_id", 1436], ["correct", true], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jabal"], ["question_id", 1436], ["correct", false], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jocsã"], ["question_id", 1436], ["correct", false], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jisbaque"], ["question_id", 1436], ["correct", false], ["created_at", 2016-08-19 02:49:34 UTC], ["updated_at", 2016-08-19 02:49:34 UTC]]  (150.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai que se deitou com suas próprias filhas?"], ["created_at", 2016-08-19 02:49:35 UTC], ["updated_at", 2016-08-19 02:49:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ló"], ["question_id", 1437], ["correct", true], ["created_at", 2016-08-19 02:49:35 UTC], ["updated_at", 2016-08-19 02:49:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1437], ["correct", false], ["created_at", 2016-08-19 02:49:35 UTC], ["updated_at", 2016-08-19 02:49:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 1437], ["correct", false], ["created_at", 2016-08-19 02:49:35 UTC], ["updated_at", 2016-08-19 02:49:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 1437], ["correct", false], ["created_at", 2016-08-19 02:49:35 UTC], ["updated_at", 2016-08-19 02:49:35 UTC]]  (133.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o patriarca do Velho Testamento que quase sacrificou seu filho no Monte Moriá?"], ["created_at", 2016-08-19 02:49:35 UTC], ["updated_at", 2016-08-19 02:49:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1438], ["correct", true], ["created_at", 2016-08-19 02:49:35 UTC], ["updated_at", 2016-08-19 02:49:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1438], ["correct", false], ["created_at", 2016-08-19 02:49:35 UTC], ["updated_at", 2016-08-19 02:49:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 1438], ["correct", false], ["created_at", 2016-08-19 02:49:35 UTC], ["updated_at", 2016-08-19 02:49:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 1438], ["correct", false], ["created_at", 2016-08-19 02:49:35 UTC], ["updated_at", 2016-08-19 02:49:35 UTC]]  (126.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o primeiro homem?"], ["created_at", 2016-08-19 02:49:35 UTC], ["updated_at", 2016-08-19 02:49:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adão"], ["question_id", 1439], ["correct", true], ["created_at", 2016-08-19 02:49:35 UTC], ["updated_at", 2016-08-19 02:49:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matusalém"], ["question_id", 1439], ["correct", false], ["created_at", 2016-08-19 02:49:35 UTC], ["updated_at", 2016-08-19 02:49:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abel"], ["question_id", 1439], ["correct", false], ["created_at", 2016-08-19 02:49:35 UTC], ["updated_at", 2016-08-19 02:49:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cão"], ["question_id", 1439], ["correct", false], ["created_at", 2016-08-19 02:49:35 UTC], ["updated_at", 2016-08-19 02:49:35 UTC]]  (125.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o primeiro rei de Israel?"], ["created_at", 2016-08-19 02:49:35 UTC], ["updated_at", 2016-08-19 02:49:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 1440], ["correct", true], ["created_at", 2016-08-19 02:49:35 UTC], ["updated_at", 2016-08-19 02:49:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1440], ["correct", false], ["created_at", 2016-08-19 02:49:35 UTC], ["updated_at", 2016-08-19 02:49:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judá"], ["question_id", 1440], ["correct", false], ["created_at", 2016-08-19 02:49:35 UTC], ["updated_at", 2016-08-19 02:49:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1440], ["correct", false], ["created_at", 2016-08-19 02:49:35 UTC], ["updated_at", 2016-08-19 02:49:35 UTC]]  (125.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o primeiro tradutor da Bíblia para a língua do povo alemão?\n1,"], ["created_at", 2016-08-19 02:49:35 UTC], ["updated_at", 2016-08-19 02:49:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Martinho Lutero"], ["question_id", 1441], ["correct", true], ["created_at", 2016-08-19 02:49:35 UTC], ["updated_at", 2016-08-19 02:49:35 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Wycliffe"], ["question_id", 1441], ["correct", false], ["created_at", 2016-08-19 02:49:35 UTC], ["updated_at", 2016-08-19 02:49:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "John Esser"], ["question_id", 1441], ["correct", false], ["created_at", 2016-08-19 02:49:35 UTC], ["updated_at", 2016-08-19 02:49:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "William R. Wencheister"], ["question_id", 1441], ["correct", false], ["created_at", 2016-08-19 02:49:35 UTC], ["updated_at", 2016-08-19 02:49:35 UTC]]  (145.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o rei da Babilônia que viu uma mão sem corpo escrevendo na parede?"], ["created_at", 2016-08-19 02:49:35 UTC], ["updated_at", 2016-08-19 02:49:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belsazar"], ["question_id", 1442], ["correct", true], ["created_at", 2016-08-19 02:49:35 UTC], ["updated_at", 2016-08-19 02:49:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 1442], ["correct", false], ["created_at", 2016-08-19 02:49:35 UTC], ["updated_at", 2016-08-19 02:49:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 1442], ["correct", false], ["created_at", 2016-08-19 02:49:35 UTC], ["updated_at", 2016-08-19 02:49:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bezalel"], ["question_id", 1442], ["correct", false], ["created_at", 2016-08-19 02:49:35 UTC], ["updated_at", 2016-08-19 02:49:35 UTC]]  (288.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o sogro de Maria, mãe de Jesus?"], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 1443], ["correct", true], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 1443], ["correct", false], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias"], ["question_id", 1443], ["correct", false], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jetro"], ["question_id", 1443], ["correct", false], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]]  (116.0ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o tio-avô de Raquel e Léia, esposas de Jacó?"], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1444], ["correct", true], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noé"], ["question_id", 1444], ["correct", false], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adão"], ["question_id", 1444], ["correct", false], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1444], ["correct", false], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]]  (119.5ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o último dos juízes de Israel?"], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel"], ["question_id", 1445], ["correct", true], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Levi"], ["question_id", 1445], ["correct", false], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matusalém"], ["question_id", 1445], ["correct", false], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 1445], ["correct", false], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]]  (128.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o último rei que reinou o reino do Norte?"], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 1446], ["correct", true], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jedidias"], ["question_id", 1446], ["correct", false], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeoás"], ["question_id", 1446], ["correct", false], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 1446], ["correct", false], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]]  (125.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o último sobrevivente da casa de Saul?"], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mefibosete"], ["question_id", 1447], ["correct", true], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jônatas"], ["question_id", 1447], ["correct", false], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anias"], ["question_id", 1447], ["correct", false], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1447], ["correct", false], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]]  (127.4ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi obrigado a girar um moinho após seu prisionamento?"], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 1448], ["correct", true], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 1448], ["correct", false], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 1448], ["correct", false], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 1448], ["correct", false], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]]  (128.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi possuído por Satanás logo após ter recebido das mãos de Jesus um pedaço de pão?"], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas Iscariotes"], ["question_id", 1449], ["correct", true], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 1449], ["correct", false], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 1449], ["correct", false], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lázaro"], ["question_id", 1449], ["correct", false], ["created_at", 2016-08-19 02:49:36 UTC], ["updated_at", 2016-08-19 02:49:36 UTC]]  (125.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi proclamado publicamente rei na cidade de Gilgal?"], ["created_at", 2016-08-19 02:49:37 UTC], ["updated_at", 2016-08-19 02:49:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 1450], ["correct", true], ["created_at", 2016-08-19 02:49:37 UTC], ["updated_at", 2016-08-19 02:49:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1450], ["correct", false], ["created_at", 2016-08-19 02:49:37 UTC], ["updated_at", 2016-08-19 02:49:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 1450], ["correct", false], ["created_at", 2016-08-19 02:49:37 UTC], ["updated_at", 2016-08-19 02:49:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1450], ["correct", false], ["created_at", 2016-08-19 02:49:37 UTC], ["updated_at", 2016-08-19 02:49:37 UTC]]  (133.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi professor do apóstolo Paulo?"], ["created_at", 2016-08-19 02:49:37 UTC], ["updated_at", 2016-08-19 02:49:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gamaliel"], ["question_id", 1451], ["correct", true], ["created_at", 2016-08-19 02:49:37 UTC], ["updated_at", 2016-08-19 02:49:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salatiel"], ["question_id", 1451], ["correct", false], ["created_at", 2016-08-19 02:49:37 UTC], ["updated_at", 2016-08-19 02:49:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sebastião"], ["question_id", 1451], ["correct", false], ["created_at", 2016-08-19 02:49:37 UTC], ["updated_at", 2016-08-19 02:49:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elizael"], ["question_id", 1451], ["correct", false], ["created_at", 2016-08-19 02:49:37 UTC], ["updated_at", 2016-08-19 02:49:37 UTC]]  (141.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi rei e sacerdote ao mesmo tempo?"], ["created_at", 2016-08-19 02:49:37 UTC], ["updated_at", 2016-08-19 02:49:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Melquisedeque"], ["question_id", 1452], ["correct", true], ["created_at", 2016-08-19 02:49:37 UTC], ["updated_at", 2016-08-19 02:49:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 1452], ["correct", false], ["created_at", 2016-08-19 02:49:37 UTC], ["updated_at", 2016-08-19 02:49:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1452], ["correct", false], ["created_at", 2016-08-19 02:49:37 UTC], ["updated_at", 2016-08-19 02:49:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1452], ["correct", false], ["created_at", 2016-08-19 02:49:37 UTC], ["updated_at", 2016-08-19 02:49:37 UTC]]  (142.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi sepultado por Deus em um vale?"], ["created_at", 2016-08-19 02:49:37 UTC], ["updated_at", 2016-08-19 02:49:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1453], ["correct", true], ["created_at", 2016-08-19 02:49:37 UTC], ["updated_at", 2016-08-19 02:49:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 1453], ["correct", false], ["created_at", 2016-08-19 02:49:37 UTC], ["updated_at", 2016-08-19 02:49:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 1453], ["correct", false], ["created_at", 2016-08-19 02:49:37 UTC], ["updated_at", 2016-08-19 02:49:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Enoque"], ["question_id", 1453], ["correct", false], ["created_at", 2016-08-19 02:49:37 UTC], ["updated_at", 2016-08-19 02:49:37 UTC]]  (159.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi tocado por um milagre de Jesus e estava sendo ameaçado de morte pelos sumos sacerdotes?"], ["created_at", 2016-08-19 02:49:37 UTC], ["updated_at", 2016-08-19 02:49:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lázaro"], ["question_id", 1454], ["correct", true], ["created_at", 2016-08-19 02:49:37 UTC], ["updated_at", 2016-08-19 02:49:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nicodemos"], ["question_id", 1454], ["correct", false], ["created_at", 2016-08-19 02:49:37 UTC], ["updated_at", 2016-08-19 02:49:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bartimeu"], ["question_id", 1454], ["correct", false], ["created_at", 2016-08-19 02:49:37 UTC], ["updated_at", 2016-08-19 02:49:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria Madalena"], ["question_id", 1454], ["correct", false], ["created_at", 2016-08-19 02:49:37 UTC], ["updated_at", 2016-08-19 02:49:37 UTC]]  (208.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi transformada em estátua de sal, ao olhar para trás?"], ["created_at", 2016-08-19 02:49:37 UTC], ["updated_at", 2016-08-19 02:49:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Esposa de Ló"], ["question_id", 1455], ["correct", true], ["created_at", 2016-08-19 02:49:37 UTC], ["updated_at", 2016-08-19 02:49:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Filha de Ló"], ["question_id", 1455], ["correct", false], ["created_at", 2016-08-19 02:49:37 UTC], ["updated_at", 2016-08-19 02:49:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Sobrinha de Ló"], ["question_id", 1455], ["correct", false], ["created_at", 2016-08-19 02:49:37 UTC], ["updated_at", 2016-08-19 02:49:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Irmã de Ló"], ["question_id", 1455], ["correct", false], ["created_at", 2016-08-19 02:49:37 UTC], ["updated_at", 2016-08-19 02:49:37 UTC]]  (166.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi um dos filhos de Anrão?"], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1456], ["correct", true], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1456], ["correct", false], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliaquim"], ["question_id", 1456], ["correct", false], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Urias"], ["question_id", 1456], ["correct", false], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]]  (159.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi um dos filhos do rei Davi?"], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1457], ["correct", true], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 1457], ["correct", false], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel"], ["question_id", 1457], ["correct", false], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Simeão"], ["question_id", 1457], ["correct", false], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]]  (134.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi vendido pelos seus irmãos ao preço de 20 moedas de prata?"], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 1458], ["correct", true], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 1458], ["correct", false], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 1458], ["correct", false], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sete"], ["question_id", 1458], ["correct", false], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]]  (125.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi visitar Maria para dizer-lhe que ela havia sido escolhida para ser a mãe de Jesus?"], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Anjo"], ["question_id", 1459], ["correct", true], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Pastor de Ovelhas"], ["question_id", 1459], ["correct", false], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Rei Mago"], ["question_id", 1459], ["correct", false], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Próprio Jesus, Em Sonho"], ["question_id", 1459], ["correct", false], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]]  (125.9ms) commit transaction  (0.1ms) begin transaction  (33.6ms) SELECT COUNT(*) FROM "quizzes_questions" SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi, cujo significado de seu nome é \"pacífico\"?"], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1460], ["correct", true], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1460], ["correct", false], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 1460], ["correct", false], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 1460], ["correct", false], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]]  (125.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foram as primeiras pessoas a ouvirem sobre o nascimento de Jesus?"], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Pastores"], ["question_id", 1461], ["correct", true], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Reis Magos"], ["question_id", 1461], ["correct", false], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes, O Grande"], ["question_id", 1461], ["correct", false], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Família do Proprietário do Estábulo"], ["question_id", 1461], ["correct", false], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]]  (133.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foram os pais de Benjamim?"], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó e Raquel"], ["question_id", 1462], ["correct", true], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó e Rebeca"], ["question_id", 1462], ["correct", false], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó e Sara"], ["question_id", 1462], ["correct", false], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó e Agar"], ["question_id", 1462], ["correct", false], ["created_at", 2016-08-19 02:49:38 UTC], ["updated_at", 2016-08-19 02:49:38 UTC]]  (158.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foram os pais de Jeroboão?"], ["created_at", 2016-08-19 02:49:39 UTC], ["updated_at", 2016-08-19 02:49:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão e Maacá"], ["question_id", 1463], ["correct", true], ["created_at", 2016-08-19 02:49:39 UTC], ["updated_at", 2016-08-19 02:49:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão e Dalila"], ["question_id", 1463], ["correct", false], ["created_at", 2016-08-19 02:49:39 UTC], ["updated_at", 2016-08-19 02:49:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assuero e Sabá"], ["question_id", 1463], ["correct", false], ["created_at", 2016-08-19 02:49:39 UTC], ["updated_at", 2016-08-19 02:49:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adonias e Bate-seba"], ["question_id", 1463], ["correct", false], ["created_at", 2016-08-19 02:49:39 UTC], ["updated_at", 2016-08-19 02:49:39 UTC]]  (191.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foram os pais de João Batista?"], ["created_at", 2016-08-19 02:49:39 UTC], ["updated_at", 2016-08-19 02:49:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias e Isabel"], ["question_id", 1464], ["correct", true], ["created_at", 2016-08-19 02:49:39 UTC], ["updated_at", 2016-08-19 02:49:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zebedeu e Salomé"], ["question_id", 1464], ["correct", false], ["created_at", 2016-08-19 02:49:39 UTC], ["updated_at", 2016-08-19 02:49:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe e Jezabel"], ["question_id", 1464], ["correct", false], ["created_at", 2016-08-19 02:49:39 UTC], ["updated_at", 2016-08-19 02:49:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José A Maria"], ["question_id", 1464], ["correct", false], ["created_at", 2016-08-19 02:49:39 UTC], ["updated_at", 2016-08-19 02:49:39 UTC]]  (150.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foram os pais de José, do Egito?"], ["created_at", 2016-08-19 02:49:39 UTC], ["updated_at", 2016-08-19 02:49:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó e Raquel"], ["question_id", 1465], ["correct", true], ["created_at", 2016-08-19 02:49:39 UTC], ["updated_at", 2016-08-19 02:49:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão e Sara"], ["question_id", 1465], ["correct", false], ["created_at", 2016-08-19 02:49:39 UTC], ["updated_at", 2016-08-19 02:49:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão e Agar"], ["question_id", 1465], ["correct", false], ["created_at", 2016-08-19 02:49:39 UTC], ["updated_at", 2016-08-19 02:49:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque e Rebeca"], ["question_id", 1465], ["correct", false], ["created_at", 2016-08-19 02:49:39 UTC], ["updated_at", 2016-08-19 02:49:39 UTC]]  (133.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foram os pais de Roboão?"], ["created_at", 2016-08-19 02:49:39 UTC], ["updated_at", 2016-08-19 02:49:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão e Maacá"], ["question_id", 1466], ["correct", true], ["created_at", 2016-08-19 02:49:39 UTC], ["updated_at", 2016-08-19 02:49:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque e Rebeca"], ["question_id", 1466], ["correct", false], ["created_at", 2016-08-19 02:49:39 UTC], ["updated_at", 2016-08-19 02:49:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó e Raquel"], ["question_id", 1466], ["correct", false], ["created_at", 2016-08-19 02:49:39 UTC], ["updated_at", 2016-08-19 02:49:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias e Jezabel"], ["question_id", 1466], ["correct", false], ["created_at", 2016-08-19 02:49:39 UTC], ["updated_at", 2016-08-19 02:49:39 UTC]]  (191.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem formou a primeira orquestra?"], ["created_at", 2016-08-19 02:49:39 UTC], ["updated_at", 2016-08-19 02:49:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1467], ["correct", true], ["created_at", 2016-08-19 02:49:39 UTC], ["updated_at", 2016-08-19 02:49:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 1467], ["correct", false], ["created_at", 2016-08-19 02:49:39 UTC], ["updated_at", 2016-08-19 02:49:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1467], ["correct", false], ["created_at", 2016-08-19 02:49:39 UTC], ["updated_at", 2016-08-19 02:49:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 1467], ["correct", false], ["created_at", 2016-08-19 02:49:39 UTC], ["updated_at", 2016-08-19 02:49:39 UTC]]  (158.2ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem fugiu de Jerusalém quando Absalão tentou tomar o trono à força?"], ["created_at", 2016-08-19 02:49:39 UTC], ["updated_at", 2016-08-19 02:49:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1468], ["correct", true], ["created_at", 2016-08-19 02:49:39 UTC], ["updated_at", 2016-08-19 02:49:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1468], ["correct", false], ["created_at", 2016-08-19 02:49:39 UTC], ["updated_at", 2016-08-19 02:49:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zedequias"], ["question_id", 1468], ["correct", false], ["created_at", 2016-08-19 02:49:39 UTC], ["updated_at", 2016-08-19 02:49:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josias"], ["question_id", 1468], ["correct", false], ["created_at", 2016-08-19 02:49:39 UTC], ["updated_at", 2016-08-19 02:49:39 UTC]]  (124.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ganhou uma \"túnica de muitas cores\"?"], ["created_at", 2016-08-19 02:49:40 UTC], ["updated_at", 2016-08-19 02:49:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 1469], ["correct", true], ["created_at", 2016-08-19 02:49:40 UTC], ["updated_at", 2016-08-19 02:49:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 1469], ["correct", false], ["created_at", 2016-08-19 02:49:40 UTC], ["updated_at", 2016-08-19 02:49:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 1469], ["correct", false], ["created_at", 2016-08-19 02:49:40 UTC], ["updated_at", 2016-08-19 02:49:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 1469], ["correct", false], ["created_at", 2016-08-19 02:49:40 UTC], ["updated_at", 2016-08-19 02:49:40 UTC]]  (174.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem governava o reino de Judá quando Nabucodonosor atacou Jerusalém pela 2ª vez?"], ["created_at", 2016-08-19 02:49:40 UTC], ["updated_at", 2016-08-19 02:49:40 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeoaquim"], ["question_id", 1470], ["correct", true], ["created_at", 2016-08-19 02:49:40 UTC], ["updated_at", 2016-08-19 02:49:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zedequias"], ["question_id", 1470], ["correct", false], ["created_at", 2016-08-19 02:49:40 UTC], ["updated_at", 2016-08-19 02:49:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 1470], ["correct", false], ["created_at", 2016-08-19 02:49:40 UTC], ["updated_at", 2016-08-19 02:49:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josias"], ["question_id", 1470], ["correct", false], ["created_at", 2016-08-19 02:49:40 UTC], ["updated_at", 2016-08-19 02:49:40 UTC]]  (166.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem gritou \"Crucifica-o!\" após Pôncio Pilatos ter apresentado Jesus?"], ["created_at", 2016-08-19 02:49:40 UTC], ["updated_at", 2016-08-19 02:49:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Povo Judeu"], ["question_id", 1471], ["correct", true], ["created_at", 2016-08-19 02:49:40 UTC], ["updated_at", 2016-08-19 02:49:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Sacerdotes do Templo"], ["question_id", 1471], ["correct", false], ["created_at", 2016-08-19 02:49:40 UTC], ["updated_at", 2016-08-19 02:49:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Fariseus"], ["question_id", 1471], ["correct", false], ["created_at", 2016-08-19 02:49:40 UTC], ["updated_at", 2016-08-19 02:49:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Soldados Romanos"], ["question_id", 1471], ["correct", false], ["created_at", 2016-08-19 02:49:40 UTC], ["updated_at", 2016-08-19 02:49:40 UTC]]  (141.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem havia dado a Daniel o nome de Beltesaazar?"], ["created_at", 2016-08-19 02:49:40 UTC], ["updated_at", 2016-08-19 02:49:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Comandantes de Babilônia"], ["question_id", 1472], ["correct", true], ["created_at", 2016-08-19 02:49:40 UTC], ["updated_at", 2016-08-19 02:49:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Príncipe do Egito"], ["question_id", 1472], ["correct", false], ["created_at", 2016-08-19 02:49:40 UTC], ["updated_at", 2016-08-19 02:49:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Faraó do Egito"], ["question_id", 1472], ["correct", false], ["created_at", 2016-08-19 02:49:40 UTC], ["updated_at", 2016-08-19 02:49:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei Tiro"], ["question_id", 1472], ["correct", false], ["created_at", 2016-08-19 02:49:40 UTC], ["updated_at", 2016-08-19 02:49:40 UTC]]  (141.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem interpretou os sonhos do Faraó do Egito?"], ["created_at", 2016-08-19 02:49:40 UTC], ["updated_at", 2016-08-19 02:49:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 1473], ["correct", true], ["created_at", 2016-08-19 02:49:40 UTC], ["updated_at", 2016-08-19 02:49:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Padeiro do Faraó"], ["question_id", 1473], ["correct", false], ["created_at", 2016-08-19 02:49:40 UTC], ["updated_at", 2016-08-19 02:49:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomé"], ["question_id", 1473], ["correct", false], ["created_at", 2016-08-19 02:49:40 UTC], ["updated_at", 2016-08-19 02:49:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Profetisa Ana"], ["question_id", 1473], ["correct", false], ["created_at", 2016-08-19 02:49:40 UTC], ["updated_at", 2016-08-19 02:49:40 UTC]]  (141.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem irou-se pelo fato de ter sido construído um altar de sacrifícios para o deus Moleque?"], ["created_at", 2016-08-19 02:49:40 UTC], ["updated_at", 2016-08-19 02:49:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josias"], ["question_id", 1474], ["correct", true], ["created_at", 2016-08-19 02:49:40 UTC], ["updated_at", 2016-08-19 02:49:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 1474], ["correct", false], ["created_at", 2016-08-19 02:49:40 UTC], ["updated_at", 2016-08-19 02:49:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 1474], ["correct", false], ["created_at", 2016-08-19 02:49:40 UTC], ["updated_at", 2016-08-19 02:49:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 1474], ["correct", false], ["created_at", 2016-08-19 02:49:40 UTC], ["updated_at", 2016-08-19 02:49:40 UTC]]  (151.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem Isaque abençoou por engano, em lugar de Esaú?"], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 1475], ["correct", true], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 1475], ["correct", false], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 1475], ["correct", false], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 1475], ["correct", false], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]]  (133.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem Jesus disse que iria gritar se acaso o povo ficasse em silêncio pela ocasião de sua entrada triunfal em Jerusalém?"], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Pedras"], ["question_id", 1476], ["correct", true], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Mudos"], ["question_id", 1476], ["correct", false], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Pássaros"], ["question_id", 1476], ["correct", false], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Árvores"], ["question_id", 1476], ["correct", false], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]]  (126.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem Jesus expulsou do Templo?"], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Mercadores"], ["question_id", 1477], ["correct", true], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Escribas"], ["question_id", 1477], ["correct", false], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Mendigos"], ["question_id", 1477], ["correct", false], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Líderes Religiosos"], ["question_id", 1477], ["correct", false], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]]  (134.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem jogou Jonas no mar?"], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Marinheiros"], ["question_id", 1478], ["correct", true], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Peixe Grande"], ["question_id", 1478], ["correct", false], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Rajada de Vento Forte"], ["question_id", 1478], ["correct", false], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Naufrágio do Navio Que Navegava"], ["question_id", 1478], ["correct", false], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]]  (133.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem levou cativo o reino norte de Israel?"], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assíria"], ["question_id", 1479], ["correct", true], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egito"], ["question_id", 1479], ["correct", false], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônia"], ["question_id", 1479], ["correct", false], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenícia"], ["question_id", 1479], ["correct", false], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]]  (108.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem levou seu filho de 12 anos a Jerusalém para celebrar a Páscoa dos judeus?"], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José e Maria"], ["question_id", 1480], ["correct", true], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elcana e Ana"], ["question_id", 1480], ["correct", false], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias e Isabel"], ["question_id", 1480], ["correct", false], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José de Arimatéia e Priscila"], ["question_id", 1480], ["correct", false], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]]  (158.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem libertou o apóstolo Pedro da prisão quando ele foi acorrentado entre 2 guardas?"], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Anjo"], ["question_id", 1481], ["correct", true], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 1481], ["correct", false], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes, O Grande"], ["question_id", 1481], ["correct", false], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Próprio Imperador Romano"], ["question_id", 1481], ["correct", false], ["created_at", 2016-08-19 02:49:41 UTC], ["updated_at", 2016-08-19 02:49:41 UTC]]  (117.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem liderou o povo israelita durante sua libertação do cativeiro no Egito?"], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1482], ["correct", true], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 1482], ["correct", false], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 1482], ["correct", false], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José do Egito"], ["question_id", 1482], ["correct", false], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]]  (133.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem mandou açoitar Jesus?"], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 1483], ["correct", true], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sacerdotes do Templo"], ["question_id", 1483], ["correct", false], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fariseus"], ["question_id", 1483], ["correct", false], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Multidão Que Gritava"], ["question_id", 1483], ["correct", false], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]]  (141.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem mandou decapitar João Batista?"], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes"], ["question_id", 1484], ["correct", true], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carrasco da Prisão"], ["question_id", 1484], ["correct", false], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodias"], ["question_id", 1484], ["correct", false], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mãe de Herodias"], ["question_id", 1484], ["correct", false], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]]  (141.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem mandou escrever uma placa para ser pregada na cruz de Jesus?"], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 1485], ["correct", true], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Agripa"], ["question_id", 1485], ["correct", false], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes, O Grande"], ["question_id", 1485], ["correct", false], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sumo Sacerdote Ananias"], ["question_id", 1485], ["correct", false], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]]  (175.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem mandou executar à morte o apóstolo Tiago?"], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Agripa"], ["question_id", 1486], ["correct", true], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes, O Grande"], ["question_id", 1486], ["correct", false], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 1486], ["correct", false], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodias"], ["question_id", 1486], ["correct", false], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]]  (150.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem mandou matar os profetas de Baal?"], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 1487], ["correct", true], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 1487], ["correct", false], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes"], ["question_id", 1487], ["correct", false], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 1487], ["correct", false], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]]  (141.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem mandou prender Nabote acusando-o de blasfêmia, apenas para poder tomar posse da vinha que ele tinha?"], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rainha Jezabel"], ["question_id", 1488], ["correct", true], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dalila"], ["question_id", 1488], ["correct", false], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei Acaz"], ["question_id", 1488], ["correct", false], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei Acazias"], ["question_id", 1488], ["correct", false], ["created_at", 2016-08-19 02:49:42 UTC], ["updated_at", 2016-08-19 02:49:42 UTC]]  (133.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem mandou que todos os bebês hebreus que nascessem fosse mortos?"], ["created_at", 2016-08-19 02:49:43 UTC], ["updated_at", 2016-08-19 02:49:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Faraó"], ["question_id", 1489], ["correct", true], ["created_at", 2016-08-19 02:49:43 UTC], ["updated_at", 2016-08-19 02:49:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei Nabucodonosor"], ["question_id", 1489], ["correct", false], ["created_at", 2016-08-19 02:49:43 UTC], ["updated_at", 2016-08-19 02:49:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei Dario"], ["question_id", 1489], ["correct", false], ["created_at", 2016-08-19 02:49:43 UTC], ["updated_at", 2016-08-19 02:49:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Antipas"], ["question_id", 1489], ["correct", false], ["created_at", 2016-08-19 02:49:43 UTC], ["updated_at", 2016-08-19 02:49:43 UTC]]  (159.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem mandou tomar um jumento emprestado para Sua entrada em Jerusalém?"], ["created_at", 2016-08-19 02:49:43 UTC], ["updated_at", 2016-08-19 02:49:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 1490], ["correct", true], ["created_at", 2016-08-19 02:49:43 UTC], ["updated_at", 2016-08-19 02:49:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 1490], ["correct", false], ["created_at", 2016-08-19 02:49:43 UTC], ["updated_at", 2016-08-19 02:49:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caifás"], ["question_id", 1490], ["correct", false], ["created_at", 2016-08-19 02:49:43 UTC], ["updated_at", 2016-08-19 02:49:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Safira"], ["question_id", 1490], ["correct", false], ["created_at", 2016-08-19 02:49:43 UTC], ["updated_at", 2016-08-19 02:49:43 UTC]]  (191.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem mantinha o povo israelita mantido em cativeiro, durante os dias de Moisés?"], ["created_at", 2016-08-19 02:49:43 UTC], ["updated_at", 2016-08-19 02:49:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egípcios"], ["question_id", 1491], ["correct", true], ["created_at", 2016-08-19 02:49:43 UTC], ["updated_at", 2016-08-19 02:49:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenícios"], ["question_id", 1491], ["correct", false], ["created_at", 2016-08-19 02:49:43 UTC], ["updated_at", 2016-08-19 02:49:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônicos"], ["question_id", 1491], ["correct", false], ["created_at", 2016-08-19 02:49:43 UTC], ["updated_at", 2016-08-19 02:49:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assírios"], ["question_id", 1491], ["correct", false], ["created_at", 2016-08-19 02:49:43 UTC], ["updated_at", 2016-08-19 02:49:43 UTC]]  (132.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem matou 1.000 filisteus com apenas a queixada de um jumento?"], ["created_at", 2016-08-19 02:49:43 UTC], ["updated_at", 2016-08-19 02:49:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 1492], ["correct", true], ["created_at", 2016-08-19 02:49:43 UTC], ["updated_at", 2016-08-19 02:49:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1492], ["correct", false], ["created_at", 2016-08-19 02:49:43 UTC], ["updated_at", 2016-08-19 02:49:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Golias"], ["question_id", 1492], ["correct", false], ["created_at", 2016-08-19 02:49:43 UTC], ["updated_at", 2016-08-19 02:49:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1492], ["correct", false], ["created_at", 2016-08-19 02:49:43 UTC], ["updated_at", 2016-08-19 02:49:43 UTC]]  (133.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem matou o gigante filisteu que tinha 12 dedos nas mãos e 12 dedos nos pés?"], ["created_at", 2016-08-19 02:49:43 UTC], ["updated_at", 2016-08-19 02:49:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jônatas"], ["question_id", 1493], ["correct", true], ["created_at", 2016-08-19 02:49:43 UTC], ["updated_at", 2016-08-19 02:49:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1493], ["correct", false], ["created_at", 2016-08-19 02:49:43 UTC], ["updated_at", 2016-08-19 02:49:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 1493], ["correct", false], ["created_at", 2016-08-19 02:49:43 UTC], ["updated_at", 2016-08-19 02:49:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 1493], ["correct", false], ["created_at", 2016-08-19 02:49:43 UTC], ["updated_at", 2016-08-19 02:49:43 UTC]]  (124.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem matou o rebelde Absalão que tencionava tomar à força o reino de Davi?"], ["created_at", 2016-08-19 02:49:43 UTC], ["updated_at", 2016-08-19 02:49:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joabe"], ["question_id", 1494], ["correct", true], ["created_at", 2016-08-19 02:49:43 UTC], ["updated_at", 2016-08-19 02:49:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joquebede"], ["question_id", 1494], ["correct", false], ["created_at", 2016-08-19 02:49:43 UTC], ["updated_at", 2016-08-19 02:49:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zedequias"], ["question_id", 1494], ["correct", false], ["created_at", 2016-08-19 02:49:43 UTC], ["updated_at", 2016-08-19 02:49:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1494], ["correct", false], ["created_at", 2016-08-19 02:49:43 UTC], ["updated_at", 2016-08-19 02:49:43 UTC]]  (141.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem matou o rei assírio Senaqueribe?"], ["created_at", 2016-08-19 02:49:44 UTC], ["updated_at", 2016-08-19 02:49:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Próprios Filhos"], ["question_id", 1495], ["correct", true], ["created_at", 2016-08-19 02:49:44 UTC], ["updated_at", 2016-08-19 02:49:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Próprio Pai"], ["question_id", 1495], ["correct", false], ["created_at", 2016-08-19 02:49:44 UTC], ["updated_at", 2016-08-19 02:49:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Própria Mãe"], ["question_id", 1495], ["correct", false], ["created_at", 2016-08-19 02:49:44 UTC], ["updated_at", 2016-08-19 02:49:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Própria Esposa"], ["question_id", 1495], ["correct", false], ["created_at", 2016-08-19 02:49:44 UTC], ["updated_at", 2016-08-19 02:49:44 UTC]]  (151.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem matou seu irmão enquanto o beijava?"], ["created_at", 2016-08-19 02:49:44 UTC], ["updated_at", 2016-08-19 02:49:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joabe"], ["question_id", 1496], ["correct", true], ["created_at", 2016-08-19 02:49:44 UTC], ["updated_at", 2016-08-19 02:49:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eleazar"], ["question_id", 1496], ["correct", false], ["created_at", 2016-08-19 02:49:44 UTC], ["updated_at", 2016-08-19 02:49:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Simei"], ["question_id", 1496], ["correct", false], ["created_at", 2016-08-19 02:49:44 UTC], ["updated_at", 2016-08-19 02:49:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zinri"], ["question_id", 1496], ["correct", false], ["created_at", 2016-08-19 02:49:44 UTC], ["updated_at", 2016-08-19 02:49:44 UTC]]  (124.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem matou um egípcio pelo fato deste estar surrando um hebreu?"], ["created_at", 2016-08-19 02:49:44 UTC], ["updated_at", 2016-08-19 02:49:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1497], ["correct", true], ["created_at", 2016-08-19 02:49:44 UTC], ["updated_at", 2016-08-19 02:49:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 1497], ["correct", false], ["created_at", 2016-08-19 02:49:44 UTC], ["updated_at", 2016-08-19 02:49:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Potifar"], ["question_id", 1497], ["correct", false], ["created_at", 2016-08-19 02:49:44 UTC], ["updated_at", 2016-08-19 02:49:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Próprio Faraó"], ["question_id", 1497], ["correct", false], ["created_at", 2016-08-19 02:49:44 UTC], ["updated_at", 2016-08-19 02:49:44 UTC]]  (124.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem matou um leão e um urso com as mãos nuas?"], ["created_at", 2016-08-19 02:49:44 UTC], ["updated_at", 2016-08-19 02:49:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1498], ["correct", true], ["created_at", 2016-08-19 02:49:44 UTC], ["updated_at", 2016-08-19 02:49:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1498], ["correct", false], ["created_at", 2016-08-19 02:49:44 UTC], ["updated_at", 2016-08-19 02:49:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 1498], ["correct", false], ["created_at", 2016-08-19 02:49:44 UTC], ["updated_at", 2016-08-19 02:49:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 1498], ["correct", false], ["created_at", 2016-08-19 02:49:44 UTC], ["updated_at", 2016-08-19 02:49:44 UTC]]  (175.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem morreu aos 110 anos de idade, quando então foi embalsamado e mumificado?"], ["created_at", 2016-08-19 02:49:44 UTC], ["updated_at", 2016-08-19 02:49:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José do Egito"], ["question_id", 1499], ["correct", true], ["created_at", 2016-08-19 02:49:44 UTC], ["updated_at", 2016-08-19 02:49:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 1499], ["correct", false], ["created_at", 2016-08-19 02:49:44 UTC], ["updated_at", 2016-08-19 02:49:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Potifar"], ["question_id", 1499], ["correct", false], ["created_at", 2016-08-19 02:49:44 UTC], ["updated_at", 2016-08-19 02:49:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rúben"], ["question_id", 1499], ["correct", false], ["created_at", 2016-08-19 02:49:44 UTC], ["updated_at", 2016-08-19 02:49:44 UTC]]  (208.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem morreu de parto ao nascer-lhe o segundo filho?"], ["created_at", 2016-08-19 02:49:44 UTC], ["updated_at", 2016-08-19 02:49:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Raquel"], ["question_id", 1500], ["correct", true], ["created_at", 2016-08-19 02:49:44 UTC], ["updated_at", 2016-08-19 02:49:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 1500], ["correct", false], ["created_at", 2016-08-19 02:49:44 UTC], ["updated_at", 2016-08-19 02:49:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeoseba"], ["question_id", 1500], ["correct", false], ["created_at", 2016-08-19 02:49:44 UTC], ["updated_at", 2016-08-19 02:49:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 1500], ["correct", false], ["created_at", 2016-08-19 02:49:44 UTC], ["updated_at", 2016-08-19 02:49:44 UTC]]  (150.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem morreu na revolta de Absalão na tentativa de tomar o trono do rei Davi?"], ["created_at", 2016-08-19 02:49:45 UTC], ["updated_at", 2016-08-19 02:49:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 1501], ["correct", true], ["created_at", 2016-08-19 02:49:45 UTC], ["updated_at", 2016-08-19 02:49:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1501], ["correct", false], ["created_at", 2016-08-19 02:49:45 UTC], ["updated_at", 2016-08-19 02:49:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ambos"], ["question_id", 1501], ["correct", false], ["created_at", 2016-08-19 02:49:45 UTC], ["updated_at", 2016-08-19 02:49:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão, Filho de Davi"], ["question_id", 1501], ["correct", false], ["created_at", 2016-08-19 02:49:45 UTC], ["updated_at", 2016-08-19 02:49:45 UTC]]  (189.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem morreu no Monte Hor?"], ["created_at", 2016-08-19 02:49:45 UTC], ["updated_at", 2016-08-19 02:49:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 1502], ["correct", true], ["created_at", 2016-08-19 02:49:45 UTC], ["updated_at", 2016-08-19 02:49:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1502], ["correct", false], ["created_at", 2016-08-19 02:49:45 UTC], ["updated_at", 2016-08-19 02:49:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 1502], ["correct", false], ["created_at", 2016-08-19 02:49:45 UTC], ["updated_at", 2016-08-19 02:49:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noé"], ["question_id", 1502], ["correct", false], ["created_at", 2016-08-19 02:49:45 UTC], ["updated_at", 2016-08-19 02:49:45 UTC]]  (260.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem morreu no naufrágio do navio em que Paulo se encontrava quando estava indo para Roma?"], ["created_at", 2016-08-19 02:49:45 UTC], ["updated_at", 2016-08-19 02:49:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ninguém"], ["question_id", 1503], ["correct", true], ["created_at", 2016-08-19 02:49:45 UTC], ["updated_at", 2016-08-19 02:49:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todos"], ["question_id", 1503], ["correct", false], ["created_at", 2016-08-19 02:49:45 UTC], ["updated_at", 2016-08-19 02:49:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas O Capitão do Navio"], ["question_id", 1503], ["correct", false], ["created_at", 2016-08-19 02:49:45 UTC], ["updated_at", 2016-08-19 02:49:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas Paulo"], ["question_id", 1503], ["correct", false], ["created_at", 2016-08-19 02:49:45 UTC], ["updated_at", 2016-08-19 02:49:45 UTC]]  (141.2ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem morreu pelo fato de ter trazido fogo estranho à Casa de Deus?"], ["created_at", 2016-08-19 02:49:45 UTC], ["updated_at", 2016-08-19 02:49:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nadabe e Abiú"], ["question_id", 1504], ["correct", true], ["created_at", 2016-08-19 02:49:45 UTC], ["updated_at", 2016-08-19 02:49:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zebulom e Itamar"], ["question_id", 1504], ["correct", false], ["created_at", 2016-08-19 02:49:45 UTC], ["updated_at", 2016-08-19 02:49:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eleasar e Boaz"], ["question_id", 1504], ["correct", false], ["created_at", 2016-08-19 02:49:45 UTC], ["updated_at", 2016-08-19 02:49:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quedorlaomer e Acabe"], ["question_id", 1504], ["correct", false], ["created_at", 2016-08-19 02:49:45 UTC], ["updated_at", 2016-08-19 02:49:45 UTC]]  (316.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem nasceu em Ur dos Caldeus?"], ["created_at", 2016-08-19 02:49:45 UTC], ["updated_at", 2016-08-19 02:49:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1505], ["correct", true], ["created_at", 2016-08-19 02:49:45 UTC], ["updated_at", 2016-08-19 02:49:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 1505], ["correct", false], ["created_at", 2016-08-19 02:49:45 UTC], ["updated_at", 2016-08-19 02:49:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 1505], ["correct", false], ["created_at", 2016-08-19 02:49:45 UTC], ["updated_at", 2016-08-19 02:49:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sara"], ["question_id", 1505], ["correct", false], ["created_at", 2016-08-19 02:49:45 UTC], ["updated_at", 2016-08-19 02:49:45 UTC]]  (258.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem Nicodemos encontrou à noite e perguntou sobre a necessidade em nascer de novo?"], ["created_at", 2016-08-19 02:49:46 UTC], ["updated_at", 2016-08-19 02:49:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 1506], ["correct", true], ["created_at", 2016-08-19 02:49:46 UTC], ["updated_at", 2016-08-19 02:49:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 1506], ["correct", false], ["created_at", 2016-08-19 02:49:46 UTC], ["updated_at", 2016-08-19 02:49:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Barnabé"], ["question_id", 1506], ["correct", false], ["created_at", 2016-08-19 02:49:46 UTC], ["updated_at", 2016-08-19 02:49:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 1506], ["correct", false], ["created_at", 2016-08-19 02:49:46 UTC], ["updated_at", 2016-08-19 02:49:46 UTC]]  (183.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem nomeou José como governador de todo o Egito?"], ["created_at", 2016-08-19 02:49:46 UTC], ["updated_at", 2016-08-19 02:49:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Faraó"], ["question_id", 1507], ["correct", true], ["created_at", 2016-08-19 02:49:46 UTC], ["updated_at", 2016-08-19 02:49:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes, O Grande"], ["question_id", 1507], ["correct", false], ["created_at", 2016-08-19 02:49:46 UTC], ["updated_at", 2016-08-19 02:49:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei Dario"], ["question_id", 1507], ["correct", false], ["created_at", 2016-08-19 02:49:46 UTC], ["updated_at", 2016-08-19 02:49:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rainha Cleópatra"], ["question_id", 1507], ["correct", false], ["created_at", 2016-08-19 02:49:46 UTC], ["updated_at", 2016-08-19 02:49:46 UTC]]  (183.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem o egípcio morto por Moisés estava surrando?"], ["created_at", 2016-08-19 02:49:46 UTC], ["updated_at", 2016-08-19 02:49:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Hebreu"], ["question_id", 1508], ["correct", true], ["created_at", 2016-08-19 02:49:46 UTC], ["updated_at", 2016-08-19 02:49:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Outro Egípcio"], ["question_id", 1508], ["correct", false], ["created_at", 2016-08-19 02:49:46 UTC], ["updated_at", 2016-08-19 02:49:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Faraó"], ["question_id", 1508], ["correct", false], ["created_at", 2016-08-19 02:49:46 UTC], ["updated_at", 2016-08-19 02:49:46 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Mãe de Moisés"], ["question_id", 1508], ["correct", false], ["created_at", 2016-08-19 02:49:46 UTC], ["updated_at", 2016-08-19 02:49:46 UTC]]  (149.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem o povo preferiu que fosse libertado por Pôncio Pilatos?"], ["created_at", 2016-08-19 02:49:46 UTC], ["updated_at", 2016-08-19 02:49:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Barrabás"], ["question_id", 1509], ["correct", true], ["created_at", 2016-08-19 02:49:46 UTC], ["updated_at", 2016-08-19 02:49:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bartimeu, O Cego"], ["question_id", 1509], ["correct", false], ["created_at", 2016-08-19 02:49:46 UTC], ["updated_at", 2016-08-19 02:49:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Barnabé"], ["question_id", 1509], ["correct", false], ["created_at", 2016-08-19 02:49:46 UTC], ["updated_at", 2016-08-19 02:49:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belsazar"], ["question_id", 1509], ["correct", false], ["created_at", 2016-08-19 02:49:46 UTC], ["updated_at", 2016-08-19 02:49:46 UTC]]  (117.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem o rei Acaz ofereceu como sacrifício ao deus Moloque?"], ["created_at", 2016-08-19 02:49:46 UTC], ["updated_at", 2016-08-19 02:49:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Próprios Filhos"], ["question_id", 1510], ["correct", true], ["created_at", 2016-08-19 02:49:46 UTC], ["updated_at", 2016-08-19 02:49:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Própria Mãe"], ["question_id", 1510], ["correct", false], ["created_at", 2016-08-19 02:49:46 UTC], ["updated_at", 2016-08-19 02:49:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Si Mesmo"], ["question_id", 1510], ["correct", false], ["created_at", 2016-08-19 02:49:46 UTC], ["updated_at", 2016-08-19 02:49:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Próprio Pai"], ["question_id", 1510], ["correct", false], ["created_at", 2016-08-19 02:49:46 UTC], ["updated_at", 2016-08-19 02:49:46 UTC]]  (174.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem o rei da Babilônia mandou jogar em uma fornalha ardente?"], ["created_at", 2016-08-19 02:49:47 UTC], ["updated_at", 2016-08-19 02:49:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Amigos de Daniel"], ["question_id", 1511], ["correct", true], ["created_at", 2016-08-19 02:49:47 UTC], ["updated_at", 2016-08-19 02:49:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 1511], ["correct", false], ["created_at", 2016-08-19 02:49:47 UTC], ["updated_at", 2016-08-19 02:49:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Próprio Filho"], ["question_id", 1511], ["correct", false], ["created_at", 2016-08-19 02:49:47 UTC], ["updated_at", 2016-08-19 02:49:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas Mesaque"], ["question_id", 1511], ["correct", false], ["created_at", 2016-08-19 02:49:47 UTC], ["updated_at", 2016-08-19 02:49:47 UTC]]  (183.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ofereceu a Rebeca como forma de agradecimento 1 argola de ouro e 2 pulseiras de ouro?"], ["created_at", 2016-08-19 02:49:47 UTC], ["updated_at", 2016-08-19 02:49:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Servo de Abraão"], ["question_id", 1512], ["correct", true], ["created_at", 2016-08-19 02:49:47 UTC], ["updated_at", 2016-08-19 02:49:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sara"], ["question_id", 1512], ["correct", false], ["created_at", 2016-08-19 02:49:47 UTC], ["updated_at", 2016-08-19 02:49:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1512], ["correct", false], ["created_at", 2016-08-19 02:49:47 UTC], ["updated_at", 2016-08-19 02:49:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 1512], ["correct", false], ["created_at", 2016-08-19 02:49:47 UTC], ["updated_at", 2016-08-19 02:49:47 UTC]]  (134.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ofereceu ao Rei Assuero 10.000 talentos de prata, com o objetivo em exterminar os judeus?"], ["created_at", 2016-08-19 02:49:47 UTC], ["updated_at", 2016-08-19 02:49:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hamã"], ["question_id", 1513], ["correct", true], ["created_at", 2016-08-19 02:49:47 UTC], ["updated_at", 2016-08-19 02:49:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Natã"], ["question_id", 1513], ["correct", false], ["created_at", 2016-08-19 02:49:47 UTC], ["updated_at", 2016-08-19 02:49:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Leviatã"], ["question_id", 1513], ["correct", false], ["created_at", 2016-08-19 02:49:47 UTC], ["updated_at", 2016-08-19 02:49:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obladã"], ["question_id", 1513], ["correct", false], ["created_at", 2016-08-19 02:49:47 UTC], ["updated_at", 2016-08-19 02:49:47 UTC]]  (166.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ofereceu um quarto na parte de cima de sua casa quando Eliseu estava avisitando?"], ["created_at", 2016-08-19 02:49:47 UTC], ["updated_at", 2016-08-19 02:49:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Mulher Sunamita"], ["question_id", 1514], ["correct", true], ["created_at", 2016-08-19 02:49:47 UTC], ["updated_at", 2016-08-19 02:49:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Cego"], ["question_id", 1514], ["correct", false], ["created_at", 2016-08-19 02:49:47 UTC], ["updated_at", 2016-08-19 02:49:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Viúva Pobre"], ["question_id", 1514], ["correct", false], ["created_at", 2016-08-19 02:49:47 UTC], ["updated_at", 2016-08-19 02:49:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Portador de Lepra"], ["question_id", 1514], ["correct", false], ["created_at", 2016-08-19 02:49:47 UTC], ["updated_at", 2016-08-19 02:49:47 UTC]]  (183.5ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ordenou a colocação de guardas para guardar o sepulcro de Jesus?"], ["created_at", 2016-08-19 02:49:47 UTC], ["updated_at", 2016-08-19 02:49:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 1515], ["correct", true], ["created_at", 2016-08-19 02:49:47 UTC], ["updated_at", 2016-08-19 02:49:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes"], ["question_id", 1515], ["correct", false], ["created_at", 2016-08-19 02:49:47 UTC], ["updated_at", 2016-08-19 02:49:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ananias"], ["question_id", 1515], ["correct", false], ["created_at", 2016-08-19 02:49:47 UTC], ["updated_at", 2016-08-19 02:49:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José de Arimatéia"], ["question_id", 1515], ["correct", false], ["created_at", 2016-08-19 02:49:47 UTC], ["updated_at", 2016-08-19 02:49:47 UTC]]  (132.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ordenou a prisão de João Batista?"], ["created_at", 2016-08-19 02:49:47 UTC], ["updated_at", 2016-08-19 02:49:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes"], ["question_id", 1516], ["correct", true], ["created_at", 2016-08-19 02:49:47 UTC], ["updated_at", 2016-08-19 02:49:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodias"], ["question_id", 1516], ["correct", false], ["created_at", 2016-08-19 02:49:47 UTC], ["updated_at", 2016-08-19 02:49:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 1516], ["correct", false], ["created_at", 2016-08-19 02:49:47 UTC], ["updated_at", 2016-08-19 02:49:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "César Augusto"], ["question_id", 1516], ["correct", false], ["created_at", 2016-08-19 02:49:47 UTC], ["updated_at", 2016-08-19 02:49:47 UTC]]  (124.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ordenou que Daniel fosse atirado à cova dos leões?"], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei Dario"], ["question_id", 1517], ["correct", true], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei Nabucodonosor"], ["question_id", 1517], ["correct", false], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Natã"], ["question_id", 1517], ["correct", false], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hamã"], ["question_id", 1517], ["correct", false], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]]  (124.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ordenou que Jesus fosse crucificado?"], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 1518], ["correct", true], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Antipas"], ["question_id", 1518], ["correct", false], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Agriga"], ["question_id", 1518], ["correct", false], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Imperador Romano"], ["question_id", 1518], ["correct", false], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]]  (125.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ordenou que qualquer pessoa que visse Jesus deveria relatar onde ele se encontrava?"], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Líderes Religiosos"], ["question_id", 1519], ["correct", true], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 1519], ["correct", false], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Antipas"], ["question_id", 1519], ["correct", false], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Agripa"], ["question_id", 1519], ["correct", false], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]]  (133.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ordenou que todos os filhos do sexo masculino que nascessem fossem mortos?"], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Faraó do Egito"], ["question_id", 1520], ["correct", true], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pônio Pilatos"], ["question_id", 1520], ["correct", false], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei Assuero"], ["question_id", 1520], ["correct", false], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Imperador César Augusto"], ["question_id", 1520], ["correct", false], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]]  (125.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem orientou Naamã para se molhar no rio Jordão para se curar da lepra?"], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 1521], ["correct", true], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 1521], ["correct", false], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 1521], ["correct", false], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 1521], ["correct", false], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]]  (125.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem orou por 7 dias para que seu filho não morresse?"], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1522], ["correct", true], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1522], ["correct", false], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 1522], ["correct", false], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 1522], ["correct", false], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]]  (126.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem passou 40 dias no Monte Sinai com Deus?"], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1523], ["correct", true], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 1523], ["correct", false], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1523], ["correct", false], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 1523], ["correct", false], ["created_at", 2016-08-19 02:49:48 UTC], ["updated_at", 2016-08-19 02:49:48 UTC]]  (133.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem passou a noite lutando com Deus?"], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 1524], ["correct", true], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 1524], ["correct", false], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 1524], ["correct", false], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 1524], ["correct", false], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]]  (134.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem pediu a cabeça de João Batista?"], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todas As Alternativas"], ["question_id", 1525], ["correct", true], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodias"], ["question_id", 1525], ["correct", false], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mãe de Herodias"], ["question_id", 1525], ["correct", false], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Sogra de Herodes"], ["question_id", 1525], ["correct", false], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]]  (133.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem pediu a Dalila que ela conseguisse de Sansão o segredo de sua força?"], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Príncipes Filisteus"], ["question_id", 1526], ["correct", true], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Líderes Religiosos"], ["question_id", 1526], ["correct", false], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Mulheres Filistéias"], ["question_id", 1526], ["correct", false], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Povo Filisteu"], ["question_id", 1526], ["correct", false], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]]  (141.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem pediu a Deus que lhe desse sabedoria?"], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1527], ["correct", true], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 1527], ["correct", false], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1527], ["correct", false], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1527], ["correct", false], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]]  (124.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem pediu a Deus que não destruísse Sodoma?"], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1528], ["correct", true], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Levi"], ["question_id", 1528], ["correct", false], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ló"], ["question_id", 1528], ["correct", false], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 1528], ["correct", false], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]]  (132.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem pediu a José que interpretasse seus sonhos?"], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Faraó"], ["question_id", 1529], ["correct", true], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Potifar"], ["question_id", 1529], ["correct", false], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Esposa de Potifar"], ["question_id", 1529], ["correct", false], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Irmãos"], ["question_id", 1529], ["correct", false], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]]  (124.3ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem pediu a Roboão que abaixasse os impostos, após a morte do rei Salomão?"], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Povo de Israel"], ["question_id", 1530], ["correct", true], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Sumo-sacerdote"], ["question_id", 1530], ["correct", false], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Profeta Namã"], ["question_id", 1530], ["correct", false], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Mãe Bate-seba"], ["question_id", 1530], ["correct", false], ["created_at", 2016-08-19 02:49:49 UTC], ["updated_at", 2016-08-19 02:49:49 UTC]]  (134.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem pediu ao rei Davi para que escolhesse Salomão a lhe suceder no trono real?"], ["created_at", 2016-08-19 02:49:50 UTC], ["updated_at", 2016-08-19 02:49:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bate-seba"], ["question_id", 1531], ["correct", true], ["created_at", 2016-08-19 02:49:50 UTC], ["updated_at", 2016-08-19 02:49:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adonias"], ["question_id", 1531], ["correct", false], ["created_at", 2016-08-19 02:49:50 UTC], ["updated_at", 2016-08-19 02:49:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Natã"], ["question_id", 1531], ["correct", false], ["created_at", 2016-08-19 02:49:50 UTC], ["updated_at", 2016-08-19 02:49:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 1531], ["correct", false], ["created_at", 2016-08-19 02:49:50 UTC], ["updated_at", 2016-08-19 02:49:50 UTC]]  (132.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem pediu aos espias que sua família fosse poupada?"], ["created_at", 2016-08-19 02:49:50 UTC], ["updated_at", 2016-08-19 02:49:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Raabe"], ["question_id", 1532], ["correct", true], ["created_at", 2016-08-19 02:49:50 UTC], ["updated_at", 2016-08-19 02:49:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amazias"], ["question_id", 1532], ["correct", false], ["created_at", 2016-08-19 02:49:50 UTC], ["updated_at", 2016-08-19 02:49:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jizreel"], ["question_id", 1532], ["correct", false], ["created_at", 2016-08-19 02:49:50 UTC], ["updated_at", 2016-08-19 02:49:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bate-seba"], ["question_id", 1532], ["correct", false], ["created_at", 2016-08-19 02:49:50 UTC], ["updated_at", 2016-08-19 02:49:50 UTC]]  (167.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem pediu um período de teste de 10 dias para provar que a alimentação da mesa do rei era impura?"], ["created_at", 2016-08-19 02:49:50 UTC], ["updated_at", 2016-08-19 02:49:50 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel e Seus Amigos"], ["question_id", 1533], ["correct", true], ["created_at", 2016-08-19 02:49:50 UTC], ["updated_at", 2016-08-19 02:49:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 1533], ["correct", false], ["created_at", 2016-08-19 02:49:50 UTC], ["updated_at", 2016-08-19 02:49:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 1533], ["correct", false], ["created_at", 2016-08-19 02:49:50 UTC], ["updated_at", 2016-08-19 02:49:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 1533], ["correct", false], ["created_at", 2016-08-19 02:49:50 UTC], ["updated_at", 2016-08-19 02:49:50 UTC]]  (208.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem perdeu a força quando teve seu cabelo cortado?"], ["created_at", 2016-08-19 02:49:50 UTC], ["updated_at", 2016-08-19 02:49:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 1534], ["correct", true], ["created_at", 2016-08-19 02:49:50 UTC], ["updated_at", 2016-08-19 02:49:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dalila"], ["question_id", 1534], ["correct", false], ["created_at", 2016-08-19 02:49:50 UTC], ["updated_at", 2016-08-19 02:49:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1534], ["correct", false], ["created_at", 2016-08-19 02:49:50 UTC], ["updated_at", 2016-08-19 02:49:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Golias"], ["question_id", 1534], ["correct", false], ["created_at", 2016-08-19 02:49:50 UTC], ["updated_at", 2016-08-19 02:49:50 UTC]]  (174.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem perdeu a posição de rainha pelo fato de ter-se recusado a aparecer diante de um banco de bêbados?"], ["created_at", 2016-08-19 02:49:50 UTC], ["updated_at", 2016-08-19 02:49:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vasti"], ["question_id", 1535], ["correct", true], ["created_at", 2016-08-19 02:49:50 UTC], ["updated_at", 2016-08-19 02:49:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ester"], ["question_id", 1535], ["correct", false], ["created_at", 2016-08-19 02:49:50 UTC], ["updated_at", 2016-08-19 02:49:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jezabel"], ["question_id", 1535], ["correct", false], ["created_at", 2016-08-19 02:49:50 UTC], ["updated_at", 2016-08-19 02:49:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sabá"], ["question_id", 1535], ["correct", false], ["created_at", 2016-08-19 02:49:50 UTC], ["updated_at", 2016-08-19 02:49:50 UTC]]  (124.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem perdeu a vida por ter tocado na arca de Deus?"], ["created_at", 2016-08-19 02:49:50 UTC], ["updated_at", 2016-08-19 02:49:50 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uzá"], ["question_id", 1536], ["correct", true], ["created_at", 2016-08-19 02:49:50 UTC], ["updated_at", 2016-08-19 02:49:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Beelim"], ["question_id", 1536], ["correct", false], ["created_at", 2016-08-19 02:49:50 UTC], ["updated_at", 2016-08-19 02:49:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zorobabel"], ["question_id", 1536], ["correct", false], ["created_at", 2016-08-19 02:49:50 UTC], ["updated_at", 2016-08-19 02:49:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Neustã"], ["question_id", 1536], ["correct", false], ["created_at", 2016-08-19 02:49:50 UTC], ["updated_at", 2016-08-19 02:49:50 UTC]]  (207.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem perguntou a Pedro 3 vezes se ele amava a Jesus?"], ["created_at", 2016-08-19 02:49:51 UTC], ["updated_at", 2016-08-19 02:49:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Próprio Jesus"], ["question_id", 1537], ["correct", true], ["created_at", 2016-08-19 02:49:51 UTC], ["updated_at", 2016-08-19 02:49:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 1537], ["correct", false], ["created_at", 2016-08-19 02:49:51 UTC], ["updated_at", 2016-08-19 02:49:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 1537], ["correct", false], ["created_at", 2016-08-19 02:49:51 UTC], ["updated_at", 2016-08-19 02:49:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tomé"], ["question_id", 1537], ["correct", false], ["created_at", 2016-08-19 02:49:51 UTC], ["updated_at", 2016-08-19 02:49:51 UTC]]  (149.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem permitiu que Mefibosete, com apenas 5 anos de idade, o deixasse cair, prejudicando com isso seus 2 pés?"], ["created_at", 2016-08-19 02:49:51 UTC], ["updated_at", 2016-08-19 02:49:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Babá"], ["question_id", 1538], ["correct", true], ["created_at", 2016-08-19 02:49:51 UTC], ["updated_at", 2016-08-19 02:49:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Mãe"], ["question_id", 1538], ["correct", false], ["created_at", 2016-08-19 02:49:51 UTC], ["updated_at", 2016-08-19 02:49:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Pai"], ["question_id", 1538], ["correct", false], ["created_at", 2016-08-19 02:49:51 UTC], ["updated_at", 2016-08-19 02:49:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Irmão Mais Velho"], ["question_id", 1538], ["correct", false], ["created_at", 2016-08-19 02:49:51 UTC], ["updated_at", 2016-08-19 02:49:51 UTC]]  (133.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem persuadiu a multidão a pedir a Crucificação de Jesus?"], ["created_at", 2016-08-19 02:49:51 UTC], ["updated_at", 2016-08-19 02:49:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Sacerdotes do Templo"], ["question_id", 1539], ["correct", true], ["created_at", 2016-08-19 02:49:51 UTC], ["updated_at", 2016-08-19 02:49:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Fariseus"], ["question_id", 1539], ["correct", false], ["created_at", 2016-08-19 02:49:51 UTC], ["updated_at", 2016-08-19 02:49:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Levitas"], ["question_id", 1539], ["correct", false], ["created_at", 2016-08-19 02:49:51 UTC], ["updated_at", 2016-08-19 02:49:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Soldados Romanos"], ["question_id", 1539], ["correct", false], ["created_at", 2016-08-19 02:49:51 UTC], ["updated_at", 2016-08-19 02:49:51 UTC]]  (167.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem possuiu o corpo de Judas Iscariotes após o mesmo ter recebido diretamente de Jesus um pedaço de pão na Última Ceia?"], ["created_at", 2016-08-19 02:49:51 UTC], ["updated_at", 2016-08-19 02:49:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Satanás"], ["question_id", 1540], ["correct", true], ["created_at", 2016-08-19 02:49:51 UTC], ["updated_at", 2016-08-19 02:49:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anjo Gabriel"], ["question_id", 1540], ["correct", false], ["created_at", 2016-08-19 02:49:51 UTC], ["updated_at", 2016-08-19 02:49:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Próprio Deus"], ["question_id", 1540], ["correct", false], ["created_at", 2016-08-19 02:49:51 UTC], ["updated_at", 2016-08-19 02:49:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias No Momento da Transfiguração"], ["question_id", 1540], ["correct", false], ["created_at", 2016-08-19 02:49:51 UTC], ["updated_at", 2016-08-19 02:49:51 UTC]]  (133.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem precisou ser educado no serviço do rei durante 3 anos?"], ["created_at", 2016-08-19 02:49:51 UTC], ["updated_at", 2016-08-19 02:49:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 1541], ["correct", true], ["created_at", 2016-08-19 02:49:51 UTC], ["updated_at", 2016-08-19 02:49:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1541], ["correct", false], ["created_at", 2016-08-19 02:49:51 UTC], ["updated_at", 2016-08-19 02:49:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 1541], ["correct", false], ["created_at", 2016-08-19 02:49:51 UTC], ["updated_at", 2016-08-19 02:49:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 1541], ["correct", false], ["created_at", 2016-08-19 02:49:51 UTC], ["updated_at", 2016-08-19 02:49:51 UTC]]  (124.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem preferiu ouvir as palavras de Jesus, ao invés de ajudar sua irmã?"], ["created_at", 2016-08-19 02:49:51 UTC], ["updated_at", 2016-08-19 02:49:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria"], ["question_id", 1542], ["correct", true], ["created_at", 2016-08-19 02:49:51 UTC], ["updated_at", 2016-08-19 02:49:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marta"], ["question_id", 1542], ["correct", false], ["created_at", 2016-08-19 02:49:51 UTC], ["updated_at", 2016-08-19 02:49:51 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lázaro"], ["question_id", 1542], ["correct", false], ["created_at", 2016-08-19 02:49:51 UTC], ["updated_at", 2016-08-19 02:49:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 1542], ["correct", false], ["created_at", 2016-08-19 02:49:51 UTC], ["updated_at", 2016-08-19 02:49:51 UTC]]  (266.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem pregou arrependimento aos cidadãos de Nínive durante 40 dias?"], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jonas"], ["question_id", 1543], ["correct", true], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 1543], ["correct", false], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 1543], ["correct", false], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 1543], ["correct", false], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]]  (124.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem procurava matar Saulo após ter-se convertido para o cristianismo?"], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Judeus Helenistas"], ["question_id", 1544], ["correct", true], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Egípcios"], ["question_id", 1544], ["correct", false], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Soldados Romanos"], ["question_id", 1544], ["correct", false], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Líderes Religiosos"], ["question_id", 1544], ["correct", false], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]]  (125.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem profetizou de que os assírios não conseguiriam tomar Jerusalém?"], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 1545], ["correct", true], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeremias"], ["question_id", 1545], ["correct", false], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ezequiel"], ["question_id", 1545], ["correct", false], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sofonias"], ["question_id", 1545], ["correct", false], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]]  (126.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem pronunciou no Monte Gerizim as bênçãos dadas a Israel devido à sua obediência?"], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 1546], ["correct", true], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1546], ["correct", false], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 1546], ["correct", false], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel"], ["question_id", 1546], ["correct", false], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]]  (124.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem provocou a morte de João Batista?"], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodias"], ["question_id", 1547], ["correct", true], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 1547], ["correct", false], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "César Augusto"], ["question_id", 1547], ["correct", false], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sumo-sacerdote"], ["question_id", 1547], ["correct", false], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]]  (124.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem queimou as plantações dos filisteus amarrando tochas nas caudas de raposas?"], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 1548], ["correct", true], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1548], ["correct", false], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 1548], ["correct", false], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sadraque"], ["question_id", 1548], ["correct", false], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]]  (125.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem questionou Davi sobre seus pecados contra Bate-Seba e Urias?"], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Natã"], ["question_id", 1549], ["correct", true], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Naamã"], ["question_id", 1549], ["correct", false], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joabe"], ["question_id", 1549], ["correct", false], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 1549], ["correct", false], ["created_at", 2016-08-19 02:49:52 UTC], ["updated_at", 2016-08-19 02:49:52 UTC]]  (134.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem Raabe escondeu na cidade de Jericó?"], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Espias"], ["question_id", 1550], ["correct", true], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Rei"], ["question_id", 1550], ["correct", false], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 1550], ["correct", false], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Exército de Josué"], ["question_id", 1550], ["correct", false], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]]  (151.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem recebeu do Faraó um anel pelo fato de haver interpretado os sonhos do Faraó?"], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 1551], ["correct", true], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1551], ["correct", false], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 1551], ["correct", false], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 1551], ["correct", false], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]]  (132.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem recebeu do rei Nabucodonosor o cargo de Governador da Babilônia?"], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 1552], ["correct", true], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mesaque"], ["question_id", 1552], ["correct", false], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sadraque"], ["question_id", 1552], ["correct", false], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abede-nego"], ["question_id", 1552], ["correct", false], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]]  (132.7ms) commit transaction  (0.2ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem recebeu um beijo de traição?"], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 1553], ["correct", true], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas Iscariotes"], ["question_id", 1553], ["correct", false], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 1553], ["correct", false], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caifás"], ["question_id", 1553], ["correct", false], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]]  (142.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem reclamou para o Senhor que era pesado de boca e pesado de língua?"], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1554], ["correct", true], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 1554], ["correct", false], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ló"], ["question_id", 1554], ["correct", false], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 1554], ["correct", false], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]]  (141.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem reconstruiu Babilônia?"], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 1555], ["correct", true], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 1555], ["correct", false], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belsazar"], ["question_id", 1555], ["correct", false], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1555], ["correct", false], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]]  (125.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem refugiou-se em um monte, após terem deixado Raabe?"], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Espias Enviados Por Josué"], ["question_id", 1556], ["correct", true], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Próprio Josué"], ["question_id", 1556], ["correct", false], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Exército de Josué"], ["question_id", 1556], ["correct", false], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Filhos de Josué"], ["question_id", 1556], ["correct", false], ["created_at", 2016-08-19 02:49:53 UTC], ["updated_at", 2016-08-19 02:49:53 UTC]]  (125.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem reinava na cidade de Astarote, conhecida por haver muitos gigantes?"], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ogue"], ["question_id", 1557], ["correct", true], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Demagogue"], ["question_id", 1557], ["correct", false], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Astarogue"], ["question_id", 1557], ["correct", false], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cologue"], ["question_id", 1557], ["correct", false], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]]  (125.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem reinava na Judéia quando José, Maria e Jesus retornaram para a Palestina?"], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arquelau"], ["question_id", 1558], ["correct", true], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 1558], ["correct", false], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Antipas"], ["question_id", 1558], ["correct", false], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Agripa"], ["question_id", 1558], ["correct", false], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]]  (117.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem resmungou pelo fato dos rebeldes terem sido destruídos?"], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Povo Israelita"], ["question_id", 1559], ["correct", true], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Reis Inimigos"], ["question_id", 1559], ["correct", false], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Anjos Maus"], ["question_id", 1559], ["correct", false], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Exército do Faraó"], ["question_id", 1559], ["correct", false], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]]  (109.6ms) commit transaction  (0.1ms) begin transaction SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem retirou a pedra do túmulo de Jesus?"], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Anjo"], ["question_id", 1560], ["correct", true], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Soldados Romanos"], ["question_id", 1560], ["correct", false], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Discípulos"], ["question_id", 1560], ["correct", false], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Fariseus"], ["question_id", 1560], ["correct", false], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]]  (127.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem salvou a vida do profeta Jeremias, que havia sido atirado em uma cisterna para morrer na lama?"], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ebede-meleque"], ["question_id", 1561], ["correct", true], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabote"], ["question_id", 1561], ["correct", false], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nebo"], ["question_id", 1561], ["correct", false], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jetro"], ["question_id", 1561], ["correct", false], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]]  (133.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem salvou Balaão de ser morto por um anjo que estava com a espada desembainhada?"], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Jumenta"], ["question_id", 1562], ["correct", true], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Pai"], ["question_id", 1562], ["correct", false], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Filho"], ["question_id", 1562], ["correct", false], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Escravo"], ["question_id", 1562], ["correct", false], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]]  (174.9ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem salvou Ló e sua família de serem destruídos juntamente com a cidade de Sodoma?"], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 Anjos"], ["question_id", 1563], ["correct", true], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Próprio Abraão"], ["question_id", 1563], ["correct", false], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Próprio Deus"], ["question_id", 1563], ["correct", false], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Anjo"], ["question_id", 1563], ["correct", false], ["created_at", 2016-08-19 02:49:54 UTC], ["updated_at", 2016-08-19 02:49:54 UTC]]  (267.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem são bem-aventurados, pelo fato de serem consolados?"], ["created_at", 2016-08-19 02:49:55 UTC], ["updated_at", 2016-08-19 02:49:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Que Choram"], ["question_id", 1564], ["correct", true], ["created_at", 2016-08-19 02:49:55 UTC], ["updated_at", 2016-08-19 02:49:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Mansos de Coração"], ["question_id", 1564], ["correct", false], ["created_at", 2016-08-19 02:49:55 UTC], ["updated_at", 2016-08-19 02:49:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Que Tem Fome e Sede de Justiça"], ["question_id", 1564], ["correct", false], ["created_at", 2016-08-19 02:49:55 UTC], ["updated_at", 2016-08-19 02:49:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Perseguidos"], ["question_id", 1564], ["correct", false], ["created_at", 2016-08-19 02:49:55 UTC], ["updated_at", 2016-08-19 02:49:55 UTC]]  (132.7ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem são bem-aventurados, pelo fato de serem fartos?"], ["created_at", 2016-08-19 02:49:55 UTC], ["updated_at", 2016-08-19 02:49:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Que Tem Fome e Sede de Justiça"], ["question_id", 1565], ["correct", true], ["created_at", 2016-08-19 02:49:55 UTC], ["updated_at", 2016-08-19 02:49:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Perseguidos"], ["question_id", 1565], ["correct", false], ["created_at", 2016-08-19 02:49:55 UTC], ["updated_at", 2016-08-19 02:49:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Pobres de Espírito"], ["question_id", 1565], ["correct", false], ["created_at", 2016-08-19 02:49:55 UTC], ["updated_at", 2016-08-19 02:49:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Que Choram"], ["question_id", 1565], ["correct", false], ["created_at", 2016-08-19 02:49:55 UTC], ["updated_at", 2016-08-19 02:49:55 UTC]]  (150.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem são bem-aventurados, pelo fato do reino dos céus serem deles?"], ["created_at", 2016-08-19 02:49:55 UTC], ["updated_at", 2016-08-19 02:49:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Pobres de Espírito"], ["question_id", 1566], ["correct", true], ["created_at", 2016-08-19 02:49:55 UTC], ["updated_at", 2016-08-19 02:49:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Que Choram"], ["question_id", 1566], ["correct", false], ["created_at", 2016-08-19 02:49:55 UTC], ["updated_at", 2016-08-19 02:49:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Mansos de Coração"], ["question_id", 1566], ["correct", false], ["created_at", 2016-08-19 02:49:55 UTC], ["updated_at", 2016-08-19 02:49:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Perseguidos"], ["question_id", 1566], ["correct", false], ["created_at", 2016-08-19 02:49:55 UTC], ["updated_at", 2016-08-19 02:49:55 UTC]]  (200.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem se postou perante os israelitas e os provocou durante 40 dias?"], ["created_at", 2016-08-19 02:49:55 UTC], ["updated_at", 2016-08-19 02:49:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Golias"], ["question_id", 1567], ["correct", true], ["created_at", 2016-08-19 02:49:55 UTC], ["updated_at", 2016-08-19 02:49:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ogue"], ["question_id", 1567], ["correct", false], ["created_at", 2016-08-19 02:49:55 UTC], ["updated_at", 2016-08-19 02:49:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 1567], ["correct", false], ["created_at", 2016-08-19 02:49:55 UTC], ["updated_at", 2016-08-19 02:49:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Faraó"], ["question_id", 1567], ["correct", false], ["created_at", 2016-08-19 02:49:55 UTC], ["updated_at", 2016-08-19 02:49:55 UTC]]  (159.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem se tornou rei quando tinha 7 anos e reinou durante 40 anos?"], ["created_at", 2016-08-19 02:49:55 UTC], ["updated_at", 2016-08-19 02:49:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeoás"], ["question_id", 1568], ["correct", true], ["created_at", 2016-08-19 02:49:55 UTC], ["updated_at", 2016-08-19 02:49:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zedequias"], ["question_id", 1568], ["correct", false], ["created_at", 2016-08-19 02:49:55 UTC], ["updated_at", 2016-08-19 02:49:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hadade"], ["question_id", 1568], ["correct", false], ["created_at", 2016-08-19 02:49:55 UTC], ["updated_at", 2016-08-19 02:49:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Azarias"], ["question_id", 1568], ["correct", false], ["created_at", 2016-08-19 02:49:55 UTC], ["updated_at", 2016-08-19 02:49:55 UTC]]  (116.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem sepultou Moisés em um vale?"], ["created_at", 2016-08-19 02:49:55 UTC], ["updated_at", 2016-08-19 02:49:55 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Próprio Deus"], ["question_id", 1569], ["correct", true], ["created_at", 2016-08-19 02:49:56 UTC], ["updated_at", 2016-08-19 02:49:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Anjo"], ["question_id", 1569], ["correct", false], ["created_at", 2016-08-19 02:49:56 UTC], ["updated_at", 2016-08-19 02:49:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 1569], ["correct", false], ["created_at", 2016-08-19 02:49:56 UTC], ["updated_at", 2016-08-19 02:49:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 1569], ["correct", false], ["created_at", 2016-08-19 02:49:56 UTC], ["updated_at", 2016-08-19 02:49:56 UTC]]  (141.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem serão bem-aventurados, pelo fato de herdarem a terra?"], ["created_at", 2016-08-19 02:49:56 UTC], ["updated_at", 2016-08-19 02:49:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Mansos de Coração"], ["question_id", 1570], ["correct", true], ["created_at", 2016-08-19 02:49:56 UTC], ["updated_at", 2016-08-19 02:49:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Que Tem Fome e Sede de Justiça"], ["question_id", 1570], ["correct", false], ["created_at", 2016-08-19 02:49:56 UTC], ["updated_at", 2016-08-19 02:49:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Perseguidos"], ["question_id", 1570], ["correct", false], ["created_at", 2016-08-19 02:49:56 UTC], ["updated_at", 2016-08-19 02:49:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Pobres de Espírito"], ["question_id", 1570], ["correct", false], ["created_at", 2016-08-19 02:49:56 UTC], ["updated_at", 2016-08-19 02:49:56 UTC]]  (174.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem subiu aos Céus em uma carruagem de fogo"], ["created_at", 2016-08-19 02:49:56 UTC], ["updated_at", 2016-08-19 02:49:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 1571], ["correct", true], ["created_at", 2016-08-19 02:49:56 UTC], ["updated_at", 2016-08-19 02:49:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Enoque"], ["question_id", 1571], ["correct", false], ["created_at", 2016-08-19 02:49:56 UTC], ["updated_at", 2016-08-19 02:49:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1571], ["correct", false], ["created_at", 2016-08-19 02:49:56 UTC], ["updated_at", 2016-08-19 02:49:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 1571], ["correct", false], ["created_at", 2016-08-19 02:49:56 UTC], ["updated_at", 2016-08-19 02:49:56 UTC]]  (126.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem subiu em cima de uma ávore para ver Jesus quando Ele estivesse passando?"], ["created_at", 2016-08-19 02:49:56 UTC], ["updated_at", 2016-08-19 02:49:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zaqueu"], ["question_id", 1572], ["correct", true], ["created_at", 2016-08-19 02:49:56 UTC], ["updated_at", 2016-08-19 02:49:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zadoque"], ["question_id", 1572], ["correct", false], ["created_at", 2016-08-19 02:49:56 UTC], ["updated_at", 2016-08-19 02:49:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zebedeu"], ["question_id", 1572], ["correct", false], ["created_at", 2016-08-19 02:49:56 UTC], ["updated_at", 2016-08-19 02:49:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zazeque"], ["question_id", 1572], ["correct", false], ["created_at", 2016-08-19 02:49:56 UTC], ["updated_at", 2016-08-19 02:49:56 UTC]]  (124.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem substituiu o apóstolo Judas após sua morte?"], ["created_at", 2016-08-19 02:49:56 UTC], ["updated_at", 2016-08-19 02:49:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matias"], ["question_id", 1573], ["correct", true], ["created_at", 2016-08-19 02:49:56 UTC], ["updated_at", 2016-08-19 02:49:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 1573], ["correct", false], ["created_at", 2016-08-19 02:49:56 UTC], ["updated_at", 2016-08-19 02:49:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saulo"], ["question_id", 1573], ["correct", false], ["created_at", 2016-08-19 02:49:56 UTC], ["updated_at", 2016-08-19 02:49:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Barnabé"], ["question_id", 1573], ["correct", false], ["created_at", 2016-08-19 02:49:56 UTC], ["updated_at", 2016-08-19 02:49:56 UTC]]  (125.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem sucedeu Salomão no trono real após sua morte?"], ["created_at", 2016-08-19 02:49:56 UTC], ["updated_at", 2016-08-19 02:49:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Roboão"], ["question_id", 1574], ["correct", true], ["created_at", 2016-08-19 02:49:56 UTC], ["updated_at", 2016-08-19 02:49:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 1574], ["correct", false], ["created_at", 2016-08-19 02:49:56 UTC], ["updated_at", 2016-08-19 02:49:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeroboão"], ["question_id", 1574], ["correct", false], ["created_at", 2016-08-19 02:49:56 UTC], ["updated_at", 2016-08-19 02:49:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 1574], ["correct", false], ["created_at", 2016-08-19 02:49:56 UTC], ["updated_at", 2016-08-19 02:49:56 UTC]]  (133.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem sugeriu que Rebeca ficasse com seus parentes\n1,por mais 10 dias antes de partir para se casar?"], ["created_at", 2016-08-19 02:49:56 UTC], ["updated_at", 2016-08-19 02:49:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Mãe"], ["question_id", 1575], ["correct", true], ["created_at", 2016-08-19 02:49:56 UTC], ["updated_at", 2016-08-19 02:49:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Madrasta"], ["question_id", 1575], ["correct", false], ["created_at", 2016-08-19 02:49:56 UTC], ["updated_at", 2016-08-19 02:49:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Pai"], ["question_id", 1575], ["correct", false], ["created_at", 2016-08-19 02:49:56 UTC], ["updated_at", 2016-08-19 02:49:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Irmãos"], ["question_id", 1575], ["correct", false], ["created_at", 2016-08-19 02:49:56 UTC], ["updated_at", 2016-08-19 02:49:56 UTC]]  (132.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem também tinha o nome de Beltessazar?"], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 1576], ["correct", true], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1576], ["correct", false], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ezequiel"], ["question_id", 1576], ["correct", false], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sofonias"], ["question_id", 1576], ["correct", false], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]]  (150.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem tentou José a pecar quando ele era um escravo de Potifar?"], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Esposa de Potifar"], ["question_id", 1577], ["correct", true], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Irmã de Potifar"], ["question_id", 1577], ["correct", false], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Amante de Potifar"], ["question_id", 1577], ["correct", false], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Mãe de Potifar"], ["question_id", 1577], ["correct", false], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]]  (149.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem tentou várias vezes matar a Davi com uma lança?"], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 1578], ["correct", true], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jônatas"], ["question_id", 1578], ["correct", false], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mical"], ["question_id", 1578], ["correct", false], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dalila"], ["question_id", 1578], ["correct", false], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]]  (124.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem teve como punição a morte de seu filho pelo fato de ter cometido adultério?"], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1579], ["correct", true], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 1579], ["correct", false], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 1579], ["correct", false], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 1579], ["correct", false], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]]  (124.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem teve como punição a morte de seu filho pelo fato de ter planejado um assassinato?"], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1580], ["correct", true], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 1580], ["correct", false], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jezabel"], ["question_id", 1580], ["correct", false], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 1580], ["correct", false], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]]  (124.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem teve o privilégio de comer uma refeição preparada por um anjo?"], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 1581], ["correct", true], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 1581], ["correct", false], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1581], ["correct", false], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Enoque"], ["question_id", 1581], ["correct", false], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]]  (133.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem teve seu trono restituído com a morte de Absalão?"], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1582], ["correct", true], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 1582], ["correct", false], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeroboão"], ["question_id", 1582], ["correct", false], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1582], ["correct", false], ["created_at", 2016-08-19 02:49:57 UTC], ["updated_at", 2016-08-19 02:49:57 UTC]]  (117.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem teve sua visão restaurada na estrada próximo à cidade de Jericó?"], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bartimeu"], ["question_id", 1583], ["correct", true], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lázaro"], ["question_id", 1583], ["correct", false], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 1583], ["correct", false], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 1583], ["correct", false], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]]  (125.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem teve um sonho sobre o sol, a lua e as estrelas se curvando para ele?"], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 1584], ["correct", true], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 1584], ["correct", false], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adão"], ["question_id", 1584], ["correct", false], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 1584], ["correct", false], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]]  (126.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem tinha um burro que falou e viu o anjo do Senhor?"], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Balaão"], ["question_id", 1585], ["correct", true], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Naamã"], ["question_id", 1585], ["correct", false], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 1585], ["correct", false], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1585], ["correct", false], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]]  (126.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem trouxe muita amargura de espírito para Isaque e Rebeca?"], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Esposas Hetéias de Esaú"], ["question_id", 1586], ["correct", true], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Filhos de Jacó"], ["question_id", 1586], ["correct", false], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Ato de Jacó Roubar A Primogenitura de Esaú"], ["question_id", 1586], ["correct", false], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Filhos de Esaú"], ["question_id", 1586], ["correct", false], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]]  (125.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem vendeu seu direito de primogenitura?"], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 1587], ["correct", true], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 1587], ["correct", false], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 1587], ["correct", false], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 1587], ["correct", false], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]]  (175.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem visitou uma prostituta quando chegou à cidade de Gaza?"], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 1588], ["correct", true], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gileade"], ["question_id", 1588], ["correct", false], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 1588], ["correct", false], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 1588], ["correct", false], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]]  (191.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem, ao ter entrado em casa após ter regressado da consulta ao profeta Aías, teve seu filho morto?"], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Esposa de Jeroboão"], ["question_id", 1589], ["correct", true], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Filha de Salomão"], ["question_id", 1589], ["correct", false], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Nora de Davi"], ["question_id", 1589], ["correct", false], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Sogra de Acabe"], ["question_id", 1589], ["correct", false], ["created_at", 2016-08-19 02:49:58 UTC], ["updated_at", 2016-08-19 02:49:58 UTC]]  (199.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem, após ter ouvido a mensagem de advertência de Jonas, vestiu-se com panos de saco?"], ["created_at", 2016-08-19 02:49:59 UTC], ["updated_at", 2016-08-19 02:49:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Rei"], ["question_id", 1590], ["correct", true], ["created_at", 2016-08-19 02:49:59 UTC], ["updated_at", 2016-08-19 02:49:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Prefeito"], ["question_id", 1590], ["correct", false], ["created_at", 2016-08-19 02:49:59 UTC], ["updated_at", 2016-08-19 02:49:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Sumo-sacerdote"], ["question_id", 1590], ["correct", false], ["created_at", 2016-08-19 02:49:59 UTC], ["updated_at", 2016-08-19 02:49:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Povo"], ["question_id", 1590], ["correct", false], ["created_at", 2016-08-19 02:49:59 UTC], ["updated_at", 2016-08-19 02:49:59 UTC]]  (133.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem, na mesa de um homem rico, quis comer apenas migalhas?"], ["created_at", 2016-08-19 02:49:59 UTC], ["updated_at", 2016-08-19 02:49:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lázaro, O Mendigo"], ["question_id", 1591], ["correct", true], ["created_at", 2016-08-19 02:49:59 UTC], ["updated_at", 2016-08-19 02:49:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lázaro, Irmão de Marta"], ["question_id", 1591], ["correct", false], ["created_at", 2016-08-19 02:49:59 UTC], ["updated_at", 2016-08-19 02:49:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bartimeu, O Cego"], ["question_id", 1591], ["correct", false], ["created_at", 2016-08-19 02:49:59 UTC], ["updated_at", 2016-08-19 02:49:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belaquiel, O Leproso"], ["question_id", 1591], ["correct", false], ["created_at", 2016-08-19 02:49:59 UTC], ["updated_at", 2016-08-19 02:49:59 UTC]]  (158.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem, para se proteger, fingiu ser louco?"], ["created_at", 2016-08-19 02:49:59 UTC], ["updated_at", 2016-08-19 02:49:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1592], ["correct", true], ["created_at", 2016-08-19 02:49:59 UTC], ["updated_at", 2016-08-19 02:49:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 1592], ["correct", false], ["created_at", 2016-08-19 02:49:59 UTC], ["updated_at", 2016-08-19 02:49:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 1592], ["correct", false], ["created_at", 2016-08-19 02:49:59 UTC], ["updated_at", 2016-08-19 02:49:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 1592], ["correct", false], ["created_at", 2016-08-19 02:49:59 UTC], ["updated_at", 2016-08-19 02:49:59 UTC]]  (174.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Raquel era esposa de:"], ["created_at", 2016-08-19 02:49:59 UTC], ["updated_at", 2016-08-19 02:49:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 1593], ["correct", true], ["created_at", 2016-08-19 02:49:59 UTC], ["updated_at", 2016-08-19 02:49:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 1593], ["correct", false], ["created_at", 2016-08-19 02:49:59 UTC], ["updated_at", 2016-08-19 02:49:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 1593], ["correct", false], ["created_at", 2016-08-19 02:49:59 UTC], ["updated_at", 2016-08-19 02:49:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1593], ["correct", false], ["created_at", 2016-08-19 02:49:59 UTC], ["updated_at", 2016-08-19 02:49:59 UTC]]  (124.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Raquel morreu de parto ao nascer-lhe:"], ["created_at", 2016-08-19 02:49:59 UTC], ["updated_at", 2016-08-19 02:49:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O 2º Filho"], ["question_id", 1594], ["correct", true], ["created_at", 2016-08-19 02:49:59 UTC], ["updated_at", 2016-08-19 02:49:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O 1º Filho"], ["question_id", 1594], ["correct", false], ["created_at", 2016-08-19 02:49:59 UTC], ["updated_at", 2016-08-19 02:49:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Raquel Jamais Teve Filhos"], ["question_id", 1594], ["correct", false], ["created_at", 2016-08-19 02:49:59 UTC], ["updated_at", 2016-08-19 02:49:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trigêmeos"], ["question_id", 1594], ["correct", false], ["created_at", 2016-08-19 02:49:59 UTC], ["updated_at", 2016-08-19 02:49:59 UTC]]  (141.6ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Raquel, esposa de Jacó, morreu ao dar a luz:"], ["created_at", 2016-08-19 02:49:59 UTC], ["updated_at", 2016-08-19 02:49:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Benjamim"], ["question_id", 1595], ["correct", true], ["created_at", 2016-08-19 02:49:59 UTC], ["updated_at", 2016-08-19 02:49:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 1595], ["correct", false], ["created_at", 2016-08-19 02:49:59 UTC], ["updated_at", 2016-08-19 02:49:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rúben"], ["question_id", 1595], ["correct", false], ["created_at", 2016-08-19 02:49:59 UTC], ["updated_at", 2016-08-19 02:49:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Levi"], ["question_id", 1595], ["correct", false], ["created_at", 2016-08-19 02:49:59 UTC], ["updated_at", 2016-08-19 02:49:59 UTC]]  (150.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Rebeca ajudou o filho a praticar:"], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Fraude"], ["question_id", 1596], ["correct", true], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Roubo"], ["question_id", 1596], ["correct", false], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Assassinato"], ["question_id", 1596], ["correct", false], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Relação Sexual"], ["question_id", 1596], ["correct", false], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]]  (124.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Rebeca teve os filhos gêmeos Esaú e Jacó com:"], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 1597], ["correct", true], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sadraque"], ["question_id", 1597], ["correct", false], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mesaque"], ["question_id", 1597], ["correct", false], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 1597], ["correct", false], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]]  (135.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Roboão era o filho de Salomão que seria o sucessor no trono real, porém quem assumiu o trono?"], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeroboão"], ["question_id", 1598], ["correct", true], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 1598], ["correct", false], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Labão"], ["question_id", 1598], ["correct", false], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zebedeu"], ["question_id", 1598], ["correct", false], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]]  (124.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Rute abandonou a sua família para acompanhar:"], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Sogra"], ["question_id", 1599], ["correct", true], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Marido"], ["question_id", 1599], ["correct", false], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus 2 Filhos"], ["question_id", 1599], ["correct", false], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Patrão"], ["question_id", 1599], ["correct", false], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]]  (117.1ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Rute e Orfa receberam um beijo de tristeza de:"], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noemi"], ["question_id", 1600], ["correct", true], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Boaz"], ["question_id", 1600], ["correct", false], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ester"], ["question_id", 1600], ["correct", false], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vasti"], ["question_id", 1600], ["correct", false], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]]  (141.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Salomão, rei de Israel, praticou comércio marítimo com o reino:"], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiro"], ["question_id", 1601], ["correct", true], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônico"], ["question_id", 1601], ["correct", false], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assírio"], ["question_id", 1601], ["correct", false], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Grego"], ["question_id", 1601], ["correct", false], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]]  (124.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Sansão apaixonou-se por quem?"], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dalila"], ["question_id", 1602], ["correct", true], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 1602], ["correct", false], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Emaim"], ["question_id", 1602], ["correct", false], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Raquel"], ["question_id", 1602], ["correct", false], ["created_at", 2016-08-19 02:50:00 UTC], ["updated_at", 2016-08-19 02:50:00 UTC]]  (166.8ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Sansão queimou as plantações dos filisteus ao amarrar tochas nas caudas de qual animal?"], ["created_at", 2016-08-19 02:50:01 UTC], ["updated_at", 2016-08-19 02:50:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Raposas"], ["question_id", 1603], ["correct", true], ["created_at", 2016-08-19 02:50:01 UTC], ["updated_at", 2016-08-19 02:50:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cachorros"], ["question_id", 1603], ["correct", false], ["created_at", 2016-08-19 02:50:01 UTC], ["updated_at", 2016-08-19 02:50:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lobos"], ["question_id", 1603], ["correct", false], ["created_at", 2016-08-19 02:50:01 UTC], ["updated_at", 2016-08-19 02:50:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Leões"], ["question_id", 1603], ["correct", false], ["created_at", 2016-08-19 02:50:01 UTC], ["updated_at", 2016-08-19 02:50:01 UTC]]  (182.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Sansão visitou uma prostituta quando estava viajando pela cidade de:"], ["created_at", 2016-08-19 02:50:01 UTC], ["updated_at", 2016-08-19 02:50:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gaza"], ["question_id", 1604], ["correct", true], ["created_at", 2016-08-19 02:50:01 UTC], ["updated_at", 2016-08-19 02:50:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Efraim"], ["question_id", 1604], ["correct", false], ["created_at", 2016-08-19 02:50:01 UTC], ["updated_at", 2016-08-19 02:50:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sodoma"], ["question_id", 1604], ["correct", false], ["created_at", 2016-08-19 02:50:01 UTC], ["updated_at", 2016-08-19 02:50:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jafé"], ["question_id", 1604], ["correct", false], ["created_at", 2016-08-19 02:50:01 UTC], ["updated_at", 2016-08-19 02:50:01 UTC]]  (166.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Saul foi o:"], ["created_at", 2016-08-19 02:50:01 UTC], ["updated_at", 2016-08-19 02:50:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1º Rei de Israel"], ["question_id", 1605], ["correct", true], ["created_at", 2016-08-19 02:50:01 UTC], ["updated_at", 2016-08-19 02:50:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2º Rei de Israel"], ["question_id", 1605], ["correct", false], ["created_at", 2016-08-19 02:50:01 UTC], ["updated_at", 2016-08-19 02:50:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3º Rei de Israel"], ["question_id", 1605], ["correct", false], ["created_at", 2016-08-19 02:50:01 UTC], ["updated_at", 2016-08-19 02:50:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4º Rei de Israel"], ["question_id", 1605], ["correct", false], ["created_at", 2016-08-19 02:50:01 UTC], ["updated_at", 2016-08-19 02:50:01 UTC]]  (132.8ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Saul recebeu um beijo de coroação de:"], ["created_at", 2016-08-19 02:50:01 UTC], ["updated_at", 2016-08-19 02:50:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel"], ["question_id", 1606], ["correct", true], ["created_at", 2016-08-19 02:50:01 UTC], ["updated_at", 2016-08-19 02:50:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eli"], ["question_id", 1606], ["correct", false], ["created_at", 2016-08-19 02:50:01 UTC], ["updated_at", 2016-08-19 02:50:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 1606], ["correct", false], ["created_at", 2016-08-19 02:50:01 UTC], ["updated_at", 2016-08-19 02:50:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1606], ["correct", false], ["created_at", 2016-08-19 02:50:01 UTC], ["updated_at", 2016-08-19 02:50:01 UTC]]  (158.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Se um boi fosse roubado por alguém, quantos bois o ladrão teria de repôr ao seu proprietário?"], ["created_at", 2016-08-19 02:50:01 UTC], ["updated_at", 2016-08-19 02:50:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 1607], ["correct", true], ["created_at", 2016-08-19 02:50:01 UTC], ["updated_at", 2016-08-19 02:50:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 1607], ["correct", false], ["created_at", 2016-08-19 02:50:01 UTC], ["updated_at", 2016-08-19 02:50:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhum"], ["question_id", 1607], ["correct", false], ["created_at", 2016-08-19 02:50:01 UTC], ["updated_at", 2016-08-19 02:50:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas 1"], ["question_id", 1607], ["correct", false], ["created_at", 2016-08-19 02:50:01 UTC], ["updated_at", 2016-08-19 02:50:01 UTC]]  (167.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Sebá foi o segundo rebelde a se revoltar contra o governo do rei:"], ["created_at", 2016-08-19 02:50:01 UTC], ["updated_at", 2016-08-19 02:50:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1608], ["correct", true], ["created_at", 2016-08-19 02:50:01 UTC], ["updated_at", 2016-08-19 02:50:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1608], ["correct", false], ["created_at", 2016-08-19 02:50:01 UTC], ["updated_at", 2016-08-19 02:50:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 1608], ["correct", false], ["created_at", 2016-08-19 02:50:01 UTC], ["updated_at", 2016-08-19 02:50:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 1608], ["correct", false], ["created_at", 2016-08-19 02:50:01 UTC], ["updated_at", 2016-08-19 02:50:01 UTC]]  (142.7ms) commit transaction  (0.2ms) SELECT COUNT(*) FROM "quizzes_questions"  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Segundo a religião dos filisteus, qual deus era o filho de Dago, deus da agricultura?"], ["created_at", 2016-08-19 02:50:02 UTC], ["updated_at", 2016-08-19 02:50:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Baal"], ["question_id", 1609], ["correct", true], ["created_at", 2016-08-19 02:50:02 UTC], ["updated_at", 2016-08-19 02:50:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bel"], ["question_id", 1609], ["correct", false], ["created_at", 2016-08-19 02:50:02 UTC], ["updated_at", 2016-08-19 02:50:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Asera"], ["question_id", 1609], ["correct", false], ["created_at", 2016-08-19 02:50:02 UTC], ["updated_at", 2016-08-19 02:50:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mon-rá"], ["question_id", 1609], ["correct", false], ["created_at", 2016-08-19 02:50:02 UTC], ["updated_at", 2016-08-19 02:50:02 UTC]]  (134.2ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Segundo a religião dos filisteus, qual deus era o pai de Baal?"], ["created_at", 2016-08-19 02:50:02 UTC], ["updated_at", 2016-08-19 02:50:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dago"], ["question_id", 1610], ["correct", true], ["created_at", 2016-08-19 02:50:02 UTC], ["updated_at", 2016-08-19 02:50:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rimnon"], ["question_id", 1610], ["correct", false], ["created_at", 2016-08-19 02:50:02 UTC], ["updated_at", 2016-08-19 02:50:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bel"], ["question_id", 1610], ["correct", false], ["created_at", 2016-08-19 02:50:02 UTC], ["updated_at", 2016-08-19 02:50:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mon-rá"], ["question_id", 1610], ["correct", false], ["created_at", 2016-08-19 02:50:02 UTC], ["updated_at", 2016-08-19 02:50:02 UTC]]  (141.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Segundo o que Sansão disse a Dalila, para ele perder sua força ele deveria ser amarrado por:"], ["created_at", 2016-08-19 02:50:02 UTC], ["updated_at", 2016-08-19 02:50:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sete Tendões Não Secos"], ["question_id", 1611], ["correct", true], ["created_at", 2016-08-19 02:50:02 UTC], ["updated_at", 2016-08-19 02:50:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seis Canas de Hissopo"], ["question_id", 1611], ["correct", false], ["created_at", 2016-08-19 02:50:02 UTC], ["updated_at", 2016-08-19 02:50:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Duas Algemas de Ferro"], ["question_id", 1611], ["correct", false], ["created_at", 2016-08-19 02:50:02 UTC], ["updated_at", 2016-08-19 02:50:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4 Fios de Ouro"], ["question_id", 1611], ["correct", false], ["created_at", 2016-08-19 02:50:02 UTC], ["updated_at", 2016-08-19 02:50:02 UTC]]  (150.9ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Sem usar qualquer espécie de arma ou ferramenta, o que Davi matou?"], ["created_at", 2016-08-19 02:50:02 UTC], ["updated_at", 2016-08-19 02:50:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Leão"], ["question_id", 1612], ["correct", true], ["created_at", 2016-08-19 02:50:02 UTC], ["updated_at", 2016-08-19 02:50:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cabra"], ["question_id", 1612], ["correct", false], ["created_at", 2016-08-19 02:50:02 UTC], ["updated_at", 2016-08-19 02:50:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jumento"], ["question_id", 1612], ["correct", false], ["created_at", 2016-08-19 02:50:02 UTC], ["updated_at", 2016-08-19 02:50:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Corvo"], ["question_id", 1612], ["correct", false], ["created_at", 2016-08-19 02:50:02 UTC], ["updated_at", 2016-08-19 02:50:02 UTC]]  (157.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Sete, filho de Adão e Eva, nasceu:"], ["created_at", 2016-08-19 02:50:02 UTC], ["updated_at", 2016-08-19 02:50:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Após A Morte de Abel"], ["question_id", 1613], ["correct", true], ["created_at", 2016-08-19 02:50:02 UTC], ["updated_at", 2016-08-19 02:50:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Após A Morte de Caim"], ["question_id", 1613], ["correct", false], ["created_at", 2016-08-19 02:50:02 UTC], ["updated_at", 2016-08-19 02:50:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Antes da Morte de Abel"], ["question_id", 1613], ["correct", false], ["created_at", 2016-08-19 02:50:02 UTC], ["updated_at", 2016-08-19 02:50:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Antes de Caim"], ["question_id", 1613], ["correct", false], ["created_at", 2016-08-19 02:50:02 UTC], ["updated_at", 2016-08-19 02:50:02 UTC]]  (150.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Simão de Cerene ficou conhecido como:"], ["created_at", 2016-08-19 02:50:02 UTC], ["updated_at", 2016-08-19 02:50:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Homem Que Levou A Cruz de Jesus"], ["question_id", 1614], ["correct", true], ["created_at", 2016-08-19 02:50:02 UTC], ["updated_at", 2016-08-19 02:50:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Homem Que Enxugou O Rosto Ensanguentado de Jesus"], ["question_id", 1614], ["correct", false], ["created_at", 2016-08-19 02:50:02 UTC], ["updated_at", 2016-08-19 02:50:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Homem Cuja Legião de Demônios Saiu de Seu Corpo"], ["question_id", 1614], ["correct", false], ["created_at", 2016-08-19 02:50:02 UTC], ["updated_at", 2016-08-19 02:50:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Homem Que Batizou Jesus"], ["question_id", 1614], ["correct", false], ["created_at", 2016-08-19 02:50:02 UTC], ["updated_at", 2016-08-19 02:50:02 UTC]]  (133.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Sobre o propiciatório da Arca da Aliança haviam 2:"], ["created_at", 2016-08-19 02:50:02 UTC], ["updated_at", 2016-08-19 02:50:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Querubins"], ["question_id", 1615], ["correct", true], ["created_at", 2016-08-19 02:50:02 UTC], ["updated_at", 2016-08-19 02:50:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Castiçais"], ["question_id", 1615], ["correct", false], ["created_at", 2016-08-19 02:50:02 UTC], ["updated_at", 2016-08-19 02:50:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abajures de Ouro"], ["question_id", 1615], ["correct", false], ["created_at", 2016-08-19 02:50:02 UTC], ["updated_at", 2016-08-19 02:50:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Estrelas de Ouro"], ["question_id", 1615], ["correct", false], ["created_at", 2016-08-19 02:50:03 UTC], ["updated_at", 2016-08-19 02:50:03 UTC]]  (142.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Sobre quantas tribos de Israel Salomão reinou durante 40 anos?"], ["created_at", 2016-08-19 02:50:03 UTC], ["updated_at", 2016-08-19 02:50:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12"], ["question_id", 1616], ["correct", true], ["created_at", 2016-08-19 02:50:03 UTC], ["updated_at", 2016-08-19 02:50:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "6"], ["question_id", 1616], ["correct", false], ["created_at", 2016-08-19 02:50:03 UTC], ["updated_at", 2016-08-19 02:50:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "8 do Norte e 4 do Sul"], ["question_id", 1616], ["correct", false], ["created_at", 2016-08-19 02:50:03 UTC], ["updated_at", 2016-08-19 02:50:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 1616], ["correct", false], ["created_at", 2016-08-19 02:50:03 UTC], ["updated_at", 2016-08-19 02:50:03 UTC]]  (141.3ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Sobre que animal cavalgou Rebeca quando foi casar-se com Isaque?"], ["created_at", 2016-08-19 02:50:03 UTC], ["updated_at", 2016-08-19 02:50:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Camelo"], ["question_id", 1617], ["correct", true], ["created_at", 2016-08-19 02:50:03 UTC], ["updated_at", 2016-08-19 02:50:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jumento"], ["question_id", 1617], ["correct", false], ["created_at", 2016-08-19 02:50:03 UTC], ["updated_at", 2016-08-19 02:50:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Boi"], ["question_id", 1617], ["correct", false], ["created_at", 2016-08-19 02:50:03 UTC], ["updated_at", 2016-08-19 02:50:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cavalo"], ["question_id", 1617], ["correct", false], ["created_at", 2016-08-19 02:50:03 UTC], ["updated_at", 2016-08-19 02:50:03 UTC]]  (142.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Tabita morava na cidade de Jope, e também era conhecida por:"], ["created_at", 2016-08-19 02:50:03 UTC], ["updated_at", 2016-08-19 02:50:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dorcas"], ["question_id", 1618], ["correct", true], ["created_at", 2016-08-19 02:50:03 UTC], ["updated_at", 2016-08-19 02:50:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 1618], ["correct", false], ["created_at", 2016-08-19 02:50:03 UTC], ["updated_at", 2016-08-19 02:50:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria"], ["question_id", 1618], ["correct", false], ["created_at", 2016-08-19 02:50:03 UTC], ["updated_at", 2016-08-19 02:50:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isabel"], ["question_id", 1618], ["correct", false], ["created_at", 2016-08-19 02:50:03 UTC], ["updated_at", 2016-08-19 02:50:03 UTC]]  (141.6ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Tiago foi decapitado à espada por ordem de:"], ["created_at", 2016-08-19 02:50:03 UTC], ["updated_at", 2016-08-19 02:50:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Agripa I"], ["question_id", 1619], ["correct", true], ["created_at", 2016-08-19 02:50:03 UTC], ["updated_at", 2016-08-19 02:50:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nero"], ["question_id", 1619], ["correct", false], ["created_at", 2016-08-19 02:50:03 UTC], ["updated_at", 2016-08-19 02:50:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pilatos"], ["question_id", 1619], ["correct", false], ["created_at", 2016-08-19 02:50:03 UTC], ["updated_at", 2016-08-19 02:50:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "César Augusto"], ["question_id", 1619], ["correct", false], ["created_at", 2016-08-19 02:50:03 UTC], ["updated_at", 2016-08-19 02:50:03 UTC]]  (142.0ms) commit transaction  (0.1ms) begin transaction SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Tiago foi o primeiro apóstolo a:"], ["created_at", 2016-08-19 02:50:03 UTC], ["updated_at", 2016-08-19 02:50:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Morrer"], ["question_id", 1620], ["correct", true], ["created_at", 2016-08-19 02:50:03 UTC], ["updated_at", 2016-08-19 02:50:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ver Jesus Ressurreto"], ["question_id", 1620], ["correct", false], ["created_at", 2016-08-19 02:50:03 UTC], ["updated_at", 2016-08-19 02:50:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pregar O Evangelho Aos Gentios"], ["question_id", 1620], ["correct", false], ["created_at", 2016-08-19 02:50:03 UTC], ["updated_at", 2016-08-19 02:50:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fugir No Getsêmani"], ["question_id", 1620], ["correct", false], ["created_at", 2016-08-19 02:50:03 UTC], ["updated_at", 2016-08-19 02:50:03 UTC]]  (183.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Um dos filhos de Joquebede foi:"], ["created_at", 2016-08-19 02:50:03 UTC], ["updated_at", 2016-08-19 02:50:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1621], ["correct", true], ["created_at", 2016-08-19 02:50:03 UTC], ["updated_at", 2016-08-19 02:50:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matusalém"], ["question_id", 1621], ["correct", false], ["created_at", 2016-08-19 02:50:03 UTC], ["updated_at", 2016-08-19 02:50:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noé"], ["question_id", 1621], ["correct", false], ["created_at", 2016-08-19 02:50:03 UTC], ["updated_at", 2016-08-19 02:50:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias"], ["question_id", 1621], ["correct", false], ["created_at", 2016-08-19 02:50:03 UTC], ["updated_at", 2016-08-19 02:50:03 UTC]]  (158.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Uma das pragas que acometeram o Egito foi que as águas do rio Nilo se transformaram em:"], ["created_at", 2016-08-19 02:50:04 UTC], ["updated_at", 2016-08-19 02:50:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sangue"], ["question_id", 1622], ["correct", true], ["created_at", 2016-08-19 02:50:04 UTC], ["updated_at", 2016-08-19 02:50:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Óleo"], ["question_id", 1622], ["correct", false], ["created_at", 2016-08-19 02:50:04 UTC], ["updated_at", 2016-08-19 02:50:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Petróleo"], ["question_id", 1622], ["correct", false], ["created_at", 2016-08-19 02:50:04 UTC], ["updated_at", 2016-08-19 02:50:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lama"], ["question_id", 1622], ["correct", false], ["created_at", 2016-08-19 02:50:04 UTC], ["updated_at", 2016-08-19 02:50:04 UTC]]  (209.1ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Uma vez que Daniel não queria contaminar-se com a alimentação impura da mesa do rei, qual era a alimentação de Daniel?"], ["created_at", 2016-08-19 02:50:04 UTC], ["updated_at", 2016-08-19 02:50:04 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Legumes"], ["question_id", 1623], ["correct", true], ["created_at", 2016-08-19 02:50:04 UTC], ["updated_at", 2016-08-19 02:50:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pão Não Fermentado"], ["question_id", 1623], ["correct", false], ["created_at", 2016-08-19 02:50:04 UTC], ["updated_at", 2016-08-19 02:50:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assado de Carneiro"], ["question_id", 1623], ["correct", false], ["created_at", 2016-08-19 02:50:04 UTC], ["updated_at", 2016-08-19 02:50:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gafanhotos e Mel Silvestre"], ["question_id", 1623], ["correct", false], ["created_at", 2016-08-19 02:50:04 UTC], ["updated_at", 2016-08-19 02:50:04 UTC]]  (226.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Uzá perdeu a vida pelo fato de:"], ["created_at", 2016-08-19 02:50:04 UTC], ["updated_at", 2016-08-19 02:50:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ter Tocado A Arca de Deus"], ["question_id", 1624], ["correct", true], ["created_at", 2016-08-19 02:50:04 UTC], ["updated_at", 2016-08-19 02:50:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cometido Adultério"], ["question_id", 1624], ["correct", false], ["created_at", 2016-08-19 02:50:04 UTC], ["updated_at", 2016-08-19 02:50:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Furtado Um Carro de Boi"], ["question_id", 1624], ["correct", false], ["created_at", 2016-08-19 02:50:04 UTC], ["updated_at", 2016-08-19 02:50:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amaldiçoado O Rei Zinri"], ["question_id", 1624], ["correct", false], ["created_at", 2016-08-19 02:50:04 UTC], ["updated_at", 2016-08-19 02:50:04 UTC]]  (142.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Vasti perdeu a condição de rainha pelo fato de ter-se recusado a aparecer diante de:"], ["created_at", 2016-08-19 02:50:04 UTC], ["updated_at", 2016-08-19 02:50:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Bando de Bêbados"], ["question_id", 1625], ["correct", true], ["created_at", 2016-08-19 02:50:04 UTC], ["updated_at", 2016-08-19 02:50:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Palhaços"], ["question_id", 1625], ["correct", false], ["created_at", 2016-08-19 02:50:04 UTC], ["updated_at", 2016-08-19 02:50:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Líderes Religiosos Pagãos"], ["question_id", 1625], ["correct", false], ["created_at", 2016-08-19 02:50:04 UTC], ["updated_at", 2016-08-19 02:50:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Sumo Sacerdote"], ["question_id", 1625], ["correct", false], ["created_at", 2016-08-19 02:50:04 UTC], ["updated_at", 2016-08-19 02:50:04 UTC]]  (149.5ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Vinde a Jesus, todos aqueles que estiverem de que forma, para que possam ser aliviados?"], ["created_at", 2016-08-19 02:50:04 UTC], ["updated_at", 2016-08-19 02:50:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cansados e Oprimidos"], ["question_id", 1626], ["correct", true], ["created_at", 2016-08-19 02:50:04 UTC], ["updated_at", 2016-08-19 02:50:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Auto-suficientes"], ["question_id", 1626], ["correct", false], ["created_at", 2016-08-19 02:50:04 UTC], ["updated_at", 2016-08-19 02:50:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Envolvidos Em Idolatria"], ["question_id", 1626], ["correct", false], ["created_at", 2016-08-19 02:50:04 UTC], ["updated_at", 2016-08-19 02:50:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Orgulhosos"], ["question_id", 1626], ["correct", false], ["created_at", 2016-08-19 02:50:04 UTC], ["updated_at", 2016-08-19 02:50:04 UTC]]  (107.7ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Wycliffe fez a primeira tradução completa da Bíblia no ano de 1380 para qual idioma?"], ["created_at", 2016-08-19 02:50:04 UTC], ["updated_at", 2016-08-19 02:50:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Inglês"], ["question_id", 1627], ["correct", true], ["created_at", 2016-08-19 02:50:04 UTC], ["updated_at", 2016-08-19 02:50:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Alemão"], ["question_id", 1627], ["correct", false], ["created_at", 2016-08-19 02:50:04 UTC], ["updated_at", 2016-08-19 02:50:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Espanhol"], ["question_id", 1627], ["correct", false], ["created_at", 2016-08-19 02:50:04 UTC], ["updated_at", 2016-08-19 02:50:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Italiano"], ["question_id", 1627], ["correct", false], ["created_at", 2016-08-19 02:50:04 UTC], ["updated_at", 2016-08-19 02:50:04 UTC]]  (133.4ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Zaqueu subiu em uma árvore para poder enxergar melhor a:"], ["created_at", 2016-08-19 02:50:05 UTC], ["updated_at", 2016-08-19 02:50:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 1628], ["correct", true], ["created_at", 2016-08-19 02:50:05 UTC], ["updated_at", 2016-08-19 02:50:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria Madalena"], ["question_id", 1628], ["correct", false], ["created_at", 2016-08-19 02:50:05 UTC], ["updated_at", 2016-08-19 02:50:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 1628], ["correct", false], ["created_at", 2016-08-19 02:50:05 UTC], ["updated_at", 2016-08-19 02:50:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lázaro Ressuscitado"], ["question_id", 1628], ["correct", false], ["created_at", 2016-08-19 02:50:05 UTC], ["updated_at", 2016-08-19 02:50:05 UTC]]  (134.0ms) commit transaction  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Zebedeu foi pai de quais discípulos de Jesus?"], ["created_at", 2016-08-19 02:50:05 UTC], ["updated_at", 2016-08-19 02:50:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago e João"], ["question_id", 1629], ["correct", true], ["created_at", 2016-08-19 02:50:05 UTC], ["updated_at", 2016-08-19 02:50:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro e Felipe"], ["question_id", 1629], ["correct", false], ["created_at", 2016-08-19 02:50:05 UTC], ["updated_at", 2016-08-19 02:50:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João e Pedro"], ["question_id", 1629], ["correct", false], ["created_at", 2016-08-19 02:50:05 UTC], ["updated_at", 2016-08-19 02:50:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe e Natanael"], ["question_id", 1629], ["correct", false], ["created_at", 2016-08-19 02:50:05 UTC], ["updated_at", 2016-08-19 02:50:05 UTC]]  (124.3ms) commit transaction  (104.0ms) SELECT COUNT(*) FROM "quizzes_answers"  (0.3ms) SELECT COUNT(*) FROM "quizzes_questions" Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.4ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.2ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "10 anos após o reino de Israel ter sido capturado, qual nação tomou as cidades fortificadas de Judá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "2 dias antes da celebração da Páscoa, na casa de quem Jesus jantou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "2 dias antes da celebração da Páscoa, Simão, o leproso, ofereceu a Jesus um:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "42 mil pessoas perderam a sua vida por não saberem pronunciar qual palavra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "5.000 pessoas foram alimentadas por Jesus através do milagre da multiplicação de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A bênção da primogenitura de Jacó deveria ser dada a:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A bênçao da primogenitura era para ser dada ao:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A cesta onde Moisés foi depositado foi coberto por betume, para evitar que esta:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A cesta onde Moisés foi depositado foi coberto por betume, para fazer com que:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A cidade de Jerusalém foi atacada 3 vezes pelos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A escuridão que se abateu devido à Crucificação de Jesus ocorreu:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A esposa de quem tentou cometer adultério com José?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A estrada de Jerusalém para Jericó foi utilizada por Jesus na parábola:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A família de quem foi salva de Sodoma, antes que a mesma tivesse sido destruída por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A família de quem o Faraó disse que fosse acomodada na cidade do Gósen?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A filha de Herodias dançou para:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A grande maioria das porções do Antigo Testamento foi escrita em:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A imagem do que apareceu nos sonhos do rei Nabucodonosor?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A mãe de Receba sugeriu que ela ficasse com seus parentes por mais 10 dias antes de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "À medida que o terceiro ataque de Nabucodonosor sobre Jerusalém continuava, o que ocorria dentro da cidade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A pedido do rei Jeroboão, quem precisou disfarçar-se quando foi procurar o profeta Aías?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A qual partido religioso pertencia Nicodemos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A qual povo Deus proveu o maná?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A qual profeta uma jumenta comprimiu o pé contra o muro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A qual rei o profeta Aías deu a mensagem de que todos os homens da casa real seriam mortos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quantos discípulos Jesus instruiu para que o acompanhassem em oração no Jardim do Getsêmani?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A que animal é comparado Satanás?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A que horas do dia Jesus foi levado ao sumo sacerdote e aos anciãos e foi considerado culpado de blasfêmia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A que rei foram trazidos bugios e pavões?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Abraão deixou todos os seus bens ao morrer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Absalão deu beijos políticos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Amnon, filho de Davi, estuprou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem as esposas hetéias de Esaú trouxeram muita amargura de espírito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Deus acrescentou mais 15 anos de vida, quando esta pessoa contraiu uma doença fatal?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem deveria ser levado uma pessoa que possuísse manchas na pele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Elias desafiou no Monte Carmelo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Eliseu ajudou, enchendo várias vasilhas de azeite?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem foi oferecido, por acidente, um caldo venenoso?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Hamã ofereceu 10.000 talentos de prata, com o objetivo de exterminar os judeus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Jacó deu um beijo enganoso?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Jacó fingiu ser?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Jesus disse da necessidade em nascer de novo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Jesus pediu que fossem buscar um jumento emprestado para entrar em Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Jesus perguntou 3 vezes se esta pessoa O amava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Joabe matou para acabar com a rebelião contra o reino de Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem João Batista estava se dirigindo quando disse a frase: \"Raça de víboras, quem vos ensinou a fugir da ira vindoura?\""], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem José disse a frase: \"Vós sois espias\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Labão enganou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Maria, mãe de Jesus, visitou quando ela descobriu que estava grávida?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Noemi deu um beijo de tristeza?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o anjo Gabriel avisou que Maria foi escolhida para ser a mãe de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o Faraó nomeou como governador de todo o Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o povo pediu que libertassem a Barrabás do que a Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o profeta Eliseu orientou lavar-se 7 vezes no rio Jordão para curar-se da lepra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o rei Davi devolveu todas as propriedades pessoais de Saul?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o rei Davi, do teto de sua casa, viu banhando-se?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o rei Ezequias mostrou tolamente os tesouros do Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o rei Manassés queimou em sacrifício?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o servo de Abraão deu como agradecimento 1 argola de ouro e 2 pulseiras de ouro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem os príncipes filisteus ofereceram 1.100 moedas de prata de cada um deles?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem os príncipes filisteus pediram que conseguisse descobrir o segredo da força de Sansão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem os Reis Magos estavam procurando como o menino \"Rei dos Judeus\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem os soldados egípcios estavam perseguindo quando o Mar Vermelho dividiu-se em dois?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Rebeca ajudou a praticar uma fraude?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Rute abandonou para poder acompanhar a sogra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Samuel deu um beijo de coroação?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Sansão pediu uma filha dos filisteus, quando este foi à cidade de Timnate?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Satanás levou ao pináculo do Templo e o tentou para saltar dali?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A rainha Jezabel foi casada com o rei:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A sogra de Pedro foi curada por Jesus na cidade de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A unção e o beijo que eram dados eram sinais de que:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A vara que brotou pertencia a:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Abel e Caim tiveram mais quantos irmãos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Abraão também foi conhecido com o:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Abraão teve filhos com quantas mulheres?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Absalão era celebrado devido à:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Absalão matou Amnom pelo fato deste ter estuprado Tamar. Qual era o grau de parentesco entre Amnom e Absalão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Absalão tentou tomar à força o reino de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Adão e Eva moravam em qual jardim?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Agar era de Sara, esposa de Abraão:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Aitofel, influente conselheiro do rei Davi, desertou para o lado de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além da safra de centeio, qual outra safra dos egípcios sobreviveu quando Deus enviou as pedras de fogo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além da safra de cevada, qual outra safra dos egípcios foi destruída em decorrência da praga das pedras de fogo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além da safra de linho, qual outra safra dos egípcios foi destruída em decorrência da praga das pedras de fogo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além da safra de trigo, qual outra safra dos egípcios sobreviveu quando Deus enviou as pedras de fogo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Daniel, quantas pessoas mais foram nomeadas Presidentes do reino da Babilônia pelo rei Dario?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de incenso, quais os outros presentes dados ao menino Jesus pelos Reis Magos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Jacó do Egito, quem mais foi embalsamado de acordo com a tradição egípcia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Jambres, como era o nome do outro mago do Faraó que conseguiu imitar 2 pragas enviadas por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Janes, como era o nome do outro mago do Faraó que conseguiu imitar 2 pragas enviadas por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Jesus, quantas pessoas mais foram crucificadas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de José do Egito, quem mais foi embalsamado de acordo com a tradição egípcia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Orfa, a quem mais Noemi deu um beijo de tristeza?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Pedro, quem mais estava pescando quando ambos foram chamados por Jesus para serem Seus discípulos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de profeta, Natã também foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de rei, Melquisedeque também foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Rute, a quem mais Noemi deu um beijo de tristeza?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de sacerdote, Melquisedeque também foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de seu filho Roboão, quem mais cultuava ídolos na casa de Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Sodoma, qual foi a outra cidade que também foi destruída por Deus através de fogo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além do sumo sacerdote, quem mais presenciou Jesus ter sido culpado por blasfêmia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além dos 120 Presidentes nomeados pelo rei Dario, que cargos também foram nomeados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além dos 3 Presidentes nomeados pelo rei Dario, que outros cargos foram nomeados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além dos anciãos, quem mais presenciou Jesus ter sido culpado por blasfêmia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além dos escribas, quem mais Herodes levou consigo a fim de descobrir onde Cristo iria nascer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além dos sacerdotes, quem mais Herodes levou consigo a fim de descobrir onde Cristo iria nascer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Amnom, filho de Davi, estuprou a Tamar. Qual era o grau de parentesco entre eles?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Amnon e Sefatias foram filhos do rei:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ana emprestou seu filho a:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Anake foi o pai de uma raça de gigantes conhecida como os:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "André, apóstolo de Jesus, tinha um irmão pescador que também aceitou o chamado de Jesus. Seu nome era:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Anrão teve como filhos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes da Páscoa dos judeus, por que os judeus estavam saindo do país e indo para Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de casar-se com o rei Assuero, Ester foi criada pelo seu primo:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de desertar para o lado de Absalão, a quem o influente Aitofel servia como conselheiro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de Paulo ir da cidade de Filipos à cidade de Trôade, qual festividade foi celebrada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de ser curado de sua cegueira, o que Bartimeu estava fazendo na estrada próximo a Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de tentar tirar um argueiro do olho ne nosso irmão, o que devemos tirar de nosso próprio olho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de ungir os pés de Jesus, o que a mulher pecadora fez com os seus pés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes do povo de Israel gritar para que os muros da cidade de Jericó caíssem, qual instrumento eles tocaram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Anualmente, Pôncio Pilatos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ao final dos 10 dias que durou o perído de testes da alimentação de Daniel e seus amigos, como eles estavam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ao receber a visão de um lençol cheio de animais, o que Deus disse a Pedro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ao ver Jesus ser levado preso à presença de Pôncio Pilatos, como Judas se sentiu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Aonde a rainha de Sabá foi visitar o rei Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Aos cidadãos de Israel Absalão deu:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Apesar de Elias ter sido um profeta de Deus, quem ainda assim tentou matá-lo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Apesar de ter sido ressuscitado por Jesus, quem estava pretendendo matar Lázaro novamente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a água virar sangue, como os egípcios conseguiram água fresca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a Arca da Aliança ter sido colocada no Templo de Jerusalém, o mesmo encheu-se de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a destruição dos rebeldes, como o povo israelita reagiu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a divisão do reino, em qual cidade Jeroboão, Rei das tribos do norte, fez sua morada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a interpretação dos seus sonhos, o rei Nabucodonosor deu a Daniel qual cargo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a luta com Deus, Jacó passou a se chamar:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a luta com Deus, o que o anjo deu a Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a morte de Herodes, para onde José levou Maria e Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a morte de quem o rei Davi finalmente teve seu trono restituído?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a ressureição de Jesus, durante 40 dias ele:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a ressurreição de Jesus, quem foi subornado para dizer que o seu corpo havia sido levado embora?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a ressurreição de Jesus, quem subornou os guardas para dizer que o Seu corpo havia sido levado embora?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Absalão, quem foi o próximo rebelde a se revoltar contra o governo do rei Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Amnom, filho de Davi, ter fingido estar doente, o que aconteceu a Tamar ao visitá-lo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após deixar Raabe, onde os espias enviados por Josué se refugiaram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Deus ter descido ao Templo de Jerusalém, o que Salomão fez ao povo que estava presente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Eliseu ter morrido e sepultado, o que aconteceu ao morto que foi jogado em seu túmulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Êutico ter morrido devido à queda de uma janela ao ter adormecido, o que Paulo fêz com ele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Jael ter acolhido seu inimigo, o que ela fez a ele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Jesus ter montado no jumento, o que os discípulos colocaram à Sua frente na estrada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Jesus ter ressucitado, durante quanto tempo Ele apresentou-se vivo às pessoas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Noé ter entrado na arca, quanto tempo ainda levou para começar a chover?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após o final do Dilúvio, quanto tempo ainda demorou para a arca de Noé finalmente encostar em terra seca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após o rei Davi ter jejuado e orado por 7 dias pela vida do seu filho, o que aconteceu a este?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após o retorno do cativeiro da Babilônia, os idosos do povo judeu choraram após terem visto a reconstrução:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após o Sinédrio ter considerado Jesus culpado por blasfêmia, para onde o levaram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após os filisteus terem aprisionado Sansão, o que obrigaram-no a fazer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Pedro ter sido libertado da prisão por um anjo, Pedro foi para a casa de Maria. Ela era de João Marco:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Pedro ter sido libertado da prisão por um anjo, Pedro foi para a casa de Maria:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter arrancado as portas de entrada da cidade de Gaza, para onde Sansão as levou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter brotado, a vara de Arão produziu:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter conversado com Jesus, o que Pôncio Pilatos quis fazer com Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter matado a Amnom, para qual cidade Absalão fugiu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter passado pela Macedônia e ido à Grécia, qual era o próximo destino que Paulo planejava ir?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter passado pela Macedônia, qual apóstolo ficou 3 meses na Grécia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter passado pela Macedônia, qual foi o próximo destino de Paulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter sido cercado pelo exército babilônico pela 3ª vez, o que o rei Zedequias tentou fazer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter sido construída, que ordens o rei Nabucodonosor deu ao seu povo com relação à estátua?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter sido curado da cegueira, qual foi o novo nome de Saulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter sido nomeado governador do Egito, José possuia um cargo de alto-escalão, apenas abaixo do:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter soltado a pomba pela 3ª vez e ela não ter retornado à arca, o que Noé concluiu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter traído Jesus por dinheiro e ter-se arrependido, a quem Judas tentou devolver o dinheiro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter traído Jesus, Judas Iscariotes arrependeu-se e suicidou-se:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter vestido os panos de saco, o rei Nínive sentou sobre:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter visitado a Macedônia e a Grécia, Paulo desejava ir para a Síria. Qual motivo levou Paulo a retornar à Macedônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após terem cruzado o rio Jordão, em que local os israelitas pararam pela 1ª vez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após terem espancado Jesus, o que os soldados romanos fizeram com a cana que haviam colocado em Suas mãos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após terem visitado o menino Jesus, como eles foram alertados para que não voltassem a Herodes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após terem visitado o menino Jesus, quem foi advertido para que não fossem novamente a Herodes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Arão, chefe de uma das tribos de Israel, era o líder de qual tribo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "As cinzas do forno foram utilizadas por Moisés e Arão para enviar contra os egípcios a praga dos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "As doze tribos de Israel nasceram através do casamento da linhagem de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "As portas de qual cidade Sansão arrancou e levou para o cume de um monte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "As roupas confeccionadas com pêlo de camelo foram usadas por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Assim que Moisés desceu do Monte Sinai pela 1ª vez e viu que o povo estava adorando um ídolo, o que Moisés fez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Atalia tentou destruir o rei Jeoás. Qual era o grau de parentesco entre eles?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Através de uma estrela, os Reis Magos foram levados até:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Baal era um deus cultuado pelo povo da terra de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Balaão estava sentado em uma jumenta quando lhe apareceu:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Balaão tinha um burro que chegou a falar após ter visto:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Baraque, comandante de Israel, disse que só iria à batalha se fosse acompanhado por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Bate-Seba foi casada com o oficial:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Bate-Seba pediu ao rei Davi para que escolhesse qual filho para lhe suceder no trono real?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Betuel foi o pai de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Cafarnaum era a cidade natal dos discípulos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Cão, Sem e Jafé são filhos de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Certa noite, em uma caverna, Jacó lutou contra:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Certa vez, o ferro de um machado caiu acidentalmente em um lago. Quem orou que fez com que o ferro voltasse à tona?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com o que a cesta onde Moisés foi depositado era coberto, para que a esta não afundasse?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com o que Maria envolveu o menino Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com o que os soldados romanos bateram na cabeça de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com o que Sansão matou 1.000 filisteus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com o seu exército, Nabucodonosor derrubou os muros de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com qual deus grego Barnabé foi confundido, enquanto estava com Paulo na cidade de Listra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com qual deus grego Paulo foi confundido quanto encontrava-se na cidade de Listra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com qual idade Jeoás passou a reinar sobre a nação israelita?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com quantos dias de vida Jesus foi circuncidado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com quantos dias deveria ser circuncidado um menino recém nascido?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com que espécie de madeira foi construída a arca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com que material Noé revestiu a arca, tanto internamente quanto externamente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com quem a rainha Vasti era casada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com quem Zípora e Jetro tinham um grau de parentesco em comum?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com relação a Jesus, ao invés de quebrar as Suas pernas, o que os soldados romanos fizeram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com relação à rebelião de Corá, Datã e Abirão, que fez com que o chão os engolisse?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como as árvores utilizadas na construção do Templo de Salomão foram transportadas do Líbano para a Palestina?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como Bate-Seba respondeu à notícia de que seu marido Urias havia morrido em batalha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como Deus lidou com a rebelião de Corá, Datã e Abirão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como é conhecido o dia de descanso dos judeus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como era o nome da esposa de Áquila, que auxiliou no ministério de Paulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como era o nome da esposa do rei Acazias, que desejava matar a Elias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como Israel comemorou a passagem pelo Mar Vermelho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como João Batista morreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como o rei Davi foi punido pelo fato de ter cometido adultério e assassinato?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como o rei Davi respondeu às acusações do profeta Namã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como o rei Nabucodonosor reagiu após Deus ter dado a Daniel a interpretação correta dos sonhos do rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como os judeus fizeram a dedicação do Templo, quando o processo de reconstrução foi concluído?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como Potifar respondeu à acusação de sua esposa contra José?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como Sansão deveria ser criado por sua mãe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava a esposa de Isaque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava a filha de Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava a irmã de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava a mãe de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o 1º filho de Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o irmão de Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o irmão de Ismael?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o irmão do gigante Golias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o irmão gêmeo de Esaú?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o nome do pai de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o primeiro filho de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o principal deus da agricultura dos filisteus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o sogro de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como terminou a rebelião entre Davi e Absalão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Contra quem Absalão, filho de Davi, vingou o estupro que foi cometido contra Tamar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Cornélio, uma pessoa honrada e temente a Deus, era:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Da família de Moisés, quem era o caçula?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dalila traiu Sansão por causa de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Daniel foi levado cativo para o reino da Babilônia quando a mesma era governada por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das 10 pragas que Deus enviou ao Egito, quantas os magos do Faraó puderam imitar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das alternativas abaixo, qual delas não era uma das regiões da Palestina na época em que Jesus viveu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das alternativas abaixo, qual é o companheiro de Paulo que não o estava aguardando na cidade de Trôade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das alternativas abaixo, quem não foi filho de Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das Montanhas do Líbano foram extraídas cedro e cipreste utilizadas na construção:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das mulheres abaixo, qual delas não teve filhos com Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das mulheres abaixo, qual delas teve flhos com Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das opções abaixo, qual delas não foi utilizada na placa que foi pregada na cruz de Cristo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das vezes que Noé soltou uma pomba para verificar se havia terra seca, em qual delas a pomba trouxe um ramo de oliveira?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Davi apanhou 5 pedras no chão para matar o gigante Golias. Quantas ele usou para matá-lo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Davi foi o:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Davi teve como cunhado:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com os Dez Mandamentos, a quem devemos honrar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 2:10, quando a sabedoria adentra o coração, o que se tornará agradável para sua alma?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 2:11-12, o que uma pessoa de discrição e conhecimento será desviada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 2:7, o que é o Senhor para aqueles que andam em integridade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 2:8, o Senhor guarda o caminho da justiça e faz o que para os devotos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 29:11, o que o tolo sempre perde e o sábio retém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 3:3, o que deverá ser atado ao redor da garganta e escrito nas tábuas do coração?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 30:20, a mulher adúltera come, limpa sua boca e diz o quê?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 30:33, bater o leite produz manteiga, premer o nariz produz sangue e premer a ira produz?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 30:5, Deus é o escudo para aqueles que se refugiam nEle porque todo o Seu trabalho é:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 31:9, para quem você deveria abrir sua boca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De qual madeira era feita a Arca da Aliança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De qual nação Deus matou 185.000 quando estes estavam tentando tomar Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De qual profeta Hilquias era filho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que direção vieram os Reis Magos quando foram ver o menino Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que era feito o propiciatório da Arca da Aliança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que forma foram transportadas as árvores de cedro compradas por Salomão para a construção do Templo de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que forma Jesus morreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que forma Raquel morreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que lado do barco Jesus havia dito para que os discípulos jogassem suas redes, após uma noite inteira sem pescar nada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem era o sepulcro onde Jesus foi colocado depois de crucificado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem eram as mesas que Jesus virou no Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem Husai era amigo, e que fingiu estar apoiando Absalão apenas para ficar informado sobre os planos da rebelião?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem Jesus expulsou 7 demônios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem José, filho de Jacó, interpretou os sonhos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem o rei Acaz queria comprar uma vinha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Debaixo de que árvore Elias se sentou desanimado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Débora foi a babá de quem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Débora, a profetisa, certa vez chegou a liderar:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Débora, a profetisa, também foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dentre as alternativas abaixo, qual deles não é filho de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dentre as alternativas abaixo, qual era a alimentação que João Batista não utilizava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dentre as alternativas abaixo, qual não foi um presente dado ao menino jesus pelos reis Magos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dentre as opções abaixo, qual deles não foi apóstolo de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Depois de passar pela Macedônia, quantos meses Paulo ficou na Grécia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Depois de ter sido vendido pelos seus irmãos, José se tornou escravo em qual país?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Depois que José do Egito interpretou o sonho do Faraó, que presente ele ganhou do Faraó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Depois que um pupilo é completamente treinado, como ele será?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Deus criou o Jardim do Éden que era molhado por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Deus curou o general sírio Naamã de qual enfermidade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Devido ao saque cometido contra a cidade de Jericó, qual foi a punição imposta a Acã e sua família?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Do que a rainha Jezabel acusou Nabote, para com isso poder prender Nabote e tomar a vinha que ele tinha em suas terras?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Do que eram feitas as roupas de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Do que Sansão precisou após ter matado 1.000 homens com apenas uma única queixada de jumento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dorcas era uma mulher bondosa e caridosa que morava na cidade de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dorcas, uma mulher bondosa e caridosa, também era conhecida como:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos 10 homens que sofriam de lepra e que foram curados por Jesus, quantos deles retornaram para agradecer pela cura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos 30.000 trabalhadores que foram designados para construírem o Templo de Jerusalém, quantos trabalhavam no mês?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos amigos de Daniel, quem foi jogado em uma fornalha ardente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos filhos de Adão e Eva, Abel foi o:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos filhos de Adão e Eva, Caim foi o:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos filhos de Adão e Eva, Sete foi o:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos livros da Bíblia abaixo, qual deles não termina com um ponto de interrogação?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos livros da Bíblia abaixo, qual deles tem apenas 1 único capítulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos livros da Bíblia abaixo, qual deles tem mais de 1 capítulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos livros da Bíblia abaixo, qual deles termina com um ponto de interrogação?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos livros da Bíblia abaixos, qual deles não contém a palavra \"Deus\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante 6 dias, quantas voltas por dia o povo de Israel marchava ao redor dos muros da cidade de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante a Última Ceia, a quem Jesus ofereceu um bocado de pão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante a Última Ceia, com que objetivo Jesus ofereceu um bocado de pão a Judas Iscariotes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante a Última Ceia, que gesto Jesus efetuou para sinalizar quem seria o traidor dentre os 12 discípulos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante a Última Ceia, quem ofereceu um bocado de pão a Judas Iscariotes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante a viagem de Paulo a Roma, o que desapareceu durante muitos dias devido à forte tempestade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante o 2º ataque de Nabucodonosor à cidade de Jerusalém, quem não foi levado cativo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante o ministério de Jesus, quem governava a Galiléia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante o reinado de Ezequias no reino de Judá, o que ocorreu com o reino de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante o tempo que ficou cego, o que Paulo não fez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante os 40 dias em que jesus esteve no deserto, o que ele fez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quanto tempo Jacó concordou em trabalhar para seu futuro sogro para poder desposar Raquel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quanto tempo não chovia quando então o profeta Elias orou por chuva?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quanto tempo o rei Jeoás reinou sobre a nação israelita?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quanto tempo o Rei Nabucodonosor achava que era um animal, e agia como tal?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quanto tempo Paulo ficou cego, até ser curado por Ananias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quantos anos Jacó precisou trabalhar para seu futuro sogro para poder desposar Raquel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quantos anos o povo israelita peregrinou pelo Deserto?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante sua última semana de vida, enquanto não estava em Jerusalém Jesus estava na cidade de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ebede-Meleque, que havia salvo o profeta Jeremias de morrer em uma cisterna com lama, era:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Elias mandou matar os profetas de qual deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Elias subiu aos Céus através de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Elias teve o privilégio de comer uma refeição preparada por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Elifaz, uma das pessoas que repreendeu a Jó, era de nacionalidade:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em 1961, foi encontrada em Cesaréia uma inscrição que fazia menção de um prefeito na época de Jesus. Quem foi mencionado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em Caná ocorreu:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em Éfeso, quem se zangou com Paulo e os discípulos e instigou uma revolta contra eles?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em lugar de Isaque, que animal Deus providenciou para Abraão oferecer em sacrifício?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em Malta naufragou o navio onde estava:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual ano de seu reinado Salomão iniciou a construção do Templo de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual árvore ficou preso Absalão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual árvore Zaqueu subiu para poder enxergar melhor Jesus no meio da multidão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual cidade encontrava-se Nabucodonosor quando o rei Zedequias foi levado à sua presença para receber a sentença final?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual cidade Jesus nasceu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual cidade Maria, mãe de Jesus, morava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual cidade Nabucodonosor derrotou o rei Neco e seu exército egípcio?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual cidade os discípulos de Jesus foram chamados cristãos pela 1ª vez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual lugar estranho Jesus falou para Pedro encontrar uma moeda para pagar o imposto do Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual mar André estava pescando quando Jesus o chamou para ser discípulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual mar Pedro estava pescando quando Jesus o chamou para ser discípulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual monte Abraão quase sacrificou seu filho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Elias desafiou os sacerdotes de Baal?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual monte fixou-se a arca de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Jesus chorou sobre Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Josué pronunciou as bênçãos dadas a Israel devido à sua obediência?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Moisés passou 40 dias com Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Moisés recebeu de Deus a missão para tirar o povo de Israel da escravidão do Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Moisés viu um arbusto em chamas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte o rei Saul e seus filhos foram derrotados pelos filisteus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Salomão construiu o Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual província ocorreu o 1º milagre de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual região montanhosa foi feita uma aliança entre Jacó e Labão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual rio Jesus foi batizado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual rio João Batista batizava as pessoas para que se arrependessem e buscassem o perdão de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual rio Moisés foi colocado em uma cesta, quando bebê?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual rio o profeta Eliseu orientou Naamã se molhar 7 vezes para se curar da lepra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em quantas línguas Pôncio Pilatos escreveu na placa que pregou na cruz de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em quantas raposas Sansão amarrou fachos incediadas em suas caudas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que ano a Bíblia foi dividida em capítulos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que ano a Bíblia foi dividida em versículos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que cidade Jesus e seus pais haviam ido para a comemoração da Páscoa dos judeus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que condição física estavam Sadraque, Mesaque e Abede-Nego quando eles saíram da fornalha ardente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que local Jesus foi crucificado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que local Moisés escondeu o egípcio que havia matado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que local Moisés foi sepultado por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que monte Moisés viu a Terra Prometida?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que Monte morreu Arão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que ocasião Jesus amaldiçoou uma figueira?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que orquestra tocava Jaaziel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que resultou a falsa acusação de que José havia tentado seduzir a esposa de Potifar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em resposta aos resmungos do povo israelita pelo fato dos rebeldes terem sido destruídos, o que Deus enviou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Judas fez após os sumos sacerdotes terem recusado a devolução das 30 moedas de prata?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Judas fez depois de trair Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Lázaro, o mendigo, quis comer da mesa do homem rico?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que levou os Reis Magos até o menino Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Melquisedeque foi ao mesmo tempo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Moisés e Arão pediram ao Faraó em relação aos israelitas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Moisés encontrou no Monte Horebe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Moisés foi instruído a fazer pelo fato de estar em solo sagrado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Moisés recebeu de Deus no Monte Sinai?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Moisés viu que estava em chamas, mas que não se consumia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Nabote possuía em suas terras que o rei Acaz queria comprar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Noé construiu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Noé enviou da arca, que ao retornar trouxe um ramo de oliveira em seu bico?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o Faraó deu a José pelo fato de ter interpretado os seus sonhos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o Faraó mandou fazer que fosse feito contra todos os bebês hebreus do sexo masculino que nascessem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei babilônico Belsazar viu na parede de diferente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Davi desejava construir, mas que foi negado por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Ezequias construiu para permitir que a água fosse levada à cidade de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Ezequias tolamente mostrou aos babilônios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Jeroboão pediu à sua esposa que fizesse quando esta fosse encontrar-se com o profeta Aías?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Manassés fez no Templo de Jerusalém quando reinou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Nabucodonosor mandou construir para que todos se prostrassem e adorassem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em sua rebelião, de quem eram os 250 seguidores que morreram consumidos pelo fogo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em sua viagem à Roma, onde naufragou o navio em que Paulo viajava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em toda a Bíblia, além de Jesus quem mais jejuou 40 dias e 40 noites?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em um de seus casamentos, ao casar-se com a filha do Faraó, Salomão fez aliança com o reino:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em uma das ocasiões em que Pedro orava no telhado, que visão ele recebeu de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Enquanto estava na casa de Simão, o leproso, o que uma mulher fez com um vaso de alabastro cheio de bálsamo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Enquanto esteve na cidade de Jope, Pedro esteve hospedado na casa de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Enquanto Sansão estava com uma prostituta, o que o povo da cidade de Gaza estava fazendo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Entre as alternativas abaixo, o que não havia dentro da Arca da Aliança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Entre os filhos de Davi, qual deles não nasceu durante seu reinado em Hebrom?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Entre os irmãos Moisés, Arão e Míriã, qual dentre eles era o mais velho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Esaú vendeu seu direito de filho mais velho em troca de quê?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Esaú, filho de Isaque e Rebeca, era:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ester casou-se com o rei persa:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ester, após ter casado com o rei Assuero, passou a ser a rainha do império:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Foi levado para o cativeiro da Babilônia:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Gamaliel foi professor do apóstolo:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Há quantas promessas na Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Herodes Agripa mandou matar os apóstolos pois sentia que o cristianismo era uma ameaça à sua religião:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Herodes decretou que todos os meninos fossem mortos com idade inferior a:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Herodias pediu a cabeça de quem a Herodes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Imediatamente antes da coroação do rei Salomão, quem pretendia governar o trono real a ser deixado por Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Incluindo Jesus, quantas pessoas jantaram com Ele na última Páscoa?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Incluindo Jesus, quantos homens foram crucificados com Ele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Isabel foi mãe de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Isaque recebe um beijo enganoso de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ismael e seu irmão Isaque nasceram com uma diferença de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Israel era composta por quantas tribos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jabal foi o pai dos que:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jacó tinha um irmão gêmeo, que se chamava:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jacó, irmão gêmeo de Esaú, nasceu segurando:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jedidias era também conhecido por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jemima era esposa de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jericó foi a primeira cidade conquistada pelos israelitas, quando estes eram comandados por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jeroboão governou as tribos de Israel do:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus chamou André para ser discípulo quando este estava:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus chamou Pedro para ser discípulo quando este estava:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus curou 10 homens que sofriam de qual enfermidade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus disse aos cambistas e àqueles que estavam vendendo que sua casa seria chamada de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus disse que após o sal ter perdido o seu gosto, o mesmo passaria a ser:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus disse que não havia vindo para chamar os justos, mas para chamar quem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus e João Batista eram, entre si:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus ensinou de que haveremos de prestar contas no dia do juízo de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus ensinou que deveríamos amar aos nossos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus expulsou os mercadores que haviam no:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus foi batizado por quem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus foi traído por Judas Iscariotes através de um:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus nos diz para não arremessar pérolas aos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus nos ensinou que devemos orar:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jó residia na terra de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jonas pregou arrependimento durante 40 dias aos cidadãos de qual cidade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jônatas matou um gigante filisteu que tinha quantos dedos nas mãos e nos pés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jônatas matou um gigante filisteu, assim como Davi. Qual era o parentesco entre eles?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jônatas teve um filho com o nome de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Joquebede tem como filhos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José foi trabalhar como escravo na casa de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José foi vendido como escravo no Egito. Qual foi o valor pago por ele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José foi vendido como escravo, ao preço de 20 barras de prata, para:\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José teve um sonho onde viu curvando-se para ele:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José teve um sonho, onde viu:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José, filho de Jacó, tornou-se um grande líder da nação:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jubal foi o pai dos que tocam:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Lídia foi a primeira mulher:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ló, sobrinho de Abraão, habitava em qual cidade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Lucas, autor do Livro de Lucas, foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Marcos, autor do Livro de Marcos, foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Maria, mãe de Jesus, e Isabel, mãe de João Batista, eram entre si:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Martinho Lutero foi o primeiro tradutor da Bíblia para a língua:\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Matusalém, o homem mais idoso da Bíblia, teve como neto:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Matusalém, o homem mais velho da Bíblia, morreu antes de seu pai (Enoque). Essa afirmação é:\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Mesaque, Sadraque e Abede-Nego foram jogados em uma fornalha ardente pelo rei da:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Miriã ficou enciumada por qual motivo?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na 1ª vez que Noé soltou uma pomba, o que ela trouxe em seu bico?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na 3ª vez que Noé soltou uma pomba, o que ela trouxe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na 5ª praga enviada por Deus ao Egito, quem foi poupado de uma pestilência muito grave?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na 7ª praga que se abateu sobre os egípcios, além das pedras de fogo Deus enviou também:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na biblioteca da Universidade de Gottingen, Alemanha, existe uma Bíblia que foi escrita em 470 folhas de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na biblioteca da Universidade de Gottingen, Alemanha, existe uma Bíblia que foi escrita em quantas folhas de palmeira?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na casa de quem Jesus teve seus pés ungidos por uma mulher?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na cidade de Jericó, em que local Raabe escondeu os espias enviados por Josué?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na cidade de Nazaré morou:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na entrada triunfal de Jesus em Jerusalém, foram estendidos ramos de:\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época de Moisés, o povo israelita era tido no Egito como um povo:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época de Moisés, quantas pragas ocorreram no Egito pelo fato do Faraó não autorizar a saída do povo hebreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época do povo israelita, Babilônia estava situada às margens do rio:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época em que Jesus viveu, a cidade de Nazaré estava localizada em qual região?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época em que Jesus viveu, a Judéia era governada por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época em que Jesus viveu, em qual província localizava-se a cidade de Caná?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época que Jesus viveu, a estrada que ligava Jerusalém a Jericó era conhecida por haver muitos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na estrada para Emaús, 2 discípulos de Jesus encontraram-se com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na estrada para qual cidade Jesus apareceu para 2 de Seus discípulos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na igreja primitiva, quem deveria ungir os enfermos com óleo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na parábola do Bom Samaritano, na estrada para qual cidade um homem havia sido surrado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na parábola do Filho Pródigo, o que fez o filho pródigo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na parábola do Filho Pródigo, o que o filho pródigo fez ao se arrepender?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na parábola do Filho Pródigo, quantos filhos tinha o homem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na presença de quem Jesus foi culpado de blasfêmia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na região montanhosa de Gileade, Jacó fez uma aliança com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na região montanhosa de Gileade, Labão fez uma aliança com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na semana da criação, em que dia Deus descansou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na visão que Deus deu ao centurião romano Cornélio, o anjo mandou buscar Pedro de qual cidade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na visão que Deus deu ao centurião romano Cornélio, qual discípulo o anjo mandou buscar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nabucodonosor era rei de qual país?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nabucodonosor mandou jogar os amigos de Daniel em uma fornalha ardente pois os mesmos se recusaram a:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nabucodonosor reconstruiu a cidade de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nas bodas de Caná, Jesus operou o 1º milagre, transformando água em:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nas bodas de Caná, quantos jarros de água Jesus transformou em vinho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nas bodas de Caná, quem pediu a Jesus que transformasse a água em vinho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nas bodas de Caná, sua mãe pediu a Jesus que:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nebo era um ídolo adotado pelos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Neustã foi o nome dado à:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ninrode, bisneto de Noé, construiu a cidade de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No 1º ataque de Nabucodonosor à Jerusalém, quem foi ajudar o reino de Judá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No 1º ataque de Nabucodonosor a Jerusalém, quem se tornou servo deste?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No 7º dia, o que Deus criou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No 8º dia de vida, o que deveria ser feito ao bebê do sexo masculino?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No cenáculo, ocorreu uma contenda entre os discípulos de Jesus sobre quem dentre eles era o:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No cenáculo, pelo fato de Jesus estar ciente de que em breve iria sofrer uma traição, o seu espírito estava:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No cenáculo, por que Jesus disse que estava com o espírito perturbado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No cenáculo, qual foi o motivo que gerou uma contenda entre os discípulos de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No decreto baixado por Nabucodonosor, o que aconteceria se alguém não louvasse o Deus de Sadraque, Mesaque e Abede-Nego?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No dia seguinte à sua entrada triunfal em Jerusalém, que espécie de árvore Jesus amaldiçoou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No jantar oferecido por Simão, o leproso, quem mais estava presente neste Jantar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No livro de Josué, Sesai, Aimã e Talmai eram filhos de quem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No Monte das Oliveiras, Jesus chorou pela cidade de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No sonho de José, para onde Deus o instruiu a levar Maria e o menino Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No túmulo de quem um morto foi jogado e reviveu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No vale de Tofete, o povo hebreu oferecia sacrifícios vivos de crianças ao deus:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O 1º filho de Abraão com Sara se chamou:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O altar de Moleque, profanado por Josias através da queima de ossos humanos, situava-se no:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O anjo Gabriel comunicou à Maria que ela:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O apóstolo Paulo foi morto:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O apóstolo Tiago foi morto:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O bezerro de ouro construído por Arão foi confeccionado a partir de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Dilúvio durou quantos dias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O filho do rei Davi morreu pelo fato deste ter:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O gigante Golias foi morto por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Gólgota foi o local onde:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O imperador Nero mandou decapitar o apóstolo:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Mar Morto ficava em qual dos reinos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Mar Vermelho foi aberto e dividido em 2 partes para permitir que o povo hebreu escapasse:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O menino Jesus nasceu em um:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Monte Carmelo ficava na tribo israelita de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Monte Hermom marcava ao norte a fronteira de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O nome de qual Sumo Sacerdote significava \"sumo, altíssimo\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Novo Testamento foi escrito em:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O oficial Urias morto em batalha foi casado com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O povo pediu a Pôncio Pilatos que soltassem Barrabás ao invés de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O profeta Aías foi consultado pelo rei Jeroboão para saber sobre:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O profeta Namã questionou o rei Davi pelo fato deste ter mantido relações sexuais com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O profeta Zacarias foi o pai de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O profeta Zacarias impulsionou o povo judeu para que terminasse a construção:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que a filha do Faraó encontrou preso junto aos juncos do rio Nilo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que a mulher sunamita e seu marido ofereceram a Eliseu quando este os estava visitando?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que a multidão gritou para Pôncio Pilatos após ele ter apresentado Jesus à esta?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Absalão cortava no fim de cada ano?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceria aos animais se por ventura eles tocassem o monte Sinai no 3º dia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Bate-Seba quando seu período de luto por Urias terminou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Eliseu após ter sido oferecido ao mesmo um caldo venenoso por acidente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Êutico após este ter adormecido enquanto ouvia a mensagem de Paulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Êutico após ter caído de uma janela pelo fato de ter adormecido enquanto Paulo pregava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Jesus após os 2 discípulos O terem reconhecido após Sua ressurreição?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Judas Iscariotes imediatamente após ter recebido um pedaço de pão diretamente de Jesus na Última Ceia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Raquel, esposa de Jacó, após ter dado a luz a Benjamim?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu ao Egito pelo fato do Faraó ter negado a saída do povo hebreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu ao rei Davi com a morte de Absalão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu com a mentira de que \"o corpo de Jesus foi roubado pelos discípulos\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu com as rãs, no final da 2ª praga enviada por Deus contra os egípcios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu com os 250 seguidores de Corá, em sua rebelião?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu com Saulo depois de seu encontro com Jesus na estrada para Damasco?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu quando a esposa de Jeroboão entrou em sua casa após ter retornado da consulta ao profeta Aías?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu quando Jesus disse aos discípulos que jogassem suas redes do lado direito do barco?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu quando Jesus morreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Ana fazia todos os anos para seu filho Samuel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Arão fez para o povo israelita enquanto Moisés estava no monte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Arão possuía que havia brotado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Ararat, Sinai e Nebo têm em comum?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que as esposas hetéias de Esaú levaram para Isaque e Rebeca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que cada chefe das tribos de Israel possuía?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que César Augusto decretou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Davi ajuntou em um riacho próximo, antes de sua batalha contra Golias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Deus disse a Moisés para tirar, quando este viu a sarça em chamas que não se consumia pelo fogo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Deus fez aos 185.000 que estavam acampados ao redor da cidade de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Deus fez no 7º dia da criação?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que devemos fazer com aqueles que nos amaldiçoam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que devemos fazer com aqueles que nos maltratam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que devemos nos vestir para nos proteger contra as tentações de Satanás?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que dizia a placa que foi pregada na cruz de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Eliseu fez para transformar o caldo venenoso novamente comestível?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que En-dor era?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que era incomum na sarça em chamas que Moisés viu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Esaú vendeu a Jacó, seu irmão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Esaú vendeu em troca de um ensopado?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que estava dentro da Arca da Aliança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Ezequias, rei de Judá, sabiamente retirou de seu reino?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que foi pregado na cruz acima da cabeça de Jesus Cristo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Golias disse a Davi quando viu o cajado na mão de Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que guiou os reis Magos em sua jornada a partir do oriente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que houve durante as últimas 3 horas em que Jesus esteve crucificado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jacó comprou de seu irmão, Esaú?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jacó tomou de Esaú?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus disse à mulher pecadora, em resposta pelo fato da mesma ter-lhe ungido seus pés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus disse quando Ele apareceu para os discípulos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus disse que as pessoas haviam transformado o Templo de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus disse que havia superado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus ensinou que acontecerá à uma casa ou cidade que estiver dividida?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus ensinou que devemos fazer quando forçados a andar 1 milha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus fez para ensinar os seus discípulos sobre servir ao próximo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus instruiu a seus discípulos a dizerem se alguém se recusasse a emprestar o jumento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus nos diz para não arremessar aos porcos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus nos ensinou se alguém nos pede nossa camisa?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus nos instruiu a fazer quando nos batem na face direita?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus oferecia para aqueles que o seguiam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Joabe fez a seu irmão enquanto o beijava?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jônatas foi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que José disse ao Faraó sobre o significado dos sonhos que este tivera?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que José fez com seus irmãos por 3 dias, quando estes foram comprar grãos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que José ganhou de seu pai que deixou seus irmãos com muito ciúme?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que José, filho de Jaco, interpretou para o Faraó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Josué enviou para a cidade de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o servo de Abraão deu a Rebeca como agradecimento, próximo ao poço?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que ocorreu durante o reinado de Oséias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os apóstolos deveriam fazer se uma casa ou cidade não os recebesse?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os discípulos de Jesus fizeram ao verem Jesus ser levado preso pelos soldados romanos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os filisteus colocaram dentro da Arca da Aliança quando a devolveram aos israelitas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os irmãos de José foram fazer no Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os israelitas fizeram a Jericó após a queda do muro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os israelitas fizeram para derrubar as muralhas de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os outros 2 Presidentes nomeados pelo rei Dario sentiam em relação ao cargo de Daniel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os pastores fizeram logo após terem recebido a notícia do nascimento do menino Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os soldados romanos disseram a Jesus quando colocaram a coroa de espinhos sobre Sua cabeça?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os soldados romanos faziam para apressar a morte das pessoas crucificadas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os soldados romanos fizeram com Jesus enquanto batiam-No com a cana em sua cabeça?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Pedro encontrou dentro da boca de um peixe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Pedro, Tiago e João fizeram como resposta após Jesus tê-los instruídos para vigiarem no Jardim do Getsêmani?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que pertencia a Esaú que lhe foi tomado por seu irmão Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Pôncio Pilatos disse quando trouxe Jesus do Pretório e O apresetou à multidão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Pôncio Pilatos fez enquanto disse: \"Sou inocente do sangue deste homem\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Raabe fez descer quando os israelitas invadiram a cidade de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Raabe pediu aos espias em troca de sua colaboração em escondê-los?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que representavam os 5 camundongos de ouro que foram colocados pelos filisteus dentro da Arca da Aliança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Rubens, o filho mais velho de Jacó, perdeu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Salomão construiu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Sansão amarrou nas caudas de 300 raposas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Sansão e seus pais encontraram quando estavam a caminho de Timnate?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Sansão fez ao leão com o qual lutou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Sansão fez com a queixada de um jumento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que se apossou de Sansão quando este encontrou-se com um leão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que siginica o nome de Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que significavam os sonhos do Faraó do Egito, interpretados por José?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que um jovem chamado Êutico estava fazendo enquanto Paulo estava dando uma mensagem em Trôade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Acabe foi morto pelo fato de ter sido alvo ao acaso de uma:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Davi viajou pelo Monte das Oliveiras pois estava fugindo:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Ezequias construiu um túnel para abastecer de água a cidade de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Herodes Agripa I mandou decapitar à espada o apóstolo:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Nabucodonosor mandou chamar magos e adivinhos para decifrar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Nabucodonosor viu uma grande estátua quando:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei persa Dario jogou Daniel em uma cova infestada de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O sacerdote Zadoque ungiu qual rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Templo de Jerusalém encheu-se de uma nuvem após ter sido colocada:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Abraão nasceu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde aconteceu o primeiro milagre de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde estava a força de Sansão:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Êutico estava sentado e caiu após ter adormecido enquanto ouvia a mensagem de Paulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Felipe encontrou o eunuco etíope ao qual batizou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde foi celebrada pela 1ª vez a Páscoa?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jesus foi preso?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jesus foi rejeitado pela 1ª fez, quando iniciou suas orações?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jesus pediu aos seus discípulos que tomassem um jumento emprestado para entrar em Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jesus se encontrava quando foi preso pelos soldados romanos, a mando dos líderes religiosos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jesus se encontrava quando Satanás o tentou a saltar, informando que os anjos de Deus o segurariam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jonas passou 3 dias e 3 noites?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Moisés recebeu as tábuas dos 10 Mandamentos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde o anjo Gabriel comunicou a Zacarias de que ele teria um filho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde o profeta Jeremias foi atirado para morrer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde o rei de Babilônia mandou jogar os amigos de Daniel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde os discípulos foram chamados de cristãos pela primeira vez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde os Reis Magos estavam procurando o bebê que nasceu \"Rei dos Judeus\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Paulo foi proclamado publicamente Rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Pedro estava quando ele cortou a orelha de um homem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Sansão construiu o Templo de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os 10 Mandamentos dados por Deus a Moisés foram escritos em:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os anciãos da igreja primitiva deviam ungir os enfermos com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os guardas que estavam guardando o sepulcro de Jesus receberam uma grande quantia de dinheiro para dizer:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os israelitas, em sua peregrinação pelo deserto, foi provido por Deus com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os livros de Mateus, Marcos, Lucas e João também são conhecidos como:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os muros de qual cidade caíram quando os israelitas gritaram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os piolhos que Deus havia enviado aos egípcios eram feitos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os Presidentes invejosos enganaram ao rei Dario, fazendo-o assinar um decreto que duraria:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os primeiros filhos de Jó foram mortos através de um:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os raptores de Jesus vendaram-no e disseram para Ele fazer o quê?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para a construção do Templo de Deus em Jerusalém, o que Salomão contratou de Hirão, rei de Tiro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para a construção do Templo de Jerusalém, qual rei forneceu a Salomão árvores de cedro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para ajudar uma viúva pobre, Eliseu pediu à ela tomasse emprestadas várias vasilhas, que foram enchidas com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para capturar Elias, o rei Acazias enviou:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para causar os tumores na 6ª praga a ser enviada contra os egípcios, Moisés e Arão foram instruídos por Deus a usar:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para não ir à Nínive dar a advertência final, Jonas se escondeu em um:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para obrigar o povo a prestar obediência à sua autoridade, o rei Nabucodonosor construiu:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para onde Abraão enviou Eliezer em busca de uma esposa para Isaque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para onde Jonas foi após ter sido vomitado pelo grande peixe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para onde o profeta Isaías predisse que os tesouros do Templo seriam levados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para onde os porcos que receberam a legião de demônios expulsos por Jesus se atiraram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para onde Sansão foi levado após ter sido cegado pelos filisteus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para poder enxergar melhor a jesus no meio da multidão, Zaqueu subiu em uma:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para proteger Moisés, onde sua mãe o escondeu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para provocar a profanação do altar eregido ao deus Moleque, o que Josias queimou neste altar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para qual cidade Josué enviou espias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para qual cidade os reis Magos foram conduzidos por uma estrela?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para qual país Daniel foi levado como cativo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para qual país foi Abraão durante a fome?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para que região Moisés fugiu após ter matado o egípcio?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para se apresentar a Isaque, seu futuro marido, Rebeca foi até:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para ter certeza de que o gigante Golias estava morto, o que Davi fez após ter jogado a pedra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para tirar a força de Sansão, Dalila:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Paulo ficou cego enquanto caminhava em qual estrada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Paulo foi curado da sua cegueira por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pedro, apóstolo de Jesus, tinha um irmão pescador que também aceitou o chamado do Mestre. Seu nome era:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pelo fato de Mefibosete ser o último descendente da casa de Saul, o que o rei Davi lhe devolveu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pelo fato de ter olhado para trás desobedecendo à instrução divina enquanto fugiam, em que a esposa de Ló foi transformada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pelo que cada árvore é conhecida?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pôncio Pilatos foi governador de qual região, na época que Jesus viveu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pôncio Pilatos ordenou que Jesus fosse:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por causa do decreto de César Augusto, José e Maria precisaram mudar-se para:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por causa do pecado de Acã, quantos homens de Josué morreram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por ciúmes e ódio, os irmãos de José o venderam à uma caravana como:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por dinheiro, Judas Iscariotes traiu a:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por onde os israelitas vagaram durante 40 anos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por qual Monte o rei Davi passou em sua fuga de seu filho rebelde?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por qual motivo Daniel não se alimentava com os alimentos que eram oferecidos na mesa do rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto anos aproximadamente o povo israelita foi escravo do povo egípcio?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto anos Moisés viveu em Midiã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto Moisés foi escondido por sua mãe, enquanto era bebê?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo Absalão refugiou-se na cidade de Gesur, pelo fato de ter matado a Amnom?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo durou o período de teste da alimentação de Daniel e seus amigos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo Jonas ficou preso dentro da barriga de um grande peixe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo o gigante Golias provocou os israelitas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo o povo de Nínive recebeu as advertências de Jonas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo o rei Davi jejuou e orou para que Deus mantivesse seu filho vivo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo os espias enviados por Josué ficaram escondidos em um monte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quantos anos Daniel e seus amigos deviam ser educados no serviço do rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quantos anos José ficou na prisão antes do Faraó chamá-lo para interpretar seus sonhos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quantos dias durou a praga enviada por Deus contra os egícpios que transformava a água em sangue?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que Daniel foi atirado na cova dos leões?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que Jesus nasceu em um estábulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que José e Maria precisaram viajar para Belém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que Nadabe e Abiú morreram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que o faraó mandou matar todos os bebês hebreus do sexo masculino que nascessem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que os irmãos de José decidiram vendê-lo como escravo por 20 moedas de prata?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que os irmãos de José o venderam como escravo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que Pôncio Pilatos ordenou a colocação de guardas no sepulcro de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que Rubens, o filho mais velho de Jacó, perdeu a sua primogenitura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quem um homem cego não pode ser guiado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por várias vezes, quem sofreu várias tentativas de assassinato por parte de Saul, rei de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque Deus pediu a Moisés para que tirasse as sandálias quando este viu a sarça ardente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque Deus santificou e descansou no 7º dia da semana da criação?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque dos 30.000 trabalhadores designados para construítem o Templo de Jerusalém, apenas 10.000 trabalhavam no mês?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque foi preciso que um anjo retirasse a pedra do sepulcro de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porquê Hamã ofereceu 10.000 talentos de prata ao Rei Assuero?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque Nabote não queria vender ao rei Acaz a vinha que havia em suas terras?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque Saul desejava matar a Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque um homem morte foi atirado no túmulo de Eliseu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Próximo a qual cidade o cego Bartimeu teve sua visão restabelecida por Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais discípulos receberam a orientação para que orassem junto com Jesus no Jardim do Getsêmani?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais eram os nomes dos magos do Faraó que conseguiram imitar 2 pragas enviadas por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais foram as primeiras palavras do anjo para os pastores que receberam as Boas Novas do nascimento do menino Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais foram as safras da cultura egípcia que foram destruídas, pelo fato de Deus ter enviado as pedras de fogo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais foram as safras da cultura egípcia que sobreviveram às pedras de fogo enviadas por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais personagens bíblicos jejuaram 40 dias e 40 noites?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual a mulher que acolheu o seu inimigo e depois o matou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual animal doméstico não é mencionado na Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual animal feriu Paulo, porém seu veneno não fez efeito algum?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual animal Satanás utilizou para enganar a Eva no Jardim do Éden?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual anjo disse a Zacarias que ele teria um filho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo converteu Lídia, a 1ª mulher convertida na Europa?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo de Jesus encontrou um eunuco etíope e o batizou na estrada para Gaza?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo de Jesus estava preso entre 2 guardas a prisão, e foi libertado por um anjo enviado por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo de Jesus tinha como profissão coletor de impostos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo escreveu a Epístola aos Romanos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo foi confundido pelos gregos como sendo o deus Mercúrio?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo foi morto decapitado:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo queria prosseguir sua viagem para a Síria, mas que foi obrigado à retornar à Macedônia pois havia uma cilada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo ressuscitou um jovem chamado Êutico, que morreu após ter caído de uma janela ao adormecer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo também era conhecido por Dídimo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo traiu Jesus por dinheiro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual cidade Abraão pediu a Deus para não ser destruída?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual cidade do Egito disse Faraó a José para acomodar sua família?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual cidade também era conhecida por haver muitos gigantes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual comandante de Israel que disse que só iria à batalha se uma mulher fosse com ele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual comemoração Jesus e seus pais participavam anualmente em Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual deficiência física Jônatas tinha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual deficiência física Mefibosete possuía?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual destas tribos não pertencia às 12 tribos de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual discípulo recebeu a visão de um lençol cheio de animais?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual discípulo ressuscitou Dorcas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual discípulo teve sua sogra curada por Jesus na cidade de Cafarnaum?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual discípulo traiu Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos amigos do rei Davi fingiu estar apoiando Absalão apenas para ficar informado dos acontecimentos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos apóstolos de Jesus era denominado Zelote?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos apóstolos foi mordido por uma cobra, porém não sofreu mal nenhum?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos discípulos de Jesus caminhou sobre a água?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos discípulos de Jesus cortou uma orelha dos algozes que vieram prender Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos filhos de Davi estuprou Tamar, sua meia-irmã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos filhos de Davi se rebelou contra o pai e tentou tomar o trono à força?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos filhos de Davi se vingou pelo fato de seu irmão Amnom ter estuprado sua própria meia-irmã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos livros abaixo não é considerado com um dos livros dos Evangelhos de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é a forma hebréia do nome do profeta Zacarias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o 5º mandamento de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o 6º mandamento de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o 7º mandamento de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o 8º mandamento de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o 9º mandamento de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o grau de parentesco entre Jetro e Zípora?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o grau de parentesco entre José do Egito e Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o grau de parentesco entre Salomão e Roboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o livro mais antigo da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o maior capítulo da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o maior livro da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o maior versículo da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o menor capítulo da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o menor lívro da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o menor versículo da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome da babá de Rebeca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome da cobertura da Arca da Aliança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome da primeira mulher?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome do anjo que avisou Maria de que ela iria ser a mãe de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome do filho de Ana que foi entregue ao Sumo Sacerdote Eli para ser cuidado por este?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome do filho de Ana, que foi dedicado ao serviço de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome do temanita que repreendeu a Jó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome do vale próximo a Jerusalém onde o povo sacrificava suas crianças ao deus Moloque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o salmo onde todos os versos terminam com o estribilho \"Porque a Sua misericórdia dura para sempre.\"?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o significado do nome de Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o significado do nome do Sumo Sacerdote Eli?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a alimentação básica de João Batista no deserto?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a altura aproximada do gigante Golias morto por Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a altura da arca de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a altura da estátua de ouro construída pelo rei Nabucodonosor?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a capital do reino de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a cidade natal do discípulo Pedro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a cidade que Deus mandou Jonas advertir sobre seus pecados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a cor da corda que Raabe fez descer quando os israelitas invadiram a cidade de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a distância aproximada entre a cidade de Emaús e Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a enfermidade que o comandante Naamã era acometido?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a enfermidade que o sacerdote deveria testemunhar, para definir se a pessoa deveria ou não ser apartada da família?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a finalidade da moeda que Pedro encontrou dentro da boca de um peixe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade apriximada de Jesus quando começou a pregar seu ministério publicamente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Abraão quando Isaque nasceu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Ezequias quando este se tornou rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Jesus quando seus pais se perderam do mesmo, e o encontraram ensinando no Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de José quando este recebeu do Faraó um anel pelo fato de ter interpretados os seus sonhos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Moisés quando o mesmo matou um egípcio pelo fato deste estar surrando um hebreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Noé quando a arca foi concluída?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Sara quando Isaque nasceu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a nacionalidade da mulher que estava tirando água do poço e deu a Jesus para beber?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a nacionalidade de 11 dos 12 apóstolos de Jesus?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a nacionalidade de Dalila, esposa de Sansão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a nacionalidade de Ebede-Meleque, o eunuco que havia salvo o profeta Jeremias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a nacionalidade do gigante Golias morto por Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de André antes de se tornar apóstolo de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de Demétrio que havia instigado uma revolta entre os próprios discípulos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de José, pai de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de Mateus, um dos apóstolos de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de Pedro antes de se tornar apóstolo de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de Raquel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de Zaqueu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a punição imposta pelo rei Dario caso alguém não obedecesse ao decreto por ele assinado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a punição imposta pelo rei Nabucodonosor caso as pessoas a quem ele chamou não decifrassem os seus sonhos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a sentença do anjo da morte que iria passar sobre o Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a tarefa principal de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o antigo nome de Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o antigo nome de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o antigo nome de Paulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o apóstolo de Jesus responsável pelas finanças?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o comprimento da arca de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o discípulo mais jovem de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o filho de Salomão que cultuava ídolos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco de Jetro para com Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco de Zípora para com Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Abraão e Harã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Absalão e Amnon?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Arão e Anrão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Elcana e Jeroão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Herodes, o Grande, e Herodes Agripa?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Jacó e Maria, mãe de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Jesus e Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Joás e Gideão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Jônatas e Saul?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Labão e Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Lázaro e Marta?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Mardoqueu e Ester, a esposa do rei Assuero?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Orfa e Ester?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Orfa e Noemi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Orfa e Rute?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Rute e Noemi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Rute e Orfa?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o irmão de Maria e Marta que Jesus ressuscitou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome babilônico de Azarias, amigo de Daniel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome babilônico de Daniel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome babilônico de Hananias, amigo de Daniel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome babilônico de Misael, amigo de Daniel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da cidade do rei Ogue que era cheia de gigantes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da esposa de Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da esposa de Herodes Antipas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da esposa de Jó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da esposa de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da esposa de Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da irmã de Raquel, esposa de Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do apóstolo que estava pregando a mensagem quando Êutico caiu da janela pois estava dormindo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do filho de Rute e Boaz?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do marido de Isabel, mãe de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do marido de Maacá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do pai de Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do pai de Moisés e de Arão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do pai de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do pai do profeta Zacarias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do poço de onde a mulher samaritana com quem Jesus falou estava tirando água?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o objetivo da mãe de Moisés ao tê-lo colocado em um cesto e deixado à deriva no rio Nilo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o objetivo de Saulo quando este ficou cego quando dirigia-se para a cidade de Damasco?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o outro nome de Jetro, sogro de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o outro nome pelo qual o apóstolo Tomé também era conhecido?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o reinado ocupado por Salmanezer quando levou cativo o povo de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o significado do nome de Urias, leal oficial do exército de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o sobrenome de Herodes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual festividade celebra o final da vida de escravidão do povo israelita no Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual filho de Davi o estava perseguindo para matá-lo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual filho de Davi refugiou-se na cidade de Gesur após ter matado Amnom?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual filho de Jacó perdeu a sua primogenitura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual filho do rei Azarias governou em seu lugar após a sua morte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 1ª praga que Deus enviou aos egípcios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 2ª praga que Deus enviou contra os egípcios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 3ª praga enviada por Deus ao povo egípcio?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 4ª praga que Deus enviou ao Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 5ª praga que Deus enviou ao Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 6ª praga que Deus enviou contra os egípcios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 7ª praga enviada por Deus contra os egípcios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a acusação do sumo sacerdote contra Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a árvore cuja semente Jesus usou para ensinar uma lição de fé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a causa que levou com que Israel fosse levado cativo pelos assírios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a desculpa utilizada por Amnom, filho de Davi, para que Tamar, sua meia-irmã, viesse à sua casa e a estuprasse?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a Epístola que o apóstolo Paulo escreveu enquanto esteve viajando pela Grécia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a mensagem que o profeta Aías disse à esposa de Jeroboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a pior rainha do reino de Isarel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a primeira cidade conquistada pelos israelitas quando estes estavam sob a liderança de Josué?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a proclamação do rei de Níníve para que todas as pessoas fizessem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a profecia que o profeta Isaías disse ao rei Ezequias com relação aos tesouros do Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a profissão de Ninrode?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a profissão de Zacarias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a quantidade de seguidores de Corá que foram consumidos pelo fogo em sua rebelião?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a resposta do rei Davi à tentativa de rebelião promovida por Absalão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a única mulher na Bíblia que teve a sua idade mencionada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a única ocasião registrada no Novo Testamento em que Jesus cantou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o 1º discípulo a perder sua vida pelo fato de estar evangelizando?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o 1º discípulo morto a mando de Herodes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o 1º milagre que Jesus realizou em público?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o decreto assinado pelo rei Dario vigente por 30 dias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o fato que levou o rei Davi a ser questionado pelo profeta Namã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o fato que permitiu que os 2 discípulos de Jesus que caminharam com Ele na estrada de Emaús O reconhecessem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o filho de Jacó que tornou-se um grande líder da nação egípcia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o filho do rei babilônico Nabucodonosor?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o filho primogênito do rei Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o filho que Davi não teve com Bate-Seba?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o grau de parentesco entre Moisés e Anrão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o grau de parentesco entre Moisés e Joquebede?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o homem mais velho da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o melhor amigo de Jônatas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o motivo que levou Deus a optar pela destruição da Terra através de um dilúvio?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o nome que o rei Davi e Bate-Seba deram ao segundo filho que tiveram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o novo mandamento que Jesus ensinou aos seus discípulos no cenáculo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o objetivo de Josias em queimar ossos humanos no altar eregido ao deus Moleque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o outro nome que Deus deu a Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o pecado que Davi cometeu com Bate-Seba?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o período de reinado de Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o primeiro apóstolo a morrer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o primeiro discípulo a perder a sua vida?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o profeta que antecedeu a João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o profeta que apareceu após Malaquias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o profeta que era conhecido como o \"profeta que chorava\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o profeta que sucedeu a Samuel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o rei mais cruel que o povo de Israel já teve como governante?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o rei que destruiu os muros de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o último grande líder da nação babilônica?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o último livro da Bíblia a ser escrito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o único dos doze apóstolos que não era Galileu?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual ídolo foi a principal deusa de Tiro, conhecida também como \"A Dama do Mar\" no livro dos judeus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual ídolo representava o deus do conhecimento e da literatura de Babilônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual ídolo também era conhecido por Tiro como a \"Deusa do Mar\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual imperador Romano decretou que todos deveriam pagar impostos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual imposto deveria ser pago com a moeda que Pedro encontrou dentro da boca de um peixe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual instrumento era tocado pela orquestra criada pelo rei Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual juiz de Israel tinha 30 filhos que cavalgavam 30 jumentos?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual mandamento nos instrui a respeitar a vida do próximo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual mar dividiu-se em dois para permitir que o povo hebreu escapasse da perseguição do Faraó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual Monte marcava ao norte os limites de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual mulher liderou um exército em uma batalha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual nação o rei Sisaque governava quanto atacou Jerusalém e saqueou o Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual nação tomou o povo israelita como escravo por aproximadamente 400 anos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o homem que, depois de morto, matou mais pessoas que em sua vida?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o nome do filho do rei Ezequias que ocupou o trono real após sua morte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o nome do jovem que estava dormindo sentado em uma janela enquanto Paulo pregava a mensagem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o nome do pai de Rebeca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o nome que deram à serpente de bronze levantada por Moisés no deserto?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o percentual do Novo Testamento que foi escrito em grego?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o rei que adivinhava pelas nuvens, praticava feitiçaria e queimou o seu filho em sacrifício?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual planta deveria ser utilizada para aplicar o sangue do cordeiro nos batentes da porta das casas dos israelitas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual povo considerava Dago como o principal deus da agricultura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual povo depositou na Arca da Aliança 5 camundongos de ouro quando a mesma foi devolvida aos israelitas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual povo tinha como divindade o deus Moloque, que exigia o sacrifício de crianças?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual povo, provido por Deus, peregrinou pelo deserto durante 40 anos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta a rainha Jezabel tentou matar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta antecedeu a Namã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta disse a mensagem ao rei Jeroboão de que todos os filhos da casa real seriam mortos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta foi atirado em uma cisterna para afundar na lama e ser deixado lá para morrer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta foi chamado para dizer sobre a condição de saúde do filho de Jeroboão, quando este adoeceu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta foi o pai de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta impulsionou os judeus para que terminassem a reconstrução do Templo, após o retorno da Babilônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta predisse ao rei Ezequias que os tesouros do Templo seriam levados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta se inspirava ouvindo música?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta transformou-se em sacerdote?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profissão Jesus aprendeu de seu pai?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rainha foi visitar o rei Salomão em Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei a rainha de Sabá foi visitar em Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei antecedeu o governo de Belsazar no império Babilônico?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei antecedeu o reinado de Roboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei Atalia tentou destruir?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei babilônico teve sonhos onde Daniel afirmou que apenas Deus era capaz de interpretá-los?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei babilônico travou uma batalha contra o rei Neco do Egito e derrotou-o na cidade de Carquêmis?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei construiu altares a Baal e erigiu uma estátua da deusa Asera no Templo de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei da Assíria levou cativo todo o povo do reino do norte de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei da Babilônia mandou jogar os amigos de Daniel em uma fornalha ardente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei da Babilônia mandou jogar os amigos de Daniel na cova dos leões?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei de Israel tinha 700 esposas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei de Judá construiu um túnel que permitiu que fosse trazida água para a cidade de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei de Judá foi capturado na cidade de Jericó, após ter escapado do 3º ataque do rei Nabucodonosor?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei devolveu a Mefibosete todas as propriedades pessoais de Saul?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei do Egito atacou Jerusalém e saqueou o Templo, roubando assim seus tesouros?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei egípcio travou uma batalha contra o rei Nabucodonosor e foi derrotado na cidade de Carquêmis?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei foi morto por uma flecha atirada ao acaso?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei foi questionado pelo profeta Namã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei juntamente com seus filhos foram derrotados pelos filisteus no Monte Gilboa?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei mandou buscar o profeta Aías quando seu filho adoeceu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei mandou chamar adivinhos e magos para decifrar os sonhos que tinha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei mostrou os tesouros do Templo aos babilônios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei o sacerdote Samuel ungiu como rei de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei pagava 150 ciclos de prata por um cavalo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei persa jogou Daniel na cova dos leões?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei queria capturar Elias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei sucedeu o governo de Nabucodonosor no império Babilônico?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei viajou pelo Monte das Oliveiras fugindo do seu filho rebelde?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei, ao ter adoecido, mandou que fosse consultado o deus Baal-Zebube, para ver se sararia da sua doença?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual sacerdote ungiu Davi como o novo rei de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual sacerdote ungiu Salomão como rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual salmo possui 5 versículos exatamente iguais?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual servo de Deus teve os seus filhos mortos por um tufão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual tio criou Ester como filha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando 3 mil homens amarraram Sansão, o que eles fizeram com ele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando a Babilônia era governada pelo rei Belsazar, qual povo estava prestes a conquistar a Babilônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando a cabeça de Sansão foi raspada, por que ele não conseguiu vencer os filisteus como nas 3 vezes anteriores?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando a cruel rainha Jezabel morreu ela foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando a mulher pecadora derramou lágrimas sobre os pés de Jesus, com o que ela secou seus pés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando a torre de Babel estava sendo construída, o que Deus fez às pessoas que a estavam construindo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando as obras do Templo foram interrompidas por causa da oposição, quem decretou que o trabalho fosse retomado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Dario tornou-se rei da Babilônia, para qual posição Daniel foi nomeado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Davi desafiou Golias com sua funda e algumas pedras, o que Davi levava consigo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Davi matou o gigante Golias, Davi era:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Davi viu Bate-Seba do teto de sua casa, o que ela estava fazendo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Deus apareceu para Salomão em sonho e permitiu que ele pedisse o que quisesse, o que Salomão pediu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Elias foi levado para os Céus por Deus ainda vivo, o que Elias era:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Elias, o profeta, começou a orar ao lado de um lago, o que começou a flutuar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Ezequias contraiu uma doença fatal, quantos anos de vida Deus lhe acrescentou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando foi feita a primeira tradução completa da Bíblia para o inglês por Wycliffe?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jeoaquim reinava em Judá, quem atacou Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus chegou a Betfagé, enviou seus discípulos para a aldeia mais próxima para pedir emprestado um:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus e seus discípulos chegaram ao Jardim do Getsêmani, o que Jesus pediu aos seus discípulos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus estava indo para o Gólgota, quem carregou um trecho a cruz de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus estava jantando na casa de um dos fariseus, o que uma mulher fez por Ele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus estava no Jardim do Getsêmani, o que lhe ocorreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus expulsou os demônios de um homem que vivia no cemitério, para onde a legião foi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus foi preso, o que Pedro fez:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus foi ungido com o bálsamo, qual dos discípulos se indignou por esse ato?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus lavou os pés dos discípulos, o que Ele pretendia ensinar aos mesmos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus se aproximava de Jerusalém montado no jumento, o que os fariseus pediram a Ele fazer com a multidão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus se aproximava de Jerusalém montado no jumento, quem pediu a Ele que repreendesse a multidão que O saudava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus transformou água em vinho, qual evento estava sendo celebrado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jonas foi jogado no mar, Deus o salvou de se afogar enviando:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando José do Egito morreu, seu corpo foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando José foi vendido como escravo, quantas moedas de prata os irmãos de José receberam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Judas percebeu que Jesus havia sido condenado pelo Sinédrio, o que ele fez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Maria e José estavam procurando a Jesus quando Este tinha apenas 12 anos, onde finalmente o encontraram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Maria foi visitar sua prima Isabel, quanto tempo ela ficou ausente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Moisés desceu do Monte Sinai pela 1ª vez com as tábuas da lei de Deus, o que Moisés viu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Moisés era bebê, ele foi colocado por sua mãe em um cesto, e deixado no:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Moisés viu um egípcio surrando um hebreu, o que Moisés fez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Noé enviou da arca uma pomba, o ramo de qual árvore ela trouxe em seu bico?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Noé enviou uma pomba da arca, o que ela trouxe em seu bico?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o anjo da morte passou pelo Egito, o sangue de qual animal foi colocado nos batentes da porta?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o Espírito do Senhor se apossou de Sansão, o que aconteceu com as cordas que o amarravam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o filho de Jeroboão adoeceu, quem ele mandou sua esposa procurar, em busca de respostas sobre a condição do menino?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o jovem Daniel falou com o rei Nabucodonosor, quem ele disse que saberia interpretar os sonhos do rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o povo hebreu estava apostatado de Deus, que espécie de sacrifícios eram oferecidos ao deus Moloque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o rei Belsazar estava dando uma festa no palácio real, o que aconteceu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o rei Belsazar viu uma mão sem corpo escrevendo na parede, o que estava ocorrendo no palácio real?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o rei Manassés reinou, de qual deusa ele erigiu uma estátua no interior do Templo de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o rei ouviu a mensagem de Jonas, com que roupas ele se vestiu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o rei Zedequias escapou do cerco bailônico à cidade de Jerusalém, em qual cidade ele foi capturado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o reino de Israel foi conquistado pelos assírios, quem reinava no reino de Judá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando os filhos de Jacó foram comprar grãos no Egito, quem disse a eles que eles eram espias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando os filisteus atacaram Sansão pela 4ª vez, o que eles lhe fizeram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando os irmãos de José foram para o Egito para comprar grãos, o que José disse a eles?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando os judeus retornaram a Jerusalém vindo de Babilônia, como os idosos reagiram à construção do alicerce do Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Paulo foi à Roma, o que os marinheiros do navio tentaram fazer ao avistarem terra após a violenta tempestade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Paulo foi à Roma, o que os soldados romanos tentaram fazer aos prisioneiros quando o navio estava naufragando?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Paulo foi à Roma, quem tentou matar os prisioneiros que haviam no navio que estava naufragando?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Paulo precisou retornar da Grécia p/ a Macedônia pois desejavam matá-lo, onde seus companheiros o estavam aguardando?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Roboão tornou-se rei, o que os israelitas lhe pediram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Salomão morreu, onde ele foi interrado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Sansão apaixonou-se por Dalila, ela vivia no vale de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Sansão estava andando pela estrada, que animal tinha em seu corpo uma colméia de mel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Sansão estava andando por uma estrada, o que ele encontrou no corpo de um leão morto?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Sansão foi à cidade de Timnate, o que ele pediu aos seus pais?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Sansão visitou a cidade de Gaza, o que ele fez por lá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando um caldo venenoso foi acidentalmente oferecido a Eliseu, o que ele colocou na panela para torná-lo comestível?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Zedequias governava o reino de Judá, quem atacou Jerusalém pela 3ª vez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas esposas Jacó tinha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas esposas Salomão teve?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas esposas tinha o rei Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas janelas havia na arca de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas letras a Bíblia contém aproximadamente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas letras possui o maior versículo da Bíblia (Ester 8:9)?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas letras possui o menor versículo da Bíblia (Êxodo 20:13)?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas ovelhas foram sacrificadas como oferta pacífica quando Deus entrou no Templo de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas palavras a Bíblia contém aproximadamente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pedras Davi apanhou no chão para matar o gigante Golias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pessoas haviam no navio que naufragou onde Paulo estava em sua viagem para Roma?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pessoas Jesus alimentou com 5 peixes e 2 pães?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pessoas justas Abraão estava procurando em Sodoma?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pessoas morreram do povo israelita em função da praga enviada por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pessoas perderam a sua vida por não saberem pronunciar a palavra Shiboleth?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas portas havia na arca de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes Deus apareceu a Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes Eliseu disse para Naamã se molhar no rio Jordão para se curar da lepra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes Jesus perguntou a Pedro se este o amava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes Noé enviu uma pomba para procurar por terra seca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes o rei Nabucodonosor atacou Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes Pedro negou a Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas voltas o povo de Israel deu em volta dos muros da cidade de Jericó, para que estes caíssem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto custou o terreno que foi a sepultura de Sara?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto Jesus foi tentado por Satanás, para matar a fome de Jesus Satanás pediu que as pedras fossem transformadas em:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto Judas Iscariotes disse que custava o perfume que lavou os pés de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto os príncipes filisteus ofereceram a Dalila para que ela descobrissem o segredo da força de Sansão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto pagava Salomão por um cavalo?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto Satanás tentou a Jesus, o que o mesmo pediu que Jesus transformasse em pão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto talentos de prata Hamã ofereceu ao Rei Assuero para exterminar os judeus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto tempo durou a celebração de dedicação do Templo de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto tempo Moisés ficou no Monte Sinai com Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto tempo passou até que José e Maria reencontrassem Jesus, que havia separado-se deles em uma viagem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto tempo passou até que Maria percebesse que Jesus, então com 12 anos de idade, não estava na caravana de regresso?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos andares havia na arca de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos Arão era mais velho do que Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos de diferença há entre os irmãos Esaú e Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos Jacó precisou trabalhar para casar-se com Léia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos Jacó precisou trabalhar para finalmente casar-se com Raquel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos José do Egito tinha quando morreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos Mefibosete tinha quando foi deixado cair por sua babá, e que com isso afetou seus 2 pés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos o rei Salomão levou para construir o Templo de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos tinha Manassés quando foi constituído rei do povo de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos viveu Matusalém, o homem mais velho da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos apóstolos Jesus chamou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos bois foram sacrificados como oferta pacífica quando Deus entrou no Templo de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos cânticos escreveu Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos capítulos a Bíblia possui?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos capítulos possui o maior livro da Bíblia (Salmos)?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos cestos de comida ainda sobraram após todas as pessoas terem se alimentado no milagre da multiplicação?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos conveses havia na arca de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos demônios Jesus expulsou de Maria Madalena?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos dias a mãe de Rebeca sugeriu que ela ficasse com seus parentes antes de partir para se casar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos dias Jesus jejuou enquanto esteve no deserto, antes de iniciar seu ministério?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos dias Lázaro esteve sepultado antes de ser ressuscitado por Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos discípulos Jesus mandou tomar emprestado um jumento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos Evangelhos existem no Antigo Testamento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos Evangelhos existem no Novo Testamento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filhos de Davi nasceram durante seu reinado em Hebrom?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filhos de José se tornaram líderes das tribos de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filhos Jair, juiz de Israel, tinha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filhos Noé tinha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filisteus morreram quando Sansão destruiu a construção em que se encontravam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filisteus Sansão matou com apenas uma única queixada de jumento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos foram os dias da criação?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos foram os filhos que Davi teve com Bate-Seba?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos Governadores o rei Dario nomeou quando assumiu o reino da Babilônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos homens foram precisos para amarrar Sansão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos músicos faziam parte da orquestra do rei Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos personagens do Velho Testamento apareceram na montanha durante a transfiguração?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos Presidentes o rei Dario nomeou quando assumiu o reino da Babilônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos príncipes filisteus ofereceram a Dalila 1.100 moedas de prata?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos provérbios escreveu Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos querubins de ouro haviam sobre o propiciatório da Arca da Aliança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos trabalhadores foram designados para a construção do Templo de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos versículos a Bíblia possui?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos versículos possui o maior capítulo da Bíblia (Salmos 119)?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos versículos possui o menor capítulo da Bíblia (Salmos 117)?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos versículos possui o menor livro da Bíblia (2ª João)?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que animais os 30 filhos de Jair, juiz de Israel, montavam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que animal Balaão possuía que chegou a falar após ter visto um anjo do Senhor?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que animal comprimiu o pé de Balaão contra o muro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que animal teria que ser reposto cinco vezes mais se fosse roubado por alguém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que cena incrível Moisés presenciou quando ele estava no Monte Horebe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que desejava construir o Templo de Deus, mas cujo pedido foi negado por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que discípulo Jesus encontrou sob uma figueira?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que evento ocorreu quando Jesus tinha apenas 8 dias de idade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que faixa de montanhas produziu as árvores de cedro e de cipreste que Salomão utilizou na construção do Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que falso deus era a divindade principal de Canaã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que foi a mãe de Jeroboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que foi o pai dos músicos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que grupo de pessoas queria saber o segredo da força de Sansão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que homem israelita era celebrado por sua beleza?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que ídolo representava o deus sírio louvado pelo general Naamã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que instrumento era tocado nos funerais nos tempos do Novo Testamento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que instrumento musical foi ouvido antes de Moisés subir ao Sinai e receber a Lei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que instrumentos Miriã tocou depois da travessia do Mar Vermelho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mandamento nos instrui a não matar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mandamento nos instrui a sermos honestos com o próximo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que monte era tão sagrado que se um animal o tocasse morreria instantaneamente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mulher abandonou a família para acompanhar a sogra?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mulher ajudou o filho a praticar uma fraude?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mulher devotada dedicou seu filho, Samuel, ao Senhor?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mulher diabólica tentou destruir o rei Jeoás e toda a prole de Judá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mulher matou toda a família real para ser rainha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que parte do corpo de Mefibosete foi afetada quando sua babá o deixou cair com apenas 5 anos de idade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que parte do corpo uma jumenta comprimiu o profeta Balaão contra um muro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que pessoas o profeta Isaías predisse que seriam levadas cativas para Babilônia e se tornatiam eunucas no palácio?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que povo chamava Belzebu como o \"príncipe dos espíritos do diabo\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que povo derrotou o rei Saul e seus filhos no Monte Gilboa?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que rei reconheceu que Deus fez com ele o mesmo que ele tinha feito aos seus inimigos?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que rio se transformou em sangue?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que substância Jesus disse ser inútil após ter perdido o gosto?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem absteu-se de alimentar-se dos alimentos impuros que haviam na mesa do rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem aconselhou Jacó a retornar para a terra de seus pais?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem adoeceu que obrigou o rei Jeroboão a procurar o profeta Aías para dizer-lhe sobre sua condição de saúde?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem afirmou que apenas Deus poderia interpretar os sonhos que o rei Nabucodonosor estava tendo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ajudou uma viúva pobre enchendo várias vasilhas de azeite?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem amarrou Sansão com 7 tendões não secos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem amparou Saulo e defendeu-o para os apóstolos, assegurando-lhes que agora Saulo era um verdadeiro cristão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Ananias curou da cegueira?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem apareceu a Jesus na montanha durante a transfiguração?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem apareceu a Jesus para tentá-lo no deserto?"], ["LIMIT", 1]] Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem apresentou Jesus surrado à multidão, dizendo: \"Eis o homem!\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem arrancou as portas de entrada da cidade de Gaza?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem arrependeu-se após ter visto Jesus ser levado preso para a presença de Pôncio Pilatos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Atalia matou para poder ser rainha?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Barnabé defendeu perante os apóstolos, assegurando que ele havia se convertido?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem batizava as pessoas no rio Jordão para que se arrependessem e buscassem o perdão de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem casou-se com Bate-Seba após ela ter terminado seu período de luto por Urias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem casou-se com Maria, mãe de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem cavalgou um camelo quando dirigia-se ao seu casamento?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem chamou o fogo dos Céus para consumir um altar de sacrifícios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem chorou quando viu o alicerce do Templo ser reconstruído, após terem retornado do cativeiro da Babilônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem chorou sobre Jerusalém no Monte das Oliveiras?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem colocou o bebê Moisés em um cesto no rio Nilo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem colocou os irmãos de José na prisão, quando estes foram comprar grãos no Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem colocou Zedequias no trono do reino de Judá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem comandou os israelitas em sua batalha contra Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem comprou o direito de primogenitura que não lhe era seu por direito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem comunicou a Maria, futura mãe de Jesus, que ela iria ter um bebê?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem conduziu os israelitas cantando após a travessia do Mar Vermelho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem confundiu um canto da multidão com um canto de guerra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem construiu a cidade de Nínive?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem construiu o Templo de Deus em Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem contou aos pastores sobre o nascimento de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem cortava os cabelos no fim de cada ano, pois os mesmos muito lhe pesavam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem cortou o cabelo de Sansão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem cuspiu em Jesus enquanto o mesmo estava sendo surrado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem dançou na festa de aniversário de Herodes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem decidiu que, caso as pessoas não conseguissem decifrar seus sonhos, essas pessoas seriam mortas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem deixou seu filho sob um arbusto para não vê-lo morrer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem deu beijos políticos aos cidadãos de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem deu presentes de ouro ao menino Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem deu um beijo de traição em Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Deus enviou para preparar o caminho de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse a frase \"Raça de víboras, quem vos ensinou a fugir da ira vindoura?\""], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse a Zacarias que ele teria um filho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse ao Faraó que haveria um período de muita fome no Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse que queria ver os furos nas mãos e nos pés de Jesus para acreditar que Jesus havia ressuscitado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse: \"Desafio hoje as fileiras de Israel; dai-me um homem para que pelejemos.\""], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse: \"Se tu é o Filho de Deus, manda a esta pedra que se torne pão.\""], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse: \"Sou inocente do sangue deste homem.\""], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem durante 7 anos imaginava que era um animal?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem durante sua viagem para Roma enfrentou uma violenta tempestade no mar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem é chamado de \"o príncipe dos espíritos do diabo\" pelos fariseus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem é o primeiro bígamo citado na Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem encontrou a cesta onde Moisés encontrava-se escondido, presa junto aos juncos do rio Nilo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem encontrou um arbusto em chamas que não se consumia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enganou Eva no Jardim do Éden?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enganou Jacó em seu próprio banquete de casamento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enganou Jacó, que ao final dos primeiros 7 anos de trabalho, não recebeu a mão de Raquel, mas sim da sua irmã Léia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enganou o rei Dario, fazendo-o com que assinasse um decreto onde o rei deveria receber unicamente as orações?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enviou Eliezer para procurar por uma esposa para Isaque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enviou espias para a cidade de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era a esposa do impostor Ananias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era a esposa do rei Assuero que recusou-se a ser exibida em frente a alguns convidados bêbados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era a mulher viúva e moabita que se dedicara inteiramente à sua sogra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era a rainha cruel de Israel que foi devorada pelos cachorros quado morreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era a sogra de Rute?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o centurião romano honrado e temente a Deus que teve uma visão de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o conselheiro influente do rei Davi que desertou para o lado de Absalão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o deus dos amonitas que exigia o sacrifício de crianças?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o home da terra de Uz?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o homem segundo o coração de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o honesto homem a quem Deus deu instruções para construiur uma arca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o irmão de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o irmão mais novo de Miriã?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o marido impostor de Safira?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o melhor amigo de Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o pai de Ló, que foi resgatado por um anjo da cidade de Sodoma?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o profeta de Jerusalém que visitou os cristãos em Antioquia e contou-lhes sobre uma grande fome que estava por vir?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o rei da Assíria quando Deus matou 185.000 homens que estavam tentando tomar Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o rei de Israel quando a Assíria conquistou o reinado do norte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o rei de Judá quando Nabucodonosor atacou Jerusalém pela 1ª vez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o rei de Judá quando Nabucodonosor atacou pela 3ª vez a cidade de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o rei governante em Jerusalém quando Jesus nasceu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o Sumo Sacerdote que cuidou de Samuel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o tio de Ló?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem eram os pais de Jedidias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem eram os pais de José e Benjamim?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem eram os pais de Sete?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem eram os pais dos irmãos gêmeos Esaú e Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem escondeu Moisés em uma cesta, com o objetivo de protegê-lo do decreto de morte pronunciado pelo Faraó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem escondeu os espias na cidade de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem escreveu a carta de Paulo aos Romanos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem espargia o sangue do sacrifício no propiciatório da Arca da Aliança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem estava em pé no pináculo do Templo e tentou Jesus a saltar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem estava perseguindo o povo israelita quando eles estavam atravessando o Mar Vermelho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem estava procurando Jesus, quando Este tinha apenas 12 anos, e estava ensinando no Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem estava sentado eu uma jumenta quando apareceu um anjo com a espada desembainhada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem esteve sepultado por 4 dias até que foi ressuscitado por Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem expulsou os mercadores que haviam se alojado no Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem falsamente acusou José de tentar seduzí-la?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fez a primeira tradução completa da Bíblia para o inglês, no ano de 1380?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fez descer uma corda púrpura pela janela quando os israelitas invadiram Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fez saques em Jericó mesmo após Josué ter instruído o povo a não fazê-lo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fez um bezerro de ouro como ídolo para os israelitas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fez uma estátua de ouro de si próprio para ser cultuada e que tinha 90 pés de altura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou 3 dias na barriga de um grande peixe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou cego na estrada de Damasco?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou cego quando dirigia-se para a cidade de Damasco prender alguns cristãos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou com os 2 pés feridos porque quando tinha apenas 5 anos a babá que o carregava o deixou cair?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou enciumada pelo êxito de seu irmão mais novo?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou irritada ao perceber que sua irmã não a ajudava, preferindo ouvir as palavras de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou preso pelos cabelos em um carvalho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou preso pelos cabelos em um cedro do Líbano?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fingiu ser Esaú para obter a bênção da primogenitura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a 1ª pessoa a ver Jesus ressuscitado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a 1ª pessoa que testemunhou a conversão de Saulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a avó de Timóteo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a bisavó de Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a dedicada discípula em Jope que Pedro ressuscitou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a esposa de Boaz?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a garota israelita que casou com o rei persa Assuero?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a irmã de Arão, o Sumo-Sacerdote?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Ismael?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Obede?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Roboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Timóteo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a primeira mulher convertida na Europa?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a primeira pessoa a cometer assassinato na Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a única médium registrada na Bíblia?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a vítima do primeiro assassinato ocorrido na Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi acusado falsamente de tentar seduzir a esposa de Potifar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi ao Egito durante uma longa estiagem de seca e fome?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi apresentado no Templo de Jerusalém como um bebê?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi atirado à cova dos leões?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi batizado por João Batista no rio Nilo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi chamado de cristãos pela 1ª vez na cidade de Antioquia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi colocado em uma cesta no rio Nilo, quando ainda era bebê?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi confundido pelos gregos como sendo o deus Júpiter?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi decapitado pelo rei Herodes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi escondido em uma cesta por sua mãe com o objetivo de protegê-lo de morte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi escravo pessoal de Potifar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi filho de Davi e Bate-Seba?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi filho de Terá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi levado escravo para o Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi neto de Obede?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi nomeado Presidente do reino da Babilônia, através do rei Dario?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o 1º filho de Adão e Eva?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o 2º rei de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o 3º filho de Adão e Eva?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Arão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Raquel e Léia, esposas de Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o bisavô de Ninrode, construtor da cidade de Nínive?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o bisneto de Rute?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o gigante morto por Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o irmão do Sumo-Sacerdote Arão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o marido de Priscila, que auxiliou no ministério de Paulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o marido de Rute?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai da rainha Jezabel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Acabe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Elcana?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Eliseu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Esdras?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Gideão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Ismael?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Jeroboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Jônas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Jônatas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Josué?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Lia e Raquel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Manassés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Mefibosete?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de muitas nações?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Obede?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Roboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Saul?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Zípora?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do profeta Neemias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do profeta Oséias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do profeta Sofonias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do rei babilônico Belsazar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do rei Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do rei Jotão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do rei Manassés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai dos líderes das 12 tribos de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai dos que habitam em tendas e possuem gados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai dos que tocam harpa e flauta?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai que se deitou com suas próprias filhas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o patriarca do Velho Testamento que quase sacrificou seu filho no Monte Moriá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o primeiro homem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o primeiro rei de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o primeiro tradutor da Bíblia para a língua do povo alemão?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o rei da Babilônia que viu uma mão sem corpo escrevendo na parede?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o sogro de Maria, mãe de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o tio-avô de Raquel e Léia, esposas de Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o último dos juízes de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o último rei que reinou o reino do Norte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o último sobrevivente da casa de Saul?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi obrigado a girar um moinho após seu prisionamento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi possuído por Satanás logo após ter recebido das mãos de Jesus um pedaço de pão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi proclamado publicamente rei na cidade de Gilgal?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi professor do apóstolo Paulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi rei e sacerdote ao mesmo tempo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi sepultado por Deus em um vale?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi tocado por um milagre de Jesus e estava sendo ameaçado de morte pelos sumos sacerdotes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi transformada em estátua de sal, ao olhar para trás?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi um dos filhos de Anrão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi um dos filhos do rei Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi vendido pelos seus irmãos ao preço de 20 moedas de prata?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi visitar Maria para dizer-lhe que ela havia sido escolhida para ser a mãe de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi, cujo significado de seu nome é \"pacífico\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram as primeiras pessoas a ouvirem sobre o nascimento de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram os pais de Benjamim?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram os pais de Jeroboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram os pais de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram os pais de José, do Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram os pais de Roboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem formou a primeira orquestra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fugiu de Jerusalém quando Absalão tentou tomar o trono à força?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ganhou uma \"túnica de muitas cores\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem governava o reino de Judá quando Nabucodonosor atacou Jerusalém pela 2ª vez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem gritou \"Crucifica-o!\" após Pôncio Pilatos ter apresentado Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem havia dado a Daniel o nome de Beltesaazar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem interpretou os sonhos do Faraó do Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem irou-se pelo fato de ter sido construído um altar de sacrifícios para o deus Moleque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Isaque abençoou por engano, em lugar de Esaú?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Jesus disse que iria gritar se acaso o povo ficasse em silêncio pela ocasião de sua entrada triunfal em Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Jesus expulsou do Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem jogou Jonas no mar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem levou cativo o reino norte de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem levou seu filho de 12 anos a Jerusalém para celebrar a Páscoa dos judeus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem libertou o apóstolo Pedro da prisão quando ele foi acorrentado entre 2 guardas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem liderou o povo israelita durante sua libertação do cativeiro no Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou açoitar Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou decapitar João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou escrever uma placa para ser pregada na cruz de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou executar à morte o apóstolo Tiago?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou matar os profetas de Baal?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou prender Nabote acusando-o de blasfêmia, apenas para poder tomar posse da vinha que ele tinha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou que todos os bebês hebreus que nascessem fosse mortos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou tomar um jumento emprestado para Sua entrada em Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mantinha o povo israelita mantido em cativeiro, durante os dias de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou 1.000 filisteus com apenas a queixada de um jumento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou o gigante filisteu que tinha 12 dedos nas mãos e 12 dedos nos pés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou o rebelde Absalão que tencionava tomar à força o reino de Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou o rei assírio Senaqueribe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou seu irmão enquanto o beijava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou um egípcio pelo fato deste estar surrando um hebreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou um leão e um urso com as mãos nuas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu aos 110 anos de idade, quando então foi embalsamado e mumificado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu de parto ao nascer-lhe o segundo filho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu na revolta de Absalão na tentativa de tomar o trono do rei Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu no Monte Hor?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu no naufrágio do navio em que Paulo se encontrava quando estava indo para Roma?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu pelo fato de ter trazido fogo estranho à Casa de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem nasceu em Ur dos Caldeus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Nicodemos encontrou à noite e perguntou sobre a necessidade em nascer de novo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem nomeou José como governador de todo o Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem o egípcio morto por Moisés estava surrando?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem o povo preferiu que fosse libertado por Pôncio Pilatos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem o rei Acaz ofereceu como sacrifício ao deus Moloque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem o rei da Babilônia mandou jogar em uma fornalha ardente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ofereceu a Rebeca como forma de agradecimento 1 argola de ouro e 2 pulseiras de ouro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ofereceu ao Rei Assuero 10.000 talentos de prata, com o objetivo em exterminar os judeus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ofereceu um quarto na parte de cima de sua casa quando Eliseu estava avisitando?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou a colocação de guardas para guardar o sepulcro de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou a prisão de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou que Daniel fosse atirado à cova dos leões?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou que Jesus fosse crucificado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou que qualquer pessoa que visse Jesus deveria relatar onde ele se encontrava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou que todos os filhos do sexo masculino que nascessem fossem mortos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem orientou Naamã para se molhar no rio Jordão para se curar da lepra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem orou por 7 dias para que seu filho não morresse?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem passou 40 dias no Monte Sinai com Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem passou a noite lutando com Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a cabeça de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a Dalila que ela conseguisse de Sansão o segredo de sua força?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a Deus que lhe desse sabedoria?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a Deus que não destruísse Sodoma?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a José que interpretasse seus sonhos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a Roboão que abaixasse os impostos, após a morte do rei Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu ao rei Davi para que escolhesse Salomão a lhe suceder no trono real?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu aos espias que sua família fosse poupada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu um período de teste de 10 dias para provar que a alimentação da mesa do rei era impura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem perdeu a força quando teve seu cabelo cortado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem perdeu a posição de rainha pelo fato de ter-se recusado a aparecer diante de um banco de bêbados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem perdeu a vida por ter tocado na arca de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem perguntou a Pedro 3 vezes se ele amava a Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem permitiu que Mefibosete, com apenas 5 anos de idade, o deixasse cair, prejudicando com isso seus 2 pés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem persuadiu a multidão a pedir a Crucificação de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem possuiu o corpo de Judas Iscariotes após o mesmo ter recebido diretamente de Jesus um pedaço de pão na Última Ceia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem precisou ser educado no serviço do rei durante 3 anos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem preferiu ouvir as palavras de Jesus, ao invés de ajudar sua irmã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pregou arrependimento aos cidadãos de Nínive durante 40 dias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem procurava matar Saulo após ter-se convertido para o cristianismo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem profetizou de que os assírios não conseguiriam tomar Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pronunciou no Monte Gerizim as bênçãos dadas a Israel devido à sua obediência?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem provocou a morte de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem queimou as plantações dos filisteus amarrando tochas nas caudas de raposas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem questionou Davi sobre seus pecados contra Bate-Seba e Urias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Raabe escondeu na cidade de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem recebeu do Faraó um anel pelo fato de haver interpretado os sonhos do Faraó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem recebeu do rei Nabucodonosor o cargo de Governador da Babilônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem recebeu um beijo de traição?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem reclamou para o Senhor que era pesado de boca e pesado de língua?"], ["LIMIT", 1]] Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem reconstruiu Babilônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem refugiou-se em um monte, após terem deixado Raabe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem reinava na cidade de Astarote, conhecida por haver muitos gigantes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem reinava na Judéia quando José, Maria e Jesus retornaram para a Palestina?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem resmungou pelo fato dos rebeldes terem sido destruídos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem retirou a pedra do túmulo de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem salvou a vida do profeta Jeremias, que havia sido atirado em uma cisterna para morrer na lama?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem salvou Balaão de ser morto por um anjo que estava com a espada desembainhada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem salvou Ló e sua família de serem destruídos juntamente com a cidade de Sodoma?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem são bem-aventurados, pelo fato de serem consolados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem são bem-aventurados, pelo fato de serem fartos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem são bem-aventurados, pelo fato do reino dos céus serem deles?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem se postou perante os israelitas e os provocou durante 40 dias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem se tornou rei quando tinha 7 anos e reinou durante 40 anos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem sepultou Moisés em um vale?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem serão bem-aventurados, pelo fato de herdarem a terra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem subiu aos Céus em uma carruagem de fogo"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem subiu em cima de uma ávore para ver Jesus quando Ele estivesse passando?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem substituiu o apóstolo Judas após sua morte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem sucedeu Salomão no trono real após sua morte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem sugeriu que Rebeca ficasse com seus parentes\n1,por mais 10 dias antes de partir para se casar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem também tinha o nome de Beltessazar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem tentou José a pecar quando ele era um escravo de Potifar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem tentou várias vezes matar a Davi com uma lança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve como punição a morte de seu filho pelo fato de ter cometido adultério?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve como punição a morte de seu filho pelo fato de ter planejado um assassinato?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve o privilégio de comer uma refeição preparada por um anjo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve seu trono restituído com a morte de Absalão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve sua visão restaurada na estrada próximo à cidade de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve um sonho sobre o sol, a lua e as estrelas se curvando para ele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem tinha um burro que falou e viu o anjo do Senhor?"], ["LIMIT", 1]] Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem trouxe muita amargura de espírito para Isaque e Rebeca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem vendeu seu direito de primogenitura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem visitou uma prostituta quando chegou à cidade de Gaza?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem, ao ter entrado em casa após ter regressado da consulta ao profeta Aías, teve seu filho morto?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem, após ter ouvido a mensagem de advertência de Jonas, vestiu-se com panos de saco?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem, na mesa de um homem rico, quis comer apenas migalhas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem, para se proteger, fingiu ser louco?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Raquel era esposa de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Raquel morreu de parto ao nascer-lhe:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Raquel, esposa de Jacó, morreu ao dar a luz:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Rebeca ajudou o filho a praticar:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Rebeca teve os filhos gêmeos Esaú e Jacó com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Roboão era o filho de Salomão que seria o sucessor no trono real, porém quem assumiu o trono?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Rute abandonou a sua família para acompanhar:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Rute e Orfa receberam um beijo de tristeza de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Salomão, rei de Israel, praticou comércio marítimo com o reino:"], ["LIMIT", 1]] Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sansão apaixonou-se por quem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sansão queimou as plantações dos filisteus ao amarrar tochas nas caudas de qual animal?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sansão visitou uma prostituta quando estava viajando pela cidade de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Saul foi o:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Saul recebeu um beijo de coroação de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Se um boi fosse roubado por alguém, quantos bois o ladrão teria de repôr ao seu proprietário?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sebá foi o segundo rebelde a se revoltar contra o governo do rei:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Segundo a religião dos filisteus, qual deus era o filho de Dago, deus da agricultura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Segundo a religião dos filisteus, qual deus era o pai de Baal?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Segundo o que Sansão disse a Dalila, para ele perder sua força ele deveria ser amarrado por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sem usar qualquer espécie de arma ou ferramenta, o que Davi matou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sete, filho de Adão e Eva, nasceu:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Simão de Cerene ficou conhecido como:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sobre o propiciatório da Arca da Aliança haviam 2:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sobre quantas tribos de Israel Salomão reinou durante 40 anos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sobre que animal cavalgou Rebeca quando foi casar-se com Isaque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Tabita morava na cidade de Jope, e também era conhecida por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Tiago foi decapitado à espada por ordem de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Tiago foi o primeiro apóstolo a:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Um dos filhos de Joquebede foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Uma das pragas que acometeram o Egito foi que as águas do rio Nilo se transformaram em:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Uma vez que Daniel não queria contaminar-se com a alimentação impura da mesa do rei, qual era a alimentação de Daniel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Uzá perdeu a vida pelo fato de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Vasti perdeu a condição de rainha pelo fato de ter-se recusado a aparecer diante de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Vinde a Jesus, todos aqueles que estiverem de que forma, para que possam ser aliviados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Wycliffe fez a primeira tradução completa da Bíblia no ano de 1380 para qual idioma?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Zaqueu subiu em uma árvore para poder enxergar melhor a:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Zebedeu foi pai de quais discípulos de Jesus?"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.2ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.2ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "10 anos após o reino de Israel ter sido capturado, qual nação tomou as cidades fortificadas de Judá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "2 dias antes da celebração da Páscoa, na casa de quem Jesus jantou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "2 dias antes da celebração da Páscoa, Simão, o leproso, ofereceu a Jesus um:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "42 mil pessoas perderam a sua vida por não saberem pronunciar qual palavra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "5.000 pessoas foram alimentadas por Jesus através do milagre da multiplicação de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A bênção da primogenitura de Jacó deveria ser dada a:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A bênçao da primogenitura era para ser dada ao:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A cesta onde Moisés foi depositado foi coberto por betume, para evitar que esta:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A cesta onde Moisés foi depositado foi coberto por betume, para fazer com que:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A cidade de Jerusalém foi atacada 3 vezes pelos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A escuridão que se abateu devido à Crucificação de Jesus ocorreu:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A esposa de quem tentou cometer adultério com José?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A estrada de Jerusalém para Jericó foi utilizada por Jesus na parábola:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A família de quem foi salva de Sodoma, antes que a mesma tivesse sido destruída por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A família de quem o Faraó disse que fosse acomodada na cidade do Gósen?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A filha de Herodias dançou para:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A grande maioria das porções do Antigo Testamento foi escrita em:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A imagem do que apareceu nos sonhos do rei Nabucodonosor?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A mãe de Receba sugeriu que ela ficasse com seus parentes por mais 10 dias antes de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "À medida que o terceiro ataque de Nabucodonosor sobre Jerusalém continuava, o que ocorria dentro da cidade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A pedido do rei Jeroboão, quem precisou disfarçar-se quando foi procurar o profeta Aías?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A qual partido religioso pertencia Nicodemos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A qual povo Deus proveu o maná?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A qual profeta uma jumenta comprimiu o pé contra o muro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A qual rei o profeta Aías deu a mensagem de que todos os homens da casa real seriam mortos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quantos discípulos Jesus instruiu para que o acompanhassem em oração no Jardim do Getsêmani?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A que animal é comparado Satanás?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A que horas do dia Jesus foi levado ao sumo sacerdote e aos anciãos e foi considerado culpado de blasfêmia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A que rei foram trazidos bugios e pavões?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Abraão deixou todos os seus bens ao morrer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Absalão deu beijos políticos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Amnon, filho de Davi, estuprou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem as esposas hetéias de Esaú trouxeram muita amargura de espírito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Deus acrescentou mais 15 anos de vida, quando esta pessoa contraiu uma doença fatal?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem deveria ser levado uma pessoa que possuísse manchas na pele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Elias desafiou no Monte Carmelo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Eliseu ajudou, enchendo várias vasilhas de azeite?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem foi oferecido, por acidente, um caldo venenoso?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Hamã ofereceu 10.000 talentos de prata, com o objetivo de exterminar os judeus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Jacó deu um beijo enganoso?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Jacó fingiu ser?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Jesus disse da necessidade em nascer de novo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Jesus pediu que fossem buscar um jumento emprestado para entrar em Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Jesus perguntou 3 vezes se esta pessoa O amava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Joabe matou para acabar com a rebelião contra o reino de Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem João Batista estava se dirigindo quando disse a frase: \"Raça de víboras, quem vos ensinou a fugir da ira vindoura?\""], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem José disse a frase: \"Vós sois espias\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Labão enganou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Maria, mãe de Jesus, visitou quando ela descobriu que estava grávida?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Noemi deu um beijo de tristeza?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o anjo Gabriel avisou que Maria foi escolhida para ser a mãe de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o Faraó nomeou como governador de todo o Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o povo pediu que libertassem a Barrabás do que a Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o profeta Eliseu orientou lavar-se 7 vezes no rio Jordão para curar-se da lepra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o rei Davi devolveu todas as propriedades pessoais de Saul?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o rei Davi, do teto de sua casa, viu banhando-se?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o rei Ezequias mostrou tolamente os tesouros do Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o rei Manassés queimou em sacrifício?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o servo de Abraão deu como agradecimento 1 argola de ouro e 2 pulseiras de ouro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem os príncipes filisteus ofereceram 1.100 moedas de prata de cada um deles?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem os príncipes filisteus pediram que conseguisse descobrir o segredo da força de Sansão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem os Reis Magos estavam procurando como o menino \"Rei dos Judeus\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem os soldados egípcios estavam perseguindo quando o Mar Vermelho dividiu-se em dois?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Rebeca ajudou a praticar uma fraude?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Rute abandonou para poder acompanhar a sogra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Samuel deu um beijo de coroação?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Sansão pediu uma filha dos filisteus, quando este foi à cidade de Timnate?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Satanás levou ao pináculo do Templo e o tentou para saltar dali?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A rainha Jezabel foi casada com o rei:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A sogra de Pedro foi curada por Jesus na cidade de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A unção e o beijo que eram dados eram sinais de que:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A vara que brotou pertencia a:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Abel e Caim tiveram mais quantos irmãos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Abraão também foi conhecido com o:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Abraão teve filhos com quantas mulheres?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Absalão era celebrado devido à:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Absalão matou Amnom pelo fato deste ter estuprado Tamar. Qual era o grau de parentesco entre Amnom e Absalão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Absalão tentou tomar à força o reino de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Adão e Eva moravam em qual jardim?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Agar era de Sara, esposa de Abraão:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Aitofel, influente conselheiro do rei Davi, desertou para o lado de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além da safra de centeio, qual outra safra dos egípcios sobreviveu quando Deus enviou as pedras de fogo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além da safra de cevada, qual outra safra dos egípcios foi destruída em decorrência da praga das pedras de fogo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além da safra de linho, qual outra safra dos egípcios foi destruída em decorrência da praga das pedras de fogo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além da safra de trigo, qual outra safra dos egípcios sobreviveu quando Deus enviou as pedras de fogo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Daniel, quantas pessoas mais foram nomeadas Presidentes do reino da Babilônia pelo rei Dario?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de incenso, quais os outros presentes dados ao menino Jesus pelos Reis Magos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Jacó do Egito, quem mais foi embalsamado de acordo com a tradição egípcia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Jambres, como era o nome do outro mago do Faraó que conseguiu imitar 2 pragas enviadas por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Janes, como era o nome do outro mago do Faraó que conseguiu imitar 2 pragas enviadas por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Jesus, quantas pessoas mais foram crucificadas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de José do Egito, quem mais foi embalsamado de acordo com a tradição egípcia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Orfa, a quem mais Noemi deu um beijo de tristeza?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Pedro, quem mais estava pescando quando ambos foram chamados por Jesus para serem Seus discípulos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de profeta, Natã também foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de rei, Melquisedeque também foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Rute, a quem mais Noemi deu um beijo de tristeza?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de sacerdote, Melquisedeque também foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de seu filho Roboão, quem mais cultuava ídolos na casa de Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Sodoma, qual foi a outra cidade que também foi destruída por Deus através de fogo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além do sumo sacerdote, quem mais presenciou Jesus ter sido culpado por blasfêmia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além dos 120 Presidentes nomeados pelo rei Dario, que cargos também foram nomeados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além dos 3 Presidentes nomeados pelo rei Dario, que outros cargos foram nomeados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além dos anciãos, quem mais presenciou Jesus ter sido culpado por blasfêmia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além dos escribas, quem mais Herodes levou consigo a fim de descobrir onde Cristo iria nascer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além dos sacerdotes, quem mais Herodes levou consigo a fim de descobrir onde Cristo iria nascer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Amnom, filho de Davi, estuprou a Tamar. Qual era o grau de parentesco entre eles?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Amnon e Sefatias foram filhos do rei:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ana emprestou seu filho a:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Anake foi o pai de uma raça de gigantes conhecida como os:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "André, apóstolo de Jesus, tinha um irmão pescador que também aceitou o chamado de Jesus. Seu nome era:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Anrão teve como filhos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes da Páscoa dos judeus, por que os judeus estavam saindo do país e indo para Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de casar-se com o rei Assuero, Ester foi criada pelo seu primo:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de desertar para o lado de Absalão, a quem o influente Aitofel servia como conselheiro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de Paulo ir da cidade de Filipos à cidade de Trôade, qual festividade foi celebrada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de ser curado de sua cegueira, o que Bartimeu estava fazendo na estrada próximo a Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de tentar tirar um argueiro do olho ne nosso irmão, o que devemos tirar de nosso próprio olho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de ungir os pés de Jesus, o que a mulher pecadora fez com os seus pés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes do povo de Israel gritar para que os muros da cidade de Jericó caíssem, qual instrumento eles tocaram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Anualmente, Pôncio Pilatos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ao final dos 10 dias que durou o perído de testes da alimentação de Daniel e seus amigos, como eles estavam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ao receber a visão de um lençol cheio de animais, o que Deus disse a Pedro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ao ver Jesus ser levado preso à presença de Pôncio Pilatos, como Judas se sentiu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Aonde a rainha de Sabá foi visitar o rei Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Aos cidadãos de Israel Absalão deu:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Apesar de Elias ter sido um profeta de Deus, quem ainda assim tentou matá-lo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Apesar de ter sido ressuscitado por Jesus, quem estava pretendendo matar Lázaro novamente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a água virar sangue, como os egípcios conseguiram água fresca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a Arca da Aliança ter sido colocada no Templo de Jerusalém, o mesmo encheu-se de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a destruição dos rebeldes, como o povo israelita reagiu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a divisão do reino, em qual cidade Jeroboão, Rei das tribos do norte, fez sua morada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a interpretação dos seus sonhos, o rei Nabucodonosor deu a Daniel qual cargo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a luta com Deus, Jacó passou a se chamar:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a luta com Deus, o que o anjo deu a Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a morte de Herodes, para onde José levou Maria e Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a morte de quem o rei Davi finalmente teve seu trono restituído?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a ressureição de Jesus, durante 40 dias ele:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a ressurreição de Jesus, quem foi subornado para dizer que o seu corpo havia sido levado embora?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a ressurreição de Jesus, quem subornou os guardas para dizer que o Seu corpo havia sido levado embora?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Absalão, quem foi o próximo rebelde a se revoltar contra o governo do rei Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Amnom, filho de Davi, ter fingido estar doente, o que aconteceu a Tamar ao visitá-lo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após deixar Raabe, onde os espias enviados por Josué se refugiaram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Deus ter descido ao Templo de Jerusalém, o que Salomão fez ao povo que estava presente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Eliseu ter morrido e sepultado, o que aconteceu ao morto que foi jogado em seu túmulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Êutico ter morrido devido à queda de uma janela ao ter adormecido, o que Paulo fêz com ele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Jael ter acolhido seu inimigo, o que ela fez a ele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Jesus ter montado no jumento, o que os discípulos colocaram à Sua frente na estrada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Jesus ter ressucitado, durante quanto tempo Ele apresentou-se vivo às pessoas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Noé ter entrado na arca, quanto tempo ainda levou para começar a chover?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após o final do Dilúvio, quanto tempo ainda demorou para a arca de Noé finalmente encostar em terra seca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após o rei Davi ter jejuado e orado por 7 dias pela vida do seu filho, o que aconteceu a este?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após o retorno do cativeiro da Babilônia, os idosos do povo judeu choraram após terem visto a reconstrução:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após o Sinédrio ter considerado Jesus culpado por blasfêmia, para onde o levaram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após os filisteus terem aprisionado Sansão, o que obrigaram-no a fazer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Pedro ter sido libertado da prisão por um anjo, Pedro foi para a casa de Maria. Ela era de João Marco:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Pedro ter sido libertado da prisão por um anjo, Pedro foi para a casa de Maria:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter arrancado as portas de entrada da cidade de Gaza, para onde Sansão as levou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter brotado, a vara de Arão produziu:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter conversado com Jesus, o que Pôncio Pilatos quis fazer com Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter matado a Amnom, para qual cidade Absalão fugiu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter passado pela Macedônia e ido à Grécia, qual era o próximo destino que Paulo planejava ir?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter passado pela Macedônia, qual apóstolo ficou 3 meses na Grécia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter passado pela Macedônia, qual foi o próximo destino de Paulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter sido cercado pelo exército babilônico pela 3ª vez, o que o rei Zedequias tentou fazer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter sido construída, que ordens o rei Nabucodonosor deu ao seu povo com relação à estátua?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter sido curado da cegueira, qual foi o novo nome de Saulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter sido nomeado governador do Egito, José possuia um cargo de alto-escalão, apenas abaixo do:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter soltado a pomba pela 3ª vez e ela não ter retornado à arca, o que Noé concluiu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter traído Jesus por dinheiro e ter-se arrependido, a quem Judas tentou devolver o dinheiro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter traído Jesus, Judas Iscariotes arrependeu-se e suicidou-se:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter vestido os panos de saco, o rei Nínive sentou sobre:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter visitado a Macedônia e a Grécia, Paulo desejava ir para a Síria. Qual motivo levou Paulo a retornar à Macedônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após terem cruzado o rio Jordão, em que local os israelitas pararam pela 1ª vez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após terem espancado Jesus, o que os soldados romanos fizeram com a cana que haviam colocado em Suas mãos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após terem visitado o menino Jesus, como eles foram alertados para que não voltassem a Herodes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após terem visitado o menino Jesus, quem foi advertido para que não fossem novamente a Herodes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Arão, chefe de uma das tribos de Israel, era o líder de qual tribo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "As cinzas do forno foram utilizadas por Moisés e Arão para enviar contra os egípcios a praga dos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "As doze tribos de Israel nasceram através do casamento da linhagem de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "As portas de qual cidade Sansão arrancou e levou para o cume de um monte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "As roupas confeccionadas com pêlo de camelo foram usadas por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Assim que Moisés desceu do Monte Sinai pela 1ª vez e viu que o povo estava adorando um ídolo, o que Moisés fez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Atalia tentou destruir o rei Jeoás. Qual era o grau de parentesco entre eles?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Através de uma estrela, os Reis Magos foram levados até:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Baal era um deus cultuado pelo povo da terra de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Balaão estava sentado em uma jumenta quando lhe apareceu:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Balaão tinha um burro que chegou a falar após ter visto:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Baraque, comandante de Israel, disse que só iria à batalha se fosse acompanhado por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Bate-Seba foi casada com o oficial:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Bate-Seba pediu ao rei Davi para que escolhesse qual filho para lhe suceder no trono real?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Betuel foi o pai de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Cafarnaum era a cidade natal dos discípulos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Cão, Sem e Jafé são filhos de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Certa noite, em uma caverna, Jacó lutou contra:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Certa vez, o ferro de um machado caiu acidentalmente em um lago. Quem orou que fez com que o ferro voltasse à tona?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com o que a cesta onde Moisés foi depositado era coberto, para que a esta não afundasse?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com o que Maria envolveu o menino Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com o que os soldados romanos bateram na cabeça de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com o que Sansão matou 1.000 filisteus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com o seu exército, Nabucodonosor derrubou os muros de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com qual deus grego Barnabé foi confundido, enquanto estava com Paulo na cidade de Listra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com qual deus grego Paulo foi confundido quanto encontrava-se na cidade de Listra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com qual idade Jeoás passou a reinar sobre a nação israelita?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com quantos dias de vida Jesus foi circuncidado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com quantos dias deveria ser circuncidado um menino recém nascido?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com que espécie de madeira foi construída a arca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com que material Noé revestiu a arca, tanto internamente quanto externamente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com quem a rainha Vasti era casada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com quem Zípora e Jetro tinham um grau de parentesco em comum?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com relação a Jesus, ao invés de quebrar as Suas pernas, o que os soldados romanos fizeram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com relação à rebelião de Corá, Datã e Abirão, que fez com que o chão os engolisse?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como as árvores utilizadas na construção do Templo de Salomão foram transportadas do Líbano para a Palestina?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como Bate-Seba respondeu à notícia de que seu marido Urias havia morrido em batalha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como Deus lidou com a rebelião de Corá, Datã e Abirão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como é conhecido o dia de descanso dos judeus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como era o nome da esposa de Áquila, que auxiliou no ministério de Paulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como era o nome da esposa do rei Acazias, que desejava matar a Elias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como Israel comemorou a passagem pelo Mar Vermelho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como João Batista morreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como o rei Davi foi punido pelo fato de ter cometido adultério e assassinato?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como o rei Davi respondeu às acusações do profeta Namã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como o rei Nabucodonosor reagiu após Deus ter dado a Daniel a interpretação correta dos sonhos do rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como os judeus fizeram a dedicação do Templo, quando o processo de reconstrução foi concluído?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como Potifar respondeu à acusação de sua esposa contra José?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como Sansão deveria ser criado por sua mãe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava a esposa de Isaque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava a filha de Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava a irmã de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava a mãe de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o 1º filho de Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o irmão de Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o irmão de Ismael?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o irmão do gigante Golias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o irmão gêmeo de Esaú?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o nome do pai de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o primeiro filho de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o principal deus da agricultura dos filisteus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o sogro de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como terminou a rebelião entre Davi e Absalão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Contra quem Absalão, filho de Davi, vingou o estupro que foi cometido contra Tamar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Cornélio, uma pessoa honrada e temente a Deus, era:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Da família de Moisés, quem era o caçula?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dalila traiu Sansão por causa de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Daniel foi levado cativo para o reino da Babilônia quando a mesma era governada por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das 10 pragas que Deus enviou ao Egito, quantas os magos do Faraó puderam imitar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das alternativas abaixo, qual delas não era uma das regiões da Palestina na época em que Jesus viveu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das alternativas abaixo, qual é o companheiro de Paulo que não o estava aguardando na cidade de Trôade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das alternativas abaixo, quem não foi filho de Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das Montanhas do Líbano foram extraídas cedro e cipreste utilizadas na construção:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das mulheres abaixo, qual delas não teve filhos com Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das mulheres abaixo, qual delas teve flhos com Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das opções abaixo, qual delas não foi utilizada na placa que foi pregada na cruz de Cristo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das vezes que Noé soltou uma pomba para verificar se havia terra seca, em qual delas a pomba trouxe um ramo de oliveira?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Davi apanhou 5 pedras no chão para matar o gigante Golias. Quantas ele usou para matá-lo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Davi foi o:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Davi teve como cunhado:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com os Dez Mandamentos, a quem devemos honrar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 2:10, quando a sabedoria adentra o coração, o que se tornará agradável para sua alma?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 2:11-12, o que uma pessoa de discrição e conhecimento será desviada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 2:7, o que é o Senhor para aqueles que andam em integridade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 2:8, o Senhor guarda o caminho da justiça e faz o que para os devotos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 29:11, o que o tolo sempre perde e o sábio retém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 3:3, o que deverá ser atado ao redor da garganta e escrito nas tábuas do coração?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 30:20, a mulher adúltera come, limpa sua boca e diz o quê?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 30:33, bater o leite produz manteiga, premer o nariz produz sangue e premer a ira produz?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 30:5, Deus é o escudo para aqueles que se refugiam nEle porque todo o Seu trabalho é:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 31:9, para quem você deveria abrir sua boca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De qual madeira era feita a Arca da Aliança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De qual nação Deus matou 185.000 quando estes estavam tentando tomar Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De qual profeta Hilquias era filho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que direção vieram os Reis Magos quando foram ver o menino Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que era feito o propiciatório da Arca da Aliança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que forma foram transportadas as árvores de cedro compradas por Salomão para a construção do Templo de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que forma Jesus morreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que forma Raquel morreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que lado do barco Jesus havia dito para que os discípulos jogassem suas redes, após uma noite inteira sem pescar nada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem era o sepulcro onde Jesus foi colocado depois de crucificado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem eram as mesas que Jesus virou no Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem Husai era amigo, e que fingiu estar apoiando Absalão apenas para ficar informado sobre os planos da rebelião?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem Jesus expulsou 7 demônios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem José, filho de Jacó, interpretou os sonhos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem o rei Acaz queria comprar uma vinha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Debaixo de que árvore Elias se sentou desanimado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Débora foi a babá de quem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Débora, a profetisa, certa vez chegou a liderar:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Débora, a profetisa, também foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dentre as alternativas abaixo, qual deles não é filho de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dentre as alternativas abaixo, qual era a alimentação que João Batista não utilizava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dentre as alternativas abaixo, qual não foi um presente dado ao menino jesus pelos reis Magos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dentre as opções abaixo, qual deles não foi apóstolo de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Depois de passar pela Macedônia, quantos meses Paulo ficou na Grécia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Depois de ter sido vendido pelos seus irmãos, José se tornou escravo em qual país?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Depois que José do Egito interpretou o sonho do Faraó, que presente ele ganhou do Faraó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Depois que um pupilo é completamente treinado, como ele será?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Deus criou o Jardim do Éden que era molhado por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Deus curou o general sírio Naamã de qual enfermidade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Devido ao saque cometido contra a cidade de Jericó, qual foi a punição imposta a Acã e sua família?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Do que a rainha Jezabel acusou Nabote, para com isso poder prender Nabote e tomar a vinha que ele tinha em suas terras?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Do que eram feitas as roupas de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Do que Sansão precisou após ter matado 1.000 homens com apenas uma única queixada de jumento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dorcas era uma mulher bondosa e caridosa que morava na cidade de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dorcas, uma mulher bondosa e caridosa, também era conhecida como:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos 10 homens que sofriam de lepra e que foram curados por Jesus, quantos deles retornaram para agradecer pela cura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos 30.000 trabalhadores que foram designados para construírem o Templo de Jerusalém, quantos trabalhavam no mês?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos amigos de Daniel, quem foi jogado em uma fornalha ardente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos filhos de Adão e Eva, Abel foi o:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos filhos de Adão e Eva, Caim foi o:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos filhos de Adão e Eva, Sete foi o:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos livros da Bíblia abaixo, qual deles não termina com um ponto de interrogação?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos livros da Bíblia abaixo, qual deles tem apenas 1 único capítulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos livros da Bíblia abaixo, qual deles tem mais de 1 capítulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos livros da Bíblia abaixo, qual deles termina com um ponto de interrogação?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos livros da Bíblia abaixos, qual deles não contém a palavra \"Deus\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante 6 dias, quantas voltas por dia o povo de Israel marchava ao redor dos muros da cidade de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante a Última Ceia, a quem Jesus ofereceu um bocado de pão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante a Última Ceia, com que objetivo Jesus ofereceu um bocado de pão a Judas Iscariotes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante a Última Ceia, que gesto Jesus efetuou para sinalizar quem seria o traidor dentre os 12 discípulos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante a Última Ceia, quem ofereceu um bocado de pão a Judas Iscariotes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante a viagem de Paulo a Roma, o que desapareceu durante muitos dias devido à forte tempestade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante o 2º ataque de Nabucodonosor à cidade de Jerusalém, quem não foi levado cativo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante o ministério de Jesus, quem governava a Galiléia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante o reinado de Ezequias no reino de Judá, o que ocorreu com o reino de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante o tempo que ficou cego, o que Paulo não fez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante os 40 dias em que jesus esteve no deserto, o que ele fez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quanto tempo Jacó concordou em trabalhar para seu futuro sogro para poder desposar Raquel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quanto tempo não chovia quando então o profeta Elias orou por chuva?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quanto tempo o rei Jeoás reinou sobre a nação israelita?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quanto tempo o Rei Nabucodonosor achava que era um animal, e agia como tal?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quanto tempo Paulo ficou cego, até ser curado por Ananias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quantos anos Jacó precisou trabalhar para seu futuro sogro para poder desposar Raquel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quantos anos o povo israelita peregrinou pelo Deserto?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante sua última semana de vida, enquanto não estava em Jerusalém Jesus estava na cidade de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ebede-Meleque, que havia salvo o profeta Jeremias de morrer em uma cisterna com lama, era:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Elias mandou matar os profetas de qual deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Elias subiu aos Céus através de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Elias teve o privilégio de comer uma refeição preparada por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Elifaz, uma das pessoas que repreendeu a Jó, era de nacionalidade:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em 1961, foi encontrada em Cesaréia uma inscrição que fazia menção de um prefeito na época de Jesus. Quem foi mencionado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em Caná ocorreu:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em Éfeso, quem se zangou com Paulo e os discípulos e instigou uma revolta contra eles?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em lugar de Isaque, que animal Deus providenciou para Abraão oferecer em sacrifício?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em Malta naufragou o navio onde estava:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual ano de seu reinado Salomão iniciou a construção do Templo de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual árvore ficou preso Absalão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual árvore Zaqueu subiu para poder enxergar melhor Jesus no meio da multidão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual cidade encontrava-se Nabucodonosor quando o rei Zedequias foi levado à sua presença para receber a sentença final?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual cidade Jesus nasceu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual cidade Maria, mãe de Jesus, morava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual cidade Nabucodonosor derrotou o rei Neco e seu exército egípcio?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual cidade os discípulos de Jesus foram chamados cristãos pela 1ª vez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual lugar estranho Jesus falou para Pedro encontrar uma moeda para pagar o imposto do Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual mar André estava pescando quando Jesus o chamou para ser discípulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual mar Pedro estava pescando quando Jesus o chamou para ser discípulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual monte Abraão quase sacrificou seu filho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Elias desafiou os sacerdotes de Baal?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual monte fixou-se a arca de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Jesus chorou sobre Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Josué pronunciou as bênçãos dadas a Israel devido à sua obediência?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Moisés passou 40 dias com Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Moisés recebeu de Deus a missão para tirar o povo de Israel da escravidão do Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Moisés viu um arbusto em chamas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte o rei Saul e seus filhos foram derrotados pelos filisteus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Salomão construiu o Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual província ocorreu o 1º milagre de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual região montanhosa foi feita uma aliança entre Jacó e Labão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual rio Jesus foi batizado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual rio João Batista batizava as pessoas para que se arrependessem e buscassem o perdão de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual rio Moisés foi colocado em uma cesta, quando bebê?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual rio o profeta Eliseu orientou Naamã se molhar 7 vezes para se curar da lepra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em quantas línguas Pôncio Pilatos escreveu na placa que pregou na cruz de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em quantas raposas Sansão amarrou fachos incediadas em suas caudas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que ano a Bíblia foi dividida em capítulos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que ano a Bíblia foi dividida em versículos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que cidade Jesus e seus pais haviam ido para a comemoração da Páscoa dos judeus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que condição física estavam Sadraque, Mesaque e Abede-Nego quando eles saíram da fornalha ardente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que local Jesus foi crucificado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que local Moisés escondeu o egípcio que havia matado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que local Moisés foi sepultado por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que monte Moisés viu a Terra Prometida?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que Monte morreu Arão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que ocasião Jesus amaldiçoou uma figueira?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que orquestra tocava Jaaziel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que resultou a falsa acusação de que José havia tentado seduzir a esposa de Potifar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em resposta aos resmungos do povo israelita pelo fato dos rebeldes terem sido destruídos, o que Deus enviou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Judas fez após os sumos sacerdotes terem recusado a devolução das 30 moedas de prata?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Judas fez depois de trair Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Lázaro, o mendigo, quis comer da mesa do homem rico?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que levou os Reis Magos até o menino Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Melquisedeque foi ao mesmo tempo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Moisés e Arão pediram ao Faraó em relação aos israelitas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Moisés encontrou no Monte Horebe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Moisés foi instruído a fazer pelo fato de estar em solo sagrado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Moisés recebeu de Deus no Monte Sinai?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Moisés viu que estava em chamas, mas que não se consumia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Nabote possuía em suas terras que o rei Acaz queria comprar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Noé construiu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Noé enviou da arca, que ao retornar trouxe um ramo de oliveira em seu bico?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o Faraó deu a José pelo fato de ter interpretado os seus sonhos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o Faraó mandou fazer que fosse feito contra todos os bebês hebreus do sexo masculino que nascessem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei babilônico Belsazar viu na parede de diferente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Davi desejava construir, mas que foi negado por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Ezequias construiu para permitir que a água fosse levada à cidade de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Ezequias tolamente mostrou aos babilônios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Jeroboão pediu à sua esposa que fizesse quando esta fosse encontrar-se com o profeta Aías?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Manassés fez no Templo de Jerusalém quando reinou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Nabucodonosor mandou construir para que todos se prostrassem e adorassem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em sua rebelião, de quem eram os 250 seguidores que morreram consumidos pelo fogo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em sua viagem à Roma, onde naufragou o navio em que Paulo viajava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em toda a Bíblia, além de Jesus quem mais jejuou 40 dias e 40 noites?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em um de seus casamentos, ao casar-se com a filha do Faraó, Salomão fez aliança com o reino:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em uma das ocasiões em que Pedro orava no telhado, que visão ele recebeu de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Enquanto estava na casa de Simão, o leproso, o que uma mulher fez com um vaso de alabastro cheio de bálsamo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Enquanto esteve na cidade de Jope, Pedro esteve hospedado na casa de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Enquanto Sansão estava com uma prostituta, o que o povo da cidade de Gaza estava fazendo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Entre as alternativas abaixo, o que não havia dentro da Arca da Aliança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Entre os filhos de Davi, qual deles não nasceu durante seu reinado em Hebrom?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Entre os irmãos Moisés, Arão e Míriã, qual dentre eles era o mais velho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Esaú vendeu seu direito de filho mais velho em troca de quê?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Esaú, filho de Isaque e Rebeca, era:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ester casou-se com o rei persa:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ester, após ter casado com o rei Assuero, passou a ser a rainha do império:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Foi levado para o cativeiro da Babilônia:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Gamaliel foi professor do apóstolo:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Há quantas promessas na Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Herodes Agripa mandou matar os apóstolos pois sentia que o cristianismo era uma ameaça à sua religião:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Herodes decretou que todos os meninos fossem mortos com idade inferior a:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Herodias pediu a cabeça de quem a Herodes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Imediatamente antes da coroação do rei Salomão, quem pretendia governar o trono real a ser deixado por Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Incluindo Jesus, quantas pessoas jantaram com Ele na última Páscoa?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Incluindo Jesus, quantos homens foram crucificados com Ele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Isabel foi mãe de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Isaque recebe um beijo enganoso de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ismael e seu irmão Isaque nasceram com uma diferença de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Israel era composta por quantas tribos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jabal foi o pai dos que:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jacó tinha um irmão gêmeo, que se chamava:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jacó, irmão gêmeo de Esaú, nasceu segurando:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jedidias era também conhecido por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jemima era esposa de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jericó foi a primeira cidade conquistada pelos israelitas, quando estes eram comandados por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jeroboão governou as tribos de Israel do:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus chamou André para ser discípulo quando este estava:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus chamou Pedro para ser discípulo quando este estava:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus curou 10 homens que sofriam de qual enfermidade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus disse aos cambistas e àqueles que estavam vendendo que sua casa seria chamada de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus disse que após o sal ter perdido o seu gosto, o mesmo passaria a ser:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus disse que não havia vindo para chamar os justos, mas para chamar quem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus e João Batista eram, entre si:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus ensinou de que haveremos de prestar contas no dia do juízo de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus ensinou que deveríamos amar aos nossos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus expulsou os mercadores que haviam no:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus foi batizado por quem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus foi traído por Judas Iscariotes através de um:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus nos diz para não arremessar pérolas aos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus nos ensinou que devemos orar:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jó residia na terra de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jonas pregou arrependimento durante 40 dias aos cidadãos de qual cidade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jônatas matou um gigante filisteu que tinha quantos dedos nas mãos e nos pés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jônatas matou um gigante filisteu, assim como Davi. Qual era o parentesco entre eles?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jônatas teve um filho com o nome de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Joquebede tem como filhos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José foi trabalhar como escravo na casa de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José foi vendido como escravo no Egito. Qual foi o valor pago por ele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José foi vendido como escravo, ao preço de 20 barras de prata, para:\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José teve um sonho onde viu curvando-se para ele:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José teve um sonho, onde viu:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José, filho de Jacó, tornou-se um grande líder da nação:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jubal foi o pai dos que tocam:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Lídia foi a primeira mulher:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ló, sobrinho de Abraão, habitava em qual cidade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Lucas, autor do Livro de Lucas, foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Marcos, autor do Livro de Marcos, foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Maria, mãe de Jesus, e Isabel, mãe de João Batista, eram entre si:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Martinho Lutero foi o primeiro tradutor da Bíblia para a língua:\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Matusalém, o homem mais idoso da Bíblia, teve como neto:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Matusalém, o homem mais velho da Bíblia, morreu antes de seu pai (Enoque). Essa afirmação é:\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Mesaque, Sadraque e Abede-Nego foram jogados em uma fornalha ardente pelo rei da:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Miriã ficou enciumada por qual motivo?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na 1ª vez que Noé soltou uma pomba, o que ela trouxe em seu bico?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na 3ª vez que Noé soltou uma pomba, o que ela trouxe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na 5ª praga enviada por Deus ao Egito, quem foi poupado de uma pestilência muito grave?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na 7ª praga que se abateu sobre os egípcios, além das pedras de fogo Deus enviou também:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na biblioteca da Universidade de Gottingen, Alemanha, existe uma Bíblia que foi escrita em 470 folhas de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na biblioteca da Universidade de Gottingen, Alemanha, existe uma Bíblia que foi escrita em quantas folhas de palmeira?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na casa de quem Jesus teve seus pés ungidos por uma mulher?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na cidade de Jericó, em que local Raabe escondeu os espias enviados por Josué?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na cidade de Nazaré morou:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na entrada triunfal de Jesus em Jerusalém, foram estendidos ramos de:\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época de Moisés, o povo israelita era tido no Egito como um povo:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época de Moisés, quantas pragas ocorreram no Egito pelo fato do Faraó não autorizar a saída do povo hebreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época do povo israelita, Babilônia estava situada às margens do rio:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época em que Jesus viveu, a cidade de Nazaré estava localizada em qual região?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época em que Jesus viveu, a Judéia era governada por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época em que Jesus viveu, em qual província localizava-se a cidade de Caná?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época que Jesus viveu, a estrada que ligava Jerusalém a Jericó era conhecida por haver muitos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na estrada para Emaús, 2 discípulos de Jesus encontraram-se com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na estrada para qual cidade Jesus apareceu para 2 de Seus discípulos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na igreja primitiva, quem deveria ungir os enfermos com óleo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na parábola do Bom Samaritano, na estrada para qual cidade um homem havia sido surrado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na parábola do Filho Pródigo, o que fez o filho pródigo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na parábola do Filho Pródigo, o que o filho pródigo fez ao se arrepender?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na parábola do Filho Pródigo, quantos filhos tinha o homem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na presença de quem Jesus foi culpado de blasfêmia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na região montanhosa de Gileade, Jacó fez uma aliança com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na região montanhosa de Gileade, Labão fez uma aliança com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na semana da criação, em que dia Deus descansou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na visão que Deus deu ao centurião romano Cornélio, o anjo mandou buscar Pedro de qual cidade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na visão que Deus deu ao centurião romano Cornélio, qual discípulo o anjo mandou buscar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nabucodonosor era rei de qual país?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nabucodonosor mandou jogar os amigos de Daniel em uma fornalha ardente pois os mesmos se recusaram a:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nabucodonosor reconstruiu a cidade de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nas bodas de Caná, Jesus operou o 1º milagre, transformando água em:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nas bodas de Caná, quantos jarros de água Jesus transformou em vinho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nas bodas de Caná, quem pediu a Jesus que transformasse a água em vinho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nas bodas de Caná, sua mãe pediu a Jesus que:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nebo era um ídolo adotado pelos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Neustã foi o nome dado à:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ninrode, bisneto de Noé, construiu a cidade de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No 1º ataque de Nabucodonosor à Jerusalém, quem foi ajudar o reino de Judá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No 1º ataque de Nabucodonosor a Jerusalém, quem se tornou servo deste?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No 7º dia, o que Deus criou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No 8º dia de vida, o que deveria ser feito ao bebê do sexo masculino?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No cenáculo, ocorreu uma contenda entre os discípulos de Jesus sobre quem dentre eles era o:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No cenáculo, pelo fato de Jesus estar ciente de que em breve iria sofrer uma traição, o seu espírito estava:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No cenáculo, por que Jesus disse que estava com o espírito perturbado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No cenáculo, qual foi o motivo que gerou uma contenda entre os discípulos de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No decreto baixado por Nabucodonosor, o que aconteceria se alguém não louvasse o Deus de Sadraque, Mesaque e Abede-Nego?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No dia seguinte à sua entrada triunfal em Jerusalém, que espécie de árvore Jesus amaldiçoou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No jantar oferecido por Simão, o leproso, quem mais estava presente neste Jantar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No livro de Josué, Sesai, Aimã e Talmai eram filhos de quem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No Monte das Oliveiras, Jesus chorou pela cidade de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No sonho de José, para onde Deus o instruiu a levar Maria e o menino Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No túmulo de quem um morto foi jogado e reviveu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No vale de Tofete, o povo hebreu oferecia sacrifícios vivos de crianças ao deus:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O 1º filho de Abraão com Sara se chamou:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O altar de Moleque, profanado por Josias através da queima de ossos humanos, situava-se no:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O anjo Gabriel comunicou à Maria que ela:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O apóstolo Paulo foi morto:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O apóstolo Tiago foi morto:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O bezerro de ouro construído por Arão foi confeccionado a partir de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Dilúvio durou quantos dias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O filho do rei Davi morreu pelo fato deste ter:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O gigante Golias foi morto por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Gólgota foi o local onde:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O imperador Nero mandou decapitar o apóstolo:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Mar Morto ficava em qual dos reinos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Mar Vermelho foi aberto e dividido em 2 partes para permitir que o povo hebreu escapasse:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O menino Jesus nasceu em um:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Monte Carmelo ficava na tribo israelita de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Monte Hermom marcava ao norte a fronteira de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O nome de qual Sumo Sacerdote significava \"sumo, altíssimo\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Novo Testamento foi escrito em:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O oficial Urias morto em batalha foi casado com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O povo pediu a Pôncio Pilatos que soltassem Barrabás ao invés de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O profeta Aías foi consultado pelo rei Jeroboão para saber sobre:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O profeta Namã questionou o rei Davi pelo fato deste ter mantido relações sexuais com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O profeta Zacarias foi o pai de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O profeta Zacarias impulsionou o povo judeu para que terminasse a construção:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que a filha do Faraó encontrou preso junto aos juncos do rio Nilo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que a mulher sunamita e seu marido ofereceram a Eliseu quando este os estava visitando?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que a multidão gritou para Pôncio Pilatos após ele ter apresentado Jesus à esta?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Absalão cortava no fim de cada ano?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceria aos animais se por ventura eles tocassem o monte Sinai no 3º dia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Bate-Seba quando seu período de luto por Urias terminou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Eliseu após ter sido oferecido ao mesmo um caldo venenoso por acidente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Êutico após este ter adormecido enquanto ouvia a mensagem de Paulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Êutico após ter caído de uma janela pelo fato de ter adormecido enquanto Paulo pregava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Jesus após os 2 discípulos O terem reconhecido após Sua ressurreição?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Judas Iscariotes imediatamente após ter recebido um pedaço de pão diretamente de Jesus na Última Ceia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Raquel, esposa de Jacó, após ter dado a luz a Benjamim?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu ao Egito pelo fato do Faraó ter negado a saída do povo hebreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu ao rei Davi com a morte de Absalão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu com a mentira de que \"o corpo de Jesus foi roubado pelos discípulos\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu com as rãs, no final da 2ª praga enviada por Deus contra os egípcios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu com os 250 seguidores de Corá, em sua rebelião?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu com Saulo depois de seu encontro com Jesus na estrada para Damasco?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu quando a esposa de Jeroboão entrou em sua casa após ter retornado da consulta ao profeta Aías?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu quando Jesus disse aos discípulos que jogassem suas redes do lado direito do barco?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu quando Jesus morreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Ana fazia todos os anos para seu filho Samuel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Arão fez para o povo israelita enquanto Moisés estava no monte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Arão possuía que havia brotado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Ararat, Sinai e Nebo têm em comum?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que as esposas hetéias de Esaú levaram para Isaque e Rebeca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que cada chefe das tribos de Israel possuía?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que César Augusto decretou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Davi ajuntou em um riacho próximo, antes de sua batalha contra Golias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Deus disse a Moisés para tirar, quando este viu a sarça em chamas que não se consumia pelo fogo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Deus fez aos 185.000 que estavam acampados ao redor da cidade de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Deus fez no 7º dia da criação?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que devemos fazer com aqueles que nos amaldiçoam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que devemos fazer com aqueles que nos maltratam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que devemos nos vestir para nos proteger contra as tentações de Satanás?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que dizia a placa que foi pregada na cruz de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Eliseu fez para transformar o caldo venenoso novamente comestível?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que En-dor era?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que era incomum na sarça em chamas que Moisés viu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Esaú vendeu a Jacó, seu irmão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Esaú vendeu em troca de um ensopado?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que estava dentro da Arca da Aliança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Ezequias, rei de Judá, sabiamente retirou de seu reino?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que foi pregado na cruz acima da cabeça de Jesus Cristo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Golias disse a Davi quando viu o cajado na mão de Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que guiou os reis Magos em sua jornada a partir do oriente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que houve durante as últimas 3 horas em que Jesus esteve crucificado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jacó comprou de seu irmão, Esaú?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jacó tomou de Esaú?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus disse à mulher pecadora, em resposta pelo fato da mesma ter-lhe ungido seus pés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus disse quando Ele apareceu para os discípulos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus disse que as pessoas haviam transformado o Templo de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus disse que havia superado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus ensinou que acontecerá à uma casa ou cidade que estiver dividida?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus ensinou que devemos fazer quando forçados a andar 1 milha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus fez para ensinar os seus discípulos sobre servir ao próximo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus instruiu a seus discípulos a dizerem se alguém se recusasse a emprestar o jumento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus nos diz para não arremessar aos porcos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus nos ensinou se alguém nos pede nossa camisa?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus nos instruiu a fazer quando nos batem na face direita?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus oferecia para aqueles que o seguiam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Joabe fez a seu irmão enquanto o beijava?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jônatas foi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que José disse ao Faraó sobre o significado dos sonhos que este tivera?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que José fez com seus irmãos por 3 dias, quando estes foram comprar grãos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que José ganhou de seu pai que deixou seus irmãos com muito ciúme?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que José, filho de Jaco, interpretou para o Faraó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Josué enviou para a cidade de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o servo de Abraão deu a Rebeca como agradecimento, próximo ao poço?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que ocorreu durante o reinado de Oséias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os apóstolos deveriam fazer se uma casa ou cidade não os recebesse?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os discípulos de Jesus fizeram ao verem Jesus ser levado preso pelos soldados romanos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os filisteus colocaram dentro da Arca da Aliança quando a devolveram aos israelitas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os irmãos de José foram fazer no Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os israelitas fizeram a Jericó após a queda do muro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os israelitas fizeram para derrubar as muralhas de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os outros 2 Presidentes nomeados pelo rei Dario sentiam em relação ao cargo de Daniel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os pastores fizeram logo após terem recebido a notícia do nascimento do menino Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os soldados romanos disseram a Jesus quando colocaram a coroa de espinhos sobre Sua cabeça?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os soldados romanos faziam para apressar a morte das pessoas crucificadas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os soldados romanos fizeram com Jesus enquanto batiam-No com a cana em sua cabeça?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Pedro encontrou dentro da boca de um peixe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Pedro, Tiago e João fizeram como resposta após Jesus tê-los instruídos para vigiarem no Jardim do Getsêmani?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que pertencia a Esaú que lhe foi tomado por seu irmão Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Pôncio Pilatos disse quando trouxe Jesus do Pretório e O apresetou à multidão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Pôncio Pilatos fez enquanto disse: \"Sou inocente do sangue deste homem\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Raabe fez descer quando os israelitas invadiram a cidade de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Raabe pediu aos espias em troca de sua colaboração em escondê-los?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que representavam os 5 camundongos de ouro que foram colocados pelos filisteus dentro da Arca da Aliança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Rubens, o filho mais velho de Jacó, perdeu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Salomão construiu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Sansão amarrou nas caudas de 300 raposas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Sansão e seus pais encontraram quando estavam a caminho de Timnate?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Sansão fez ao leão com o qual lutou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Sansão fez com a queixada de um jumento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que se apossou de Sansão quando este encontrou-se com um leão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que siginica o nome de Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que significavam os sonhos do Faraó do Egito, interpretados por José?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que um jovem chamado Êutico estava fazendo enquanto Paulo estava dando uma mensagem em Trôade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Acabe foi morto pelo fato de ter sido alvo ao acaso de uma:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Davi viajou pelo Monte das Oliveiras pois estava fugindo:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Ezequias construiu um túnel para abastecer de água a cidade de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Herodes Agripa I mandou decapitar à espada o apóstolo:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Nabucodonosor mandou chamar magos e adivinhos para decifrar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Nabucodonosor viu uma grande estátua quando:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei persa Dario jogou Daniel em uma cova infestada de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O sacerdote Zadoque ungiu qual rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Templo de Jerusalém encheu-se de uma nuvem após ter sido colocada:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Abraão nasceu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde aconteceu o primeiro milagre de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde estava a força de Sansão:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Êutico estava sentado e caiu após ter adormecido enquanto ouvia a mensagem de Paulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Felipe encontrou o eunuco etíope ao qual batizou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde foi celebrada pela 1ª vez a Páscoa?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jesus foi preso?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jesus foi rejeitado pela 1ª fez, quando iniciou suas orações?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jesus pediu aos seus discípulos que tomassem um jumento emprestado para entrar em Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jesus se encontrava quando foi preso pelos soldados romanos, a mando dos líderes religiosos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jesus se encontrava quando Satanás o tentou a saltar, informando que os anjos de Deus o segurariam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jonas passou 3 dias e 3 noites?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Moisés recebeu as tábuas dos 10 Mandamentos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde o anjo Gabriel comunicou a Zacarias de que ele teria um filho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde o profeta Jeremias foi atirado para morrer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde o rei de Babilônia mandou jogar os amigos de Daniel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde os discípulos foram chamados de cristãos pela primeira vez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde os Reis Magos estavam procurando o bebê que nasceu \"Rei dos Judeus\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Paulo foi proclamado publicamente Rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Pedro estava quando ele cortou a orelha de um homem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Sansão construiu o Templo de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os 10 Mandamentos dados por Deus a Moisés foram escritos em:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os anciãos da igreja primitiva deviam ungir os enfermos com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os guardas que estavam guardando o sepulcro de Jesus receberam uma grande quantia de dinheiro para dizer:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os israelitas, em sua peregrinação pelo deserto, foi provido por Deus com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os livros de Mateus, Marcos, Lucas e João também são conhecidos como:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os muros de qual cidade caíram quando os israelitas gritaram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os piolhos que Deus havia enviado aos egípcios eram feitos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os Presidentes invejosos enganaram ao rei Dario, fazendo-o assinar um decreto que duraria:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os primeiros filhos de Jó foram mortos através de um:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os raptores de Jesus vendaram-no e disseram para Ele fazer o quê?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para a construção do Templo de Deus em Jerusalém, o que Salomão contratou de Hirão, rei de Tiro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para a construção do Templo de Jerusalém, qual rei forneceu a Salomão árvores de cedro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para ajudar uma viúva pobre, Eliseu pediu à ela tomasse emprestadas várias vasilhas, que foram enchidas com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para capturar Elias, o rei Acazias enviou:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para causar os tumores na 6ª praga a ser enviada contra os egípcios, Moisés e Arão foram instruídos por Deus a usar:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para não ir à Nínive dar a advertência final, Jonas se escondeu em um:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para obrigar o povo a prestar obediência à sua autoridade, o rei Nabucodonosor construiu:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para onde Abraão enviou Eliezer em busca de uma esposa para Isaque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para onde Jonas foi após ter sido vomitado pelo grande peixe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para onde o profeta Isaías predisse que os tesouros do Templo seriam levados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para onde os porcos que receberam a legião de demônios expulsos por Jesus se atiraram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para onde Sansão foi levado após ter sido cegado pelos filisteus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para poder enxergar melhor a jesus no meio da multidão, Zaqueu subiu em uma:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para proteger Moisés, onde sua mãe o escondeu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para provocar a profanação do altar eregido ao deus Moleque, o que Josias queimou neste altar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para qual cidade Josué enviou espias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para qual cidade os reis Magos foram conduzidos por uma estrela?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para qual país Daniel foi levado como cativo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para qual país foi Abraão durante a fome?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para que região Moisés fugiu após ter matado o egípcio?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para se apresentar a Isaque, seu futuro marido, Rebeca foi até:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para ter certeza de que o gigante Golias estava morto, o que Davi fez após ter jogado a pedra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para tirar a força de Sansão, Dalila:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Paulo ficou cego enquanto caminhava em qual estrada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Paulo foi curado da sua cegueira por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pedro, apóstolo de Jesus, tinha um irmão pescador que também aceitou o chamado do Mestre. Seu nome era:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pelo fato de Mefibosete ser o último descendente da casa de Saul, o que o rei Davi lhe devolveu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pelo fato de ter olhado para trás desobedecendo à instrução divina enquanto fugiam, em que a esposa de Ló foi transformada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pelo que cada árvore é conhecida?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pôncio Pilatos foi governador de qual região, na época que Jesus viveu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pôncio Pilatos ordenou que Jesus fosse:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por causa do decreto de César Augusto, José e Maria precisaram mudar-se para:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por causa do pecado de Acã, quantos homens de Josué morreram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por ciúmes e ódio, os irmãos de José o venderam à uma caravana como:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por dinheiro, Judas Iscariotes traiu a:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por onde os israelitas vagaram durante 40 anos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por qual Monte o rei Davi passou em sua fuga de seu filho rebelde?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por qual motivo Daniel não se alimentava com os alimentos que eram oferecidos na mesa do rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto anos aproximadamente o povo israelita foi escravo do povo egípcio?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto anos Moisés viveu em Midiã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto Moisés foi escondido por sua mãe, enquanto era bebê?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo Absalão refugiou-se na cidade de Gesur, pelo fato de ter matado a Amnom?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo durou o período de teste da alimentação de Daniel e seus amigos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo Jonas ficou preso dentro da barriga de um grande peixe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo o gigante Golias provocou os israelitas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo o povo de Nínive recebeu as advertências de Jonas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo o rei Davi jejuou e orou para que Deus mantivesse seu filho vivo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo os espias enviados por Josué ficaram escondidos em um monte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quantos anos Daniel e seus amigos deviam ser educados no serviço do rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quantos anos José ficou na prisão antes do Faraó chamá-lo para interpretar seus sonhos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quantos dias durou a praga enviada por Deus contra os egícpios que transformava a água em sangue?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que Daniel foi atirado na cova dos leões?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que Jesus nasceu em um estábulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que José e Maria precisaram viajar para Belém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que Nadabe e Abiú morreram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que o faraó mandou matar todos os bebês hebreus do sexo masculino que nascessem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que os irmãos de José decidiram vendê-lo como escravo por 20 moedas de prata?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que os irmãos de José o venderam como escravo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que Pôncio Pilatos ordenou a colocação de guardas no sepulcro de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que Rubens, o filho mais velho de Jacó, perdeu a sua primogenitura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quem um homem cego não pode ser guiado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por várias vezes, quem sofreu várias tentativas de assassinato por parte de Saul, rei de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque Deus pediu a Moisés para que tirasse as sandálias quando este viu a sarça ardente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque Deus santificou e descansou no 7º dia da semana da criação?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque dos 30.000 trabalhadores designados para construítem o Templo de Jerusalém, apenas 10.000 trabalhavam no mês?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque foi preciso que um anjo retirasse a pedra do sepulcro de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porquê Hamã ofereceu 10.000 talentos de prata ao Rei Assuero?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque Nabote não queria vender ao rei Acaz a vinha que havia em suas terras?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque Saul desejava matar a Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque um homem morte foi atirado no túmulo de Eliseu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Próximo a qual cidade o cego Bartimeu teve sua visão restabelecida por Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais discípulos receberam a orientação para que orassem junto com Jesus no Jardim do Getsêmani?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais eram os nomes dos magos do Faraó que conseguiram imitar 2 pragas enviadas por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais foram as primeiras palavras do anjo para os pastores que receberam as Boas Novas do nascimento do menino Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais foram as safras da cultura egípcia que foram destruídas, pelo fato de Deus ter enviado as pedras de fogo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais foram as safras da cultura egípcia que sobreviveram às pedras de fogo enviadas por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais personagens bíblicos jejuaram 40 dias e 40 noites?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual a mulher que acolheu o seu inimigo e depois o matou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual animal doméstico não é mencionado na Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual animal feriu Paulo, porém seu veneno não fez efeito algum?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual animal Satanás utilizou para enganar a Eva no Jardim do Éden?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual anjo disse a Zacarias que ele teria um filho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo converteu Lídia, a 1ª mulher convertida na Europa?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo de Jesus encontrou um eunuco etíope e o batizou na estrada para Gaza?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo de Jesus estava preso entre 2 guardas a prisão, e foi libertado por um anjo enviado por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo de Jesus tinha como profissão coletor de impostos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo escreveu a Epístola aos Romanos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo foi confundido pelos gregos como sendo o deus Mercúrio?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo foi morto decapitado:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo queria prosseguir sua viagem para a Síria, mas que foi obrigado à retornar à Macedônia pois havia uma cilada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo ressuscitou um jovem chamado Êutico, que morreu após ter caído de uma janela ao adormecer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo também era conhecido por Dídimo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo traiu Jesus por dinheiro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual cidade Abraão pediu a Deus para não ser destruída?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual cidade do Egito disse Faraó a José para acomodar sua família?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual cidade também era conhecida por haver muitos gigantes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual comandante de Israel que disse que só iria à batalha se uma mulher fosse com ele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual comemoração Jesus e seus pais participavam anualmente em Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual deficiência física Jônatas tinha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual deficiência física Mefibosete possuía?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual destas tribos não pertencia às 12 tribos de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual discípulo recebeu a visão de um lençol cheio de animais?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual discípulo ressuscitou Dorcas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual discípulo teve sua sogra curada por Jesus na cidade de Cafarnaum?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual discípulo traiu Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos amigos do rei Davi fingiu estar apoiando Absalão apenas para ficar informado dos acontecimentos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos apóstolos de Jesus era denominado Zelote?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos apóstolos foi mordido por uma cobra, porém não sofreu mal nenhum?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos discípulos de Jesus caminhou sobre a água?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos discípulos de Jesus cortou uma orelha dos algozes que vieram prender Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos filhos de Davi estuprou Tamar, sua meia-irmã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos filhos de Davi se rebelou contra o pai e tentou tomar o trono à força?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos filhos de Davi se vingou pelo fato de seu irmão Amnom ter estuprado sua própria meia-irmã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos livros abaixo não é considerado com um dos livros dos Evangelhos de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é a forma hebréia do nome do profeta Zacarias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o 5º mandamento de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o 6º mandamento de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o 7º mandamento de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o 8º mandamento de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o 9º mandamento de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o grau de parentesco entre Jetro e Zípora?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o grau de parentesco entre José do Egito e Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o grau de parentesco entre Salomão e Roboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o livro mais antigo da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o maior capítulo da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o maior livro da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o maior versículo da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o menor capítulo da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o menor lívro da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o menor versículo da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome da babá de Rebeca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome da cobertura da Arca da Aliança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome da primeira mulher?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome do anjo que avisou Maria de que ela iria ser a mãe de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome do filho de Ana que foi entregue ao Sumo Sacerdote Eli para ser cuidado por este?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome do filho de Ana, que foi dedicado ao serviço de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome do temanita que repreendeu a Jó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome do vale próximo a Jerusalém onde o povo sacrificava suas crianças ao deus Moloque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o salmo onde todos os versos terminam com o estribilho \"Porque a Sua misericórdia dura para sempre.\"?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o significado do nome de Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o significado do nome do Sumo Sacerdote Eli?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a alimentação básica de João Batista no deserto?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a altura aproximada do gigante Golias morto por Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a altura da arca de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a altura da estátua de ouro construída pelo rei Nabucodonosor?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a capital do reino de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a cidade natal do discípulo Pedro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a cidade que Deus mandou Jonas advertir sobre seus pecados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a cor da corda que Raabe fez descer quando os israelitas invadiram a cidade de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a distância aproximada entre a cidade de Emaús e Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a enfermidade que o comandante Naamã era acometido?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a enfermidade que o sacerdote deveria testemunhar, para definir se a pessoa deveria ou não ser apartada da família?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a finalidade da moeda que Pedro encontrou dentro da boca de um peixe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade apriximada de Jesus quando começou a pregar seu ministério publicamente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Abraão quando Isaque nasceu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Ezequias quando este se tornou rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Jesus quando seus pais se perderam do mesmo, e o encontraram ensinando no Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de José quando este recebeu do Faraó um anel pelo fato de ter interpretados os seus sonhos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Moisés quando o mesmo matou um egípcio pelo fato deste estar surrando um hebreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Noé quando a arca foi concluída?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Sara quando Isaque nasceu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a nacionalidade da mulher que estava tirando água do poço e deu a Jesus para beber?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a nacionalidade de 11 dos 12 apóstolos de Jesus?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a nacionalidade de Dalila, esposa de Sansão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a nacionalidade de Ebede-Meleque, o eunuco que havia salvo o profeta Jeremias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a nacionalidade do gigante Golias morto por Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de André antes de se tornar apóstolo de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de Demétrio que havia instigado uma revolta entre os próprios discípulos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de José, pai de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de Mateus, um dos apóstolos de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de Pedro antes de se tornar apóstolo de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de Raquel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de Zaqueu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a punição imposta pelo rei Dario caso alguém não obedecesse ao decreto por ele assinado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a punição imposta pelo rei Nabucodonosor caso as pessoas a quem ele chamou não decifrassem os seus sonhos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a sentença do anjo da morte que iria passar sobre o Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a tarefa principal de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o antigo nome de Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o antigo nome de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o antigo nome de Paulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o apóstolo de Jesus responsável pelas finanças?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o comprimento da arca de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o discípulo mais jovem de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o filho de Salomão que cultuava ídolos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco de Jetro para com Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco de Zípora para com Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Abraão e Harã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Absalão e Amnon?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Arão e Anrão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Elcana e Jeroão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Herodes, o Grande, e Herodes Agripa?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Jacó e Maria, mãe de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Jesus e Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Joás e Gideão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Jônatas e Saul?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Labão e Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Lázaro e Marta?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Mardoqueu e Ester, a esposa do rei Assuero?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Orfa e Ester?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Orfa e Noemi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Orfa e Rute?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Rute e Noemi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Rute e Orfa?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o irmão de Maria e Marta que Jesus ressuscitou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome babilônico de Azarias, amigo de Daniel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome babilônico de Daniel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome babilônico de Hananias, amigo de Daniel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome babilônico de Misael, amigo de Daniel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da cidade do rei Ogue que era cheia de gigantes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da esposa de Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da esposa de Herodes Antipas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da esposa de Jó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da esposa de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da esposa de Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da irmã de Raquel, esposa de Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do apóstolo que estava pregando a mensagem quando Êutico caiu da janela pois estava dormindo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do filho de Rute e Boaz?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do marido de Isabel, mãe de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do marido de Maacá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do pai de Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do pai de Moisés e de Arão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do pai de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do pai do profeta Zacarias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do poço de onde a mulher samaritana com quem Jesus falou estava tirando água?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o objetivo da mãe de Moisés ao tê-lo colocado em um cesto e deixado à deriva no rio Nilo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o objetivo de Saulo quando este ficou cego quando dirigia-se para a cidade de Damasco?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o outro nome de Jetro, sogro de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o outro nome pelo qual o apóstolo Tomé também era conhecido?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o reinado ocupado por Salmanezer quando levou cativo o povo de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o significado do nome de Urias, leal oficial do exército de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o sobrenome de Herodes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual festividade celebra o final da vida de escravidão do povo israelita no Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual filho de Davi o estava perseguindo para matá-lo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual filho de Davi refugiou-se na cidade de Gesur após ter matado Amnom?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual filho de Jacó perdeu a sua primogenitura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual filho do rei Azarias governou em seu lugar após a sua morte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 1ª praga que Deus enviou aos egípcios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 2ª praga que Deus enviou contra os egípcios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 3ª praga enviada por Deus ao povo egípcio?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 4ª praga que Deus enviou ao Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 5ª praga que Deus enviou ao Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 6ª praga que Deus enviou contra os egípcios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 7ª praga enviada por Deus contra os egípcios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a acusação do sumo sacerdote contra Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a árvore cuja semente Jesus usou para ensinar uma lição de fé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a causa que levou com que Israel fosse levado cativo pelos assírios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a desculpa utilizada por Amnom, filho de Davi, para que Tamar, sua meia-irmã, viesse à sua casa e a estuprasse?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a Epístola que o apóstolo Paulo escreveu enquanto esteve viajando pela Grécia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a mensagem que o profeta Aías disse à esposa de Jeroboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a pior rainha do reino de Isarel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a primeira cidade conquistada pelos israelitas quando estes estavam sob a liderança de Josué?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a proclamação do rei de Níníve para que todas as pessoas fizessem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a profecia que o profeta Isaías disse ao rei Ezequias com relação aos tesouros do Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a profissão de Ninrode?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a profissão de Zacarias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a quantidade de seguidores de Corá que foram consumidos pelo fogo em sua rebelião?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a resposta do rei Davi à tentativa de rebelião promovida por Absalão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a única mulher na Bíblia que teve a sua idade mencionada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a única ocasião registrada no Novo Testamento em que Jesus cantou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o 1º discípulo a perder sua vida pelo fato de estar evangelizando?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o 1º discípulo morto a mando de Herodes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o 1º milagre que Jesus realizou em público?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o decreto assinado pelo rei Dario vigente por 30 dias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o fato que levou o rei Davi a ser questionado pelo profeta Namã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o fato que permitiu que os 2 discípulos de Jesus que caminharam com Ele na estrada de Emaús O reconhecessem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o filho de Jacó que tornou-se um grande líder da nação egípcia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o filho do rei babilônico Nabucodonosor?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o filho primogênito do rei Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o filho que Davi não teve com Bate-Seba?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o grau de parentesco entre Moisés e Anrão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o grau de parentesco entre Moisés e Joquebede?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o homem mais velho da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o melhor amigo de Jônatas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o motivo que levou Deus a optar pela destruição da Terra através de um dilúvio?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o nome que o rei Davi e Bate-Seba deram ao segundo filho que tiveram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o novo mandamento que Jesus ensinou aos seus discípulos no cenáculo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o objetivo de Josias em queimar ossos humanos no altar eregido ao deus Moleque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o outro nome que Deus deu a Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o pecado que Davi cometeu com Bate-Seba?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o período de reinado de Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o primeiro apóstolo a morrer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o primeiro discípulo a perder a sua vida?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o profeta que antecedeu a João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o profeta que apareceu após Malaquias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o profeta que era conhecido como o \"profeta que chorava\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o profeta que sucedeu a Samuel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o rei mais cruel que o povo de Israel já teve como governante?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o rei que destruiu os muros de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o último grande líder da nação babilônica?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o último livro da Bíblia a ser escrito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o único dos doze apóstolos que não era Galileu?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual ídolo foi a principal deusa de Tiro, conhecida também como \"A Dama do Mar\" no livro dos judeus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual ídolo representava o deus do conhecimento e da literatura de Babilônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual ídolo também era conhecido por Tiro como a \"Deusa do Mar\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual imperador Romano decretou que todos deveriam pagar impostos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual imposto deveria ser pago com a moeda que Pedro encontrou dentro da boca de um peixe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual instrumento era tocado pela orquestra criada pelo rei Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual juiz de Israel tinha 30 filhos que cavalgavam 30 jumentos?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual mandamento nos instrui a respeitar a vida do próximo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual mar dividiu-se em dois para permitir que o povo hebreu escapasse da perseguição do Faraó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual Monte marcava ao norte os limites de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual mulher liderou um exército em uma batalha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual nação o rei Sisaque governava quanto atacou Jerusalém e saqueou o Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual nação tomou o povo israelita como escravo por aproximadamente 400 anos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o homem que, depois de morto, matou mais pessoas que em sua vida?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o nome do filho do rei Ezequias que ocupou o trono real após sua morte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o nome do jovem que estava dormindo sentado em uma janela enquanto Paulo pregava a mensagem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o nome do pai de Rebeca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o nome que deram à serpente de bronze levantada por Moisés no deserto?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o percentual do Novo Testamento que foi escrito em grego?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o rei que adivinhava pelas nuvens, praticava feitiçaria e queimou o seu filho em sacrifício?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual planta deveria ser utilizada para aplicar o sangue do cordeiro nos batentes da porta das casas dos israelitas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual povo considerava Dago como o principal deus da agricultura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual povo depositou na Arca da Aliança 5 camundongos de ouro quando a mesma foi devolvida aos israelitas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual povo tinha como divindade o deus Moloque, que exigia o sacrifício de crianças?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual povo, provido por Deus, peregrinou pelo deserto durante 40 anos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta a rainha Jezabel tentou matar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta antecedeu a Namã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta disse a mensagem ao rei Jeroboão de que todos os filhos da casa real seriam mortos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta foi atirado em uma cisterna para afundar na lama e ser deixado lá para morrer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta foi chamado para dizer sobre a condição de saúde do filho de Jeroboão, quando este adoeceu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta foi o pai de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta impulsionou os judeus para que terminassem a reconstrução do Templo, após o retorno da Babilônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta predisse ao rei Ezequias que os tesouros do Templo seriam levados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta se inspirava ouvindo música?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta transformou-se em sacerdote?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profissão Jesus aprendeu de seu pai?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rainha foi visitar o rei Salomão em Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei a rainha de Sabá foi visitar em Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei antecedeu o governo de Belsazar no império Babilônico?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei antecedeu o reinado de Roboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei Atalia tentou destruir?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei babilônico teve sonhos onde Daniel afirmou que apenas Deus era capaz de interpretá-los?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei babilônico travou uma batalha contra o rei Neco do Egito e derrotou-o na cidade de Carquêmis?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei construiu altares a Baal e erigiu uma estátua da deusa Asera no Templo de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei da Assíria levou cativo todo o povo do reino do norte de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei da Babilônia mandou jogar os amigos de Daniel em uma fornalha ardente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei da Babilônia mandou jogar os amigos de Daniel na cova dos leões?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei de Israel tinha 700 esposas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei de Judá construiu um túnel que permitiu que fosse trazida água para a cidade de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei de Judá foi capturado na cidade de Jericó, após ter escapado do 3º ataque do rei Nabucodonosor?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei devolveu a Mefibosete todas as propriedades pessoais de Saul?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei do Egito atacou Jerusalém e saqueou o Templo, roubando assim seus tesouros?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei egípcio travou uma batalha contra o rei Nabucodonosor e foi derrotado na cidade de Carquêmis?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei foi morto por uma flecha atirada ao acaso?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei foi questionado pelo profeta Namã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei juntamente com seus filhos foram derrotados pelos filisteus no Monte Gilboa?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei mandou buscar o profeta Aías quando seu filho adoeceu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei mandou chamar adivinhos e magos para decifrar os sonhos que tinha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei mostrou os tesouros do Templo aos babilônios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei o sacerdote Samuel ungiu como rei de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei pagava 150 ciclos de prata por um cavalo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei persa jogou Daniel na cova dos leões?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei queria capturar Elias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei sucedeu o governo de Nabucodonosor no império Babilônico?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei viajou pelo Monte das Oliveiras fugindo do seu filho rebelde?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei, ao ter adoecido, mandou que fosse consultado o deus Baal-Zebube, para ver se sararia da sua doença?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual sacerdote ungiu Davi como o novo rei de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual sacerdote ungiu Salomão como rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual salmo possui 5 versículos exatamente iguais?"], ["LIMIT", 1]] Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual servo de Deus teve os seus filhos mortos por um tufão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual tio criou Ester como filha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando 3 mil homens amarraram Sansão, o que eles fizeram com ele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando a Babilônia era governada pelo rei Belsazar, qual povo estava prestes a conquistar a Babilônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando a cabeça de Sansão foi raspada, por que ele não conseguiu vencer os filisteus como nas 3 vezes anteriores?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando a cruel rainha Jezabel morreu ela foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando a mulher pecadora derramou lágrimas sobre os pés de Jesus, com o que ela secou seus pés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando a torre de Babel estava sendo construída, o que Deus fez às pessoas que a estavam construindo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando as obras do Templo foram interrompidas por causa da oposição, quem decretou que o trabalho fosse retomado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Dario tornou-se rei da Babilônia, para qual posição Daniel foi nomeado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Davi desafiou Golias com sua funda e algumas pedras, o que Davi levava consigo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Davi matou o gigante Golias, Davi era:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Davi viu Bate-Seba do teto de sua casa, o que ela estava fazendo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Deus apareceu para Salomão em sonho e permitiu que ele pedisse o que quisesse, o que Salomão pediu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Elias foi levado para os Céus por Deus ainda vivo, o que Elias era:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Elias, o profeta, começou a orar ao lado de um lago, o que começou a flutuar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Ezequias contraiu uma doença fatal, quantos anos de vida Deus lhe acrescentou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando foi feita a primeira tradução completa da Bíblia para o inglês por Wycliffe?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jeoaquim reinava em Judá, quem atacou Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus chegou a Betfagé, enviou seus discípulos para a aldeia mais próxima para pedir emprestado um:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus e seus discípulos chegaram ao Jardim do Getsêmani, o que Jesus pediu aos seus discípulos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus estava indo para o Gólgota, quem carregou um trecho a cruz de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus estava jantando na casa de um dos fariseus, o que uma mulher fez por Ele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus estava no Jardim do Getsêmani, o que lhe ocorreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus expulsou os demônios de um homem que vivia no cemitério, para onde a legião foi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus foi preso, o que Pedro fez:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus foi ungido com o bálsamo, qual dos discípulos se indignou por esse ato?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus lavou os pés dos discípulos, o que Ele pretendia ensinar aos mesmos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus se aproximava de Jerusalém montado no jumento, o que os fariseus pediram a Ele fazer com a multidão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus se aproximava de Jerusalém montado no jumento, quem pediu a Ele que repreendesse a multidão que O saudava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus transformou água em vinho, qual evento estava sendo celebrado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jonas foi jogado no mar, Deus o salvou de se afogar enviando:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando José do Egito morreu, seu corpo foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando José foi vendido como escravo, quantas moedas de prata os irmãos de José receberam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Judas percebeu que Jesus havia sido condenado pelo Sinédrio, o que ele fez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Maria e José estavam procurando a Jesus quando Este tinha apenas 12 anos, onde finalmente o encontraram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Maria foi visitar sua prima Isabel, quanto tempo ela ficou ausente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Moisés desceu do Monte Sinai pela 1ª vez com as tábuas da lei de Deus, o que Moisés viu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Moisés era bebê, ele foi colocado por sua mãe em um cesto, e deixado no:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Moisés viu um egípcio surrando um hebreu, o que Moisés fez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Noé enviou da arca uma pomba, o ramo de qual árvore ela trouxe em seu bico?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Noé enviou uma pomba da arca, o que ela trouxe em seu bico?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o anjo da morte passou pelo Egito, o sangue de qual animal foi colocado nos batentes da porta?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o Espírito do Senhor se apossou de Sansão, o que aconteceu com as cordas que o amarravam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o filho de Jeroboão adoeceu, quem ele mandou sua esposa procurar, em busca de respostas sobre a condição do menino?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o jovem Daniel falou com o rei Nabucodonosor, quem ele disse que saberia interpretar os sonhos do rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o povo hebreu estava apostatado de Deus, que espécie de sacrifícios eram oferecidos ao deus Moloque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o rei Belsazar estava dando uma festa no palácio real, o que aconteceu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o rei Belsazar viu uma mão sem corpo escrevendo na parede, o que estava ocorrendo no palácio real?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o rei Manassés reinou, de qual deusa ele erigiu uma estátua no interior do Templo de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o rei ouviu a mensagem de Jonas, com que roupas ele se vestiu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o rei Zedequias escapou do cerco bailônico à cidade de Jerusalém, em qual cidade ele foi capturado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o reino de Israel foi conquistado pelos assírios, quem reinava no reino de Judá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando os filhos de Jacó foram comprar grãos no Egito, quem disse a eles que eles eram espias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando os filisteus atacaram Sansão pela 4ª vez, o que eles lhe fizeram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando os irmãos de José foram para o Egito para comprar grãos, o que José disse a eles?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando os judeus retornaram a Jerusalém vindo de Babilônia, como os idosos reagiram à construção do alicerce do Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Paulo foi à Roma, o que os marinheiros do navio tentaram fazer ao avistarem terra após a violenta tempestade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Paulo foi à Roma, o que os soldados romanos tentaram fazer aos prisioneiros quando o navio estava naufragando?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Paulo foi à Roma, quem tentou matar os prisioneiros que haviam no navio que estava naufragando?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Paulo precisou retornar da Grécia p/ a Macedônia pois desejavam matá-lo, onde seus companheiros o estavam aguardando?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Roboão tornou-se rei, o que os israelitas lhe pediram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Salomão morreu, onde ele foi interrado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Sansão apaixonou-se por Dalila, ela vivia no vale de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Sansão estava andando pela estrada, que animal tinha em seu corpo uma colméia de mel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Sansão estava andando por uma estrada, o que ele encontrou no corpo de um leão morto?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Sansão foi à cidade de Timnate, o que ele pediu aos seus pais?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Sansão visitou a cidade de Gaza, o que ele fez por lá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando um caldo venenoso foi acidentalmente oferecido a Eliseu, o que ele colocou na panela para torná-lo comestível?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Zedequias governava o reino de Judá, quem atacou Jerusalém pela 3ª vez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas esposas Jacó tinha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas esposas Salomão teve?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas esposas tinha o rei Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas janelas havia na arca de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas letras a Bíblia contém aproximadamente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas letras possui o maior versículo da Bíblia (Ester 8:9)?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas letras possui o menor versículo da Bíblia (Êxodo 20:13)?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas ovelhas foram sacrificadas como oferta pacífica quando Deus entrou no Templo de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas palavras a Bíblia contém aproximadamente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pedras Davi apanhou no chão para matar o gigante Golias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pessoas haviam no navio que naufragou onde Paulo estava em sua viagem para Roma?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pessoas Jesus alimentou com 5 peixes e 2 pães?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pessoas justas Abraão estava procurando em Sodoma?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pessoas morreram do povo israelita em função da praga enviada por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pessoas perderam a sua vida por não saberem pronunciar a palavra Shiboleth?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas portas havia na arca de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes Deus apareceu a Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes Eliseu disse para Naamã se molhar no rio Jordão para se curar da lepra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes Jesus perguntou a Pedro se este o amava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes Noé enviu uma pomba para procurar por terra seca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes o rei Nabucodonosor atacou Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes Pedro negou a Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas voltas o povo de Israel deu em volta dos muros da cidade de Jericó, para que estes caíssem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto custou o terreno que foi a sepultura de Sara?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto Jesus foi tentado por Satanás, para matar a fome de Jesus Satanás pediu que as pedras fossem transformadas em:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto Judas Iscariotes disse que custava o perfume que lavou os pés de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto os príncipes filisteus ofereceram a Dalila para que ela descobrissem o segredo da força de Sansão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto pagava Salomão por um cavalo?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto Satanás tentou a Jesus, o que o mesmo pediu que Jesus transformasse em pão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto talentos de prata Hamã ofereceu ao Rei Assuero para exterminar os judeus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto tempo durou a celebração de dedicação do Templo de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto tempo Moisés ficou no Monte Sinai com Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto tempo passou até que José e Maria reencontrassem Jesus, que havia separado-se deles em uma viagem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto tempo passou até que Maria percebesse que Jesus, então com 12 anos de idade, não estava na caravana de regresso?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos andares havia na arca de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos Arão era mais velho do que Moisés?"], ["LIMIT", 1]] [1mQuizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos de diferença há entre os irmãos Esaú e Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos Jacó precisou trabalhar para casar-se com Léia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos Jacó precisou trabalhar para finalmente casar-se com Raquel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos José do Egito tinha quando morreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos Mefibosete tinha quando foi deixado cair por sua babá, e que com isso afetou seus 2 pés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos o rei Salomão levou para construir o Templo de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos tinha Manassés quando foi constituído rei do povo de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos viveu Matusalém, o homem mais velho da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos apóstolos Jesus chamou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos bois foram sacrificados como oferta pacífica quando Deus entrou no Templo de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos cânticos escreveu Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos capítulos a Bíblia possui?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos capítulos possui o maior livro da Bíblia (Salmos)?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos cestos de comida ainda sobraram após todas as pessoas terem se alimentado no milagre da multiplicação?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos conveses havia na arca de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos demônios Jesus expulsou de Maria Madalena?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos dias a mãe de Rebeca sugeriu que ela ficasse com seus parentes antes de partir para se casar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos dias Jesus jejuou enquanto esteve no deserto, antes de iniciar seu ministério?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos dias Lázaro esteve sepultado antes de ser ressuscitado por Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos discípulos Jesus mandou tomar emprestado um jumento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos Evangelhos existem no Antigo Testamento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos Evangelhos existem no Novo Testamento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filhos de Davi nasceram durante seu reinado em Hebrom?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filhos de José se tornaram líderes das tribos de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filhos Jair, juiz de Israel, tinha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filhos Noé tinha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filisteus morreram quando Sansão destruiu a construção em que se encontravam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filisteus Sansão matou com apenas uma única queixada de jumento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos foram os dias da criação?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos foram os filhos que Davi teve com Bate-Seba?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos Governadores o rei Dario nomeou quando assumiu o reino da Babilônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos homens foram precisos para amarrar Sansão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos músicos faziam parte da orquestra do rei Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos personagens do Velho Testamento apareceram na montanha durante a transfiguração?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos Presidentes o rei Dario nomeou quando assumiu o reino da Babilônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos príncipes filisteus ofereceram a Dalila 1.100 moedas de prata?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos provérbios escreveu Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos querubins de ouro haviam sobre o propiciatório da Arca da Aliança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos trabalhadores foram designados para a construção do Templo de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos versículos a Bíblia possui?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos versículos possui o maior capítulo da Bíblia (Salmos 119)?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos versículos possui o menor capítulo da Bíblia (Salmos 117)?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos versículos possui o menor livro da Bíblia (2ª João)?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que animais os 30 filhos de Jair, juiz de Israel, montavam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que animal Balaão possuía que chegou a falar após ter visto um anjo do Senhor?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que animal comprimiu o pé de Balaão contra o muro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que animal teria que ser reposto cinco vezes mais se fosse roubado por alguém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que cena incrível Moisés presenciou quando ele estava no Monte Horebe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que desejava construir o Templo de Deus, mas cujo pedido foi negado por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que discípulo Jesus encontrou sob uma figueira?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que evento ocorreu quando Jesus tinha apenas 8 dias de idade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que faixa de montanhas produziu as árvores de cedro e de cipreste que Salomão utilizou na construção do Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que falso deus era a divindade principal de Canaã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que foi a mãe de Jeroboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que foi o pai dos músicos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que grupo de pessoas queria saber o segredo da força de Sansão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que homem israelita era celebrado por sua beleza?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que ídolo representava o deus sírio louvado pelo general Naamã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que instrumento era tocado nos funerais nos tempos do Novo Testamento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que instrumento musical foi ouvido antes de Moisés subir ao Sinai e receber a Lei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que instrumentos Miriã tocou depois da travessia do Mar Vermelho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mandamento nos instrui a não matar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mandamento nos instrui a sermos honestos com o próximo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que monte era tão sagrado que se um animal o tocasse morreria instantaneamente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mulher abandonou a família para acompanhar a sogra?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mulher ajudou o filho a praticar uma fraude?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mulher devotada dedicou seu filho, Samuel, ao Senhor?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mulher diabólica tentou destruir o rei Jeoás e toda a prole de Judá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mulher matou toda a família real para ser rainha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que parte do corpo de Mefibosete foi afetada quando sua babá o deixou cair com apenas 5 anos de idade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que parte do corpo uma jumenta comprimiu o profeta Balaão contra um muro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que pessoas o profeta Isaías predisse que seriam levadas cativas para Babilônia e se tornatiam eunucas no palácio?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que povo chamava Belzebu como o \"príncipe dos espíritos do diabo\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que povo derrotou o rei Saul e seus filhos no Monte Gilboa?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que rei reconheceu que Deus fez com ele o mesmo que ele tinha feito aos seus inimigos?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que rio se transformou em sangue?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que substância Jesus disse ser inútil após ter perdido o gosto?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem absteu-se de alimentar-se dos alimentos impuros que haviam na mesa do rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem aconselhou Jacó a retornar para a terra de seus pais?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem adoeceu que obrigou o rei Jeroboão a procurar o profeta Aías para dizer-lhe sobre sua condição de saúde?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem afirmou que apenas Deus poderia interpretar os sonhos que o rei Nabucodonosor estava tendo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ajudou uma viúva pobre enchendo várias vasilhas de azeite?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem amarrou Sansão com 7 tendões não secos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem amparou Saulo e defendeu-o para os apóstolos, assegurando-lhes que agora Saulo era um verdadeiro cristão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Ananias curou da cegueira?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem apareceu a Jesus na montanha durante a transfiguração?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem apareceu a Jesus para tentá-lo no deserto?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem apresentou Jesus surrado à multidão, dizendo: \"Eis o homem!\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem arrancou as portas de entrada da cidade de Gaza?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem arrependeu-se após ter visto Jesus ser levado preso para a presença de Pôncio Pilatos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Atalia matou para poder ser rainha?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Barnabé defendeu perante os apóstolos, assegurando que ele havia se convertido?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem batizava as pessoas no rio Jordão para que se arrependessem e buscassem o perdão de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem casou-se com Bate-Seba após ela ter terminado seu período de luto por Urias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem casou-se com Maria, mãe de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem cavalgou um camelo quando dirigia-se ao seu casamento?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem chamou o fogo dos Céus para consumir um altar de sacrifícios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem chorou quando viu o alicerce do Templo ser reconstruído, após terem retornado do cativeiro da Babilônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem chorou sobre Jerusalém no Monte das Oliveiras?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem colocou o bebê Moisés em um cesto no rio Nilo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem colocou os irmãos de José na prisão, quando estes foram comprar grãos no Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem colocou Zedequias no trono do reino de Judá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem comandou os israelitas em sua batalha contra Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem comprou o direito de primogenitura que não lhe era seu por direito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem comunicou a Maria, futura mãe de Jesus, que ela iria ter um bebê?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem conduziu os israelitas cantando após a travessia do Mar Vermelho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem confundiu um canto da multidão com um canto de guerra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem construiu a cidade de Nínive?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem construiu o Templo de Deus em Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem contou aos pastores sobre o nascimento de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem cortava os cabelos no fim de cada ano, pois os mesmos muito lhe pesavam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem cortou o cabelo de Sansão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem cuspiu em Jesus enquanto o mesmo estava sendo surrado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem dançou na festa de aniversário de Herodes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem decidiu que, caso as pessoas não conseguissem decifrar seus sonhos, essas pessoas seriam mortas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem deixou seu filho sob um arbusto para não vê-lo morrer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem deu beijos políticos aos cidadãos de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem deu presentes de ouro ao menino Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem deu um beijo de traição em Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Deus enviou para preparar o caminho de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse a frase \"Raça de víboras, quem vos ensinou a fugir da ira vindoura?\""], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse a Zacarias que ele teria um filho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse ao Faraó que haveria um período de muita fome no Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse que queria ver os furos nas mãos e nos pés de Jesus para acreditar que Jesus havia ressuscitado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse: \"Desafio hoje as fileiras de Israel; dai-me um homem para que pelejemos.\""], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse: \"Se tu é o Filho de Deus, manda a esta pedra que se torne pão.\""], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse: \"Sou inocente do sangue deste homem.\""], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem durante 7 anos imaginava que era um animal?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem durante sua viagem para Roma enfrentou uma violenta tempestade no mar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem é chamado de \"o príncipe dos espíritos do diabo\" pelos fariseus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem é o primeiro bígamo citado na Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem encontrou a cesta onde Moisés encontrava-se escondido, presa junto aos juncos do rio Nilo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem encontrou um arbusto em chamas que não se consumia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enganou Eva no Jardim do Éden?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enganou Jacó em seu próprio banquete de casamento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enganou Jacó, que ao final dos primeiros 7 anos de trabalho, não recebeu a mão de Raquel, mas sim da sua irmã Léia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enganou o rei Dario, fazendo-o com que assinasse um decreto onde o rei deveria receber unicamente as orações?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enviou Eliezer para procurar por uma esposa para Isaque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enviou espias para a cidade de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era a esposa do impostor Ananias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era a esposa do rei Assuero que recusou-se a ser exibida em frente a alguns convidados bêbados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era a mulher viúva e moabita que se dedicara inteiramente à sua sogra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era a rainha cruel de Israel que foi devorada pelos cachorros quado morreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era a sogra de Rute?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o centurião romano honrado e temente a Deus que teve uma visão de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o conselheiro influente do rei Davi que desertou para o lado de Absalão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o deus dos amonitas que exigia o sacrifício de crianças?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o home da terra de Uz?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o homem segundo o coração de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o honesto homem a quem Deus deu instruções para construiur uma arca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o irmão de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o irmão mais novo de Miriã?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o marido impostor de Safira?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o melhor amigo de Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o pai de Ló, que foi resgatado por um anjo da cidade de Sodoma?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o profeta de Jerusalém que visitou os cristãos em Antioquia e contou-lhes sobre uma grande fome que estava por vir?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o rei da Assíria quando Deus matou 185.000 homens que estavam tentando tomar Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o rei de Israel quando a Assíria conquistou o reinado do norte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o rei de Judá quando Nabucodonosor atacou Jerusalém pela 1ª vez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o rei de Judá quando Nabucodonosor atacou pela 3ª vez a cidade de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o rei governante em Jerusalém quando Jesus nasceu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o Sumo Sacerdote que cuidou de Samuel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o tio de Ló?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem eram os pais de Jedidias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem eram os pais de José e Benjamim?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem eram os pais de Sete?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem eram os pais dos irmãos gêmeos Esaú e Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem escondeu Moisés em uma cesta, com o objetivo de protegê-lo do decreto de morte pronunciado pelo Faraó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem escondeu os espias na cidade de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem escreveu a carta de Paulo aos Romanos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem espargia o sangue do sacrifício no propiciatório da Arca da Aliança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem estava em pé no pináculo do Templo e tentou Jesus a saltar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem estava perseguindo o povo israelita quando eles estavam atravessando o Mar Vermelho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem estava procurando Jesus, quando Este tinha apenas 12 anos, e estava ensinando no Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem estava sentado eu uma jumenta quando apareceu um anjo com a espada desembainhada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem esteve sepultado por 4 dias até que foi ressuscitado por Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem expulsou os mercadores que haviam se alojado no Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem falsamente acusou José de tentar seduzí-la?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fez a primeira tradução completa da Bíblia para o inglês, no ano de 1380?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fez descer uma corda púrpura pela janela quando os israelitas invadiram Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fez saques em Jericó mesmo após Josué ter instruído o povo a não fazê-lo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fez um bezerro de ouro como ídolo para os israelitas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fez uma estátua de ouro de si próprio para ser cultuada e que tinha 90 pés de altura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou 3 dias na barriga de um grande peixe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou cego na estrada de Damasco?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou cego quando dirigia-se para a cidade de Damasco prender alguns cristãos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou com os 2 pés feridos porque quando tinha apenas 5 anos a babá que o carregava o deixou cair?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou enciumada pelo êxito de seu irmão mais novo?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou irritada ao perceber que sua irmã não a ajudava, preferindo ouvir as palavras de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou preso pelos cabelos em um carvalho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou preso pelos cabelos em um cedro do Líbano?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fingiu ser Esaú para obter a bênção da primogenitura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a 1ª pessoa a ver Jesus ressuscitado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a 1ª pessoa que testemunhou a conversão de Saulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a avó de Timóteo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a bisavó de Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a dedicada discípula em Jope que Pedro ressuscitou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a esposa de Boaz?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a garota israelita que casou com o rei persa Assuero?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a irmã de Arão, o Sumo-Sacerdote?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Ismael?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Obede?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Roboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Timóteo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a primeira mulher convertida na Europa?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a primeira pessoa a cometer assassinato na Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a única médium registrada na Bíblia?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a vítima do primeiro assassinato ocorrido na Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi acusado falsamente de tentar seduzir a esposa de Potifar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi ao Egito durante uma longa estiagem de seca e fome?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi apresentado no Templo de Jerusalém como um bebê?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi atirado à cova dos leões?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi batizado por João Batista no rio Nilo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi chamado de cristãos pela 1ª vez na cidade de Antioquia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi colocado em uma cesta no rio Nilo, quando ainda era bebê?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi confundido pelos gregos como sendo o deus Júpiter?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi decapitado pelo rei Herodes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi escondido em uma cesta por sua mãe com o objetivo de protegê-lo de morte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi escravo pessoal de Potifar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi filho de Davi e Bate-Seba?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi filho de Terá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi levado escravo para o Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi neto de Obede?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi nomeado Presidente do reino da Babilônia, através do rei Dario?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o 1º filho de Adão e Eva?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o 2º rei de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o 3º filho de Adão e Eva?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Arão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Raquel e Léia, esposas de Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o bisavô de Ninrode, construtor da cidade de Nínive?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o bisneto de Rute?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o gigante morto por Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o irmão do Sumo-Sacerdote Arão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o marido de Priscila, que auxiliou no ministério de Paulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o marido de Rute?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai da rainha Jezabel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Acabe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Elcana?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Eliseu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Esdras?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Gideão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Ismael?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Jeroboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Jônas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Jônatas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Josué?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Lia e Raquel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Manassés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Mefibosete?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de muitas nações?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Obede?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Roboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Saul?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Zípora?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do profeta Neemias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do profeta Oséias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do profeta Sofonias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do rei babilônico Belsazar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do rei Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do rei Jotão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do rei Manassés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai dos líderes das 12 tribos de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai dos que habitam em tendas e possuem gados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai dos que tocam harpa e flauta?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai que se deitou com suas próprias filhas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o patriarca do Velho Testamento que quase sacrificou seu filho no Monte Moriá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o primeiro homem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o primeiro rei de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o primeiro tradutor da Bíblia para a língua do povo alemão?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o rei da Babilônia que viu uma mão sem corpo escrevendo na parede?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o sogro de Maria, mãe de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o tio-avô de Raquel e Léia, esposas de Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o último dos juízes de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o último rei que reinou o reino do Norte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o último sobrevivente da casa de Saul?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi obrigado a girar um moinho após seu prisionamento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi possuído por Satanás logo após ter recebido das mãos de Jesus um pedaço de pão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi proclamado publicamente rei na cidade de Gilgal?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi professor do apóstolo Paulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi rei e sacerdote ao mesmo tempo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi sepultado por Deus em um vale?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi tocado por um milagre de Jesus e estava sendo ameaçado de morte pelos sumos sacerdotes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi transformada em estátua de sal, ao olhar para trás?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi um dos filhos de Anrão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi um dos filhos do rei Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi vendido pelos seus irmãos ao preço de 20 moedas de prata?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi visitar Maria para dizer-lhe que ela havia sido escolhida para ser a mãe de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi, cujo significado de seu nome é \"pacífico\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram as primeiras pessoas a ouvirem sobre o nascimento de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram os pais de Benjamim?"], ["LIMIT", 1]] Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram os pais de Jeroboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram os pais de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram os pais de José, do Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram os pais de Roboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem formou a primeira orquestra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fugiu de Jerusalém quando Absalão tentou tomar o trono à força?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ganhou uma \"túnica de muitas cores\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem governava o reino de Judá quando Nabucodonosor atacou Jerusalém pela 2ª vez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem gritou \"Crucifica-o!\" após Pôncio Pilatos ter apresentado Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem havia dado a Daniel o nome de Beltesaazar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem interpretou os sonhos do Faraó do Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem irou-se pelo fato de ter sido construído um altar de sacrifícios para o deus Moleque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Isaque abençoou por engano, em lugar de Esaú?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Jesus disse que iria gritar se acaso o povo ficasse em silêncio pela ocasião de sua entrada triunfal em Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Jesus expulsou do Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem jogou Jonas no mar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem levou cativo o reino norte de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem levou seu filho de 12 anos a Jerusalém para celebrar a Páscoa dos judeus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem libertou o apóstolo Pedro da prisão quando ele foi acorrentado entre 2 guardas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem liderou o povo israelita durante sua libertação do cativeiro no Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou açoitar Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou decapitar João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou escrever uma placa para ser pregada na cruz de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou executar à morte o apóstolo Tiago?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou matar os profetas de Baal?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou prender Nabote acusando-o de blasfêmia, apenas para poder tomar posse da vinha que ele tinha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou que todos os bebês hebreus que nascessem fosse mortos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou tomar um jumento emprestado para Sua entrada em Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mantinha o povo israelita mantido em cativeiro, durante os dias de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou 1.000 filisteus com apenas a queixada de um jumento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou o gigante filisteu que tinha 12 dedos nas mãos e 12 dedos nos pés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou o rebelde Absalão que tencionava tomar à força o reino de Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou o rei assírio Senaqueribe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou seu irmão enquanto o beijava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou um egípcio pelo fato deste estar surrando um hebreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou um leão e um urso com as mãos nuas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu aos 110 anos de idade, quando então foi embalsamado e mumificado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu de parto ao nascer-lhe o segundo filho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu na revolta de Absalão na tentativa de tomar o trono do rei Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu no Monte Hor?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu no naufrágio do navio em que Paulo se encontrava quando estava indo para Roma?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu pelo fato de ter trazido fogo estranho à Casa de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem nasceu em Ur dos Caldeus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Nicodemos encontrou à noite e perguntou sobre a necessidade em nascer de novo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem nomeou José como governador de todo o Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem o egípcio morto por Moisés estava surrando?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem o povo preferiu que fosse libertado por Pôncio Pilatos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem o rei Acaz ofereceu como sacrifício ao deus Moloque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem o rei da Babilônia mandou jogar em uma fornalha ardente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ofereceu a Rebeca como forma de agradecimento 1 argola de ouro e 2 pulseiras de ouro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ofereceu ao Rei Assuero 10.000 talentos de prata, com o objetivo em exterminar os judeus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ofereceu um quarto na parte de cima de sua casa quando Eliseu estava avisitando?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou a colocação de guardas para guardar o sepulcro de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou a prisão de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou que Daniel fosse atirado à cova dos leões?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou que Jesus fosse crucificado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou que qualquer pessoa que visse Jesus deveria relatar onde ele se encontrava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou que todos os filhos do sexo masculino que nascessem fossem mortos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem orientou Naamã para se molhar no rio Jordão para se curar da lepra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem orou por 7 dias para que seu filho não morresse?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem passou 40 dias no Monte Sinai com Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem passou a noite lutando com Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a cabeça de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a Dalila que ela conseguisse de Sansão o segredo de sua força?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a Deus que lhe desse sabedoria?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a Deus que não destruísse Sodoma?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a José que interpretasse seus sonhos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a Roboão que abaixasse os impostos, após a morte do rei Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu ao rei Davi para que escolhesse Salomão a lhe suceder no trono real?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu aos espias que sua família fosse poupada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu um período de teste de 10 dias para provar que a alimentação da mesa do rei era impura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem perdeu a força quando teve seu cabelo cortado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem perdeu a posição de rainha pelo fato de ter-se recusado a aparecer diante de um banco de bêbados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem perdeu a vida por ter tocado na arca de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem perguntou a Pedro 3 vezes se ele amava a Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem permitiu que Mefibosete, com apenas 5 anos de idade, o deixasse cair, prejudicando com isso seus 2 pés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem persuadiu a multidão a pedir a Crucificação de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem possuiu o corpo de Judas Iscariotes após o mesmo ter recebido diretamente de Jesus um pedaço de pão na Última Ceia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem precisou ser educado no serviço do rei durante 3 anos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem preferiu ouvir as palavras de Jesus, ao invés de ajudar sua irmã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pregou arrependimento aos cidadãos de Nínive durante 40 dias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem procurava matar Saulo após ter-se convertido para o cristianismo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem profetizou de que os assírios não conseguiriam tomar Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pronunciou no Monte Gerizim as bênçãos dadas a Israel devido à sua obediência?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem provocou a morte de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem queimou as plantações dos filisteus amarrando tochas nas caudas de raposas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem questionou Davi sobre seus pecados contra Bate-Seba e Urias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Raabe escondeu na cidade de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem recebeu do Faraó um anel pelo fato de haver interpretado os sonhos do Faraó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem recebeu do rei Nabucodonosor o cargo de Governador da Babilônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem recebeu um beijo de traição?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem reclamou para o Senhor que era pesado de boca e pesado de língua?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem reconstruiu Babilônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem refugiou-se em um monte, após terem deixado Raabe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem reinava na cidade de Astarote, conhecida por haver muitos gigantes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem reinava na Judéia quando José, Maria e Jesus retornaram para a Palestina?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem resmungou pelo fato dos rebeldes terem sido destruídos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem retirou a pedra do túmulo de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem salvou a vida do profeta Jeremias, que havia sido atirado em uma cisterna para morrer na lama?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem salvou Balaão de ser morto por um anjo que estava com a espada desembainhada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem salvou Ló e sua família de serem destruídos juntamente com a cidade de Sodoma?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem são bem-aventurados, pelo fato de serem consolados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem são bem-aventurados, pelo fato de serem fartos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem são bem-aventurados, pelo fato do reino dos céus serem deles?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem se postou perante os israelitas e os provocou durante 40 dias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem se tornou rei quando tinha 7 anos e reinou durante 40 anos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem sepultou Moisés em um vale?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem serão bem-aventurados, pelo fato de herdarem a terra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem subiu aos Céus em uma carruagem de fogo"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem subiu em cima de uma ávore para ver Jesus quando Ele estivesse passando?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem substituiu o apóstolo Judas após sua morte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem sucedeu Salomão no trono real após sua morte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem sugeriu que Rebeca ficasse com seus parentes\n1,por mais 10 dias antes de partir para se casar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem também tinha o nome de Beltessazar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem tentou José a pecar quando ele era um escravo de Potifar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem tentou várias vezes matar a Davi com uma lança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve como punição a morte de seu filho pelo fato de ter cometido adultério?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve como punição a morte de seu filho pelo fato de ter planejado um assassinato?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve o privilégio de comer uma refeição preparada por um anjo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve seu trono restituído com a morte de Absalão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve sua visão restaurada na estrada próximo à cidade de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve um sonho sobre o sol, a lua e as estrelas se curvando para ele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem tinha um burro que falou e viu o anjo do Senhor?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem trouxe muita amargura de espírito para Isaque e Rebeca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem vendeu seu direito de primogenitura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem visitou uma prostituta quando chegou à cidade de Gaza?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem, ao ter entrado em casa após ter regressado da consulta ao profeta Aías, teve seu filho morto?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem, após ter ouvido a mensagem de advertência de Jonas, vestiu-se com panos de saco?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem, na mesa de um homem rico, quis comer apenas migalhas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem, para se proteger, fingiu ser louco?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Raquel era esposa de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Raquel morreu de parto ao nascer-lhe:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Raquel, esposa de Jacó, morreu ao dar a luz:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Rebeca ajudou o filho a praticar:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Rebeca teve os filhos gêmeos Esaú e Jacó com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Roboão era o filho de Salomão que seria o sucessor no trono real, porém quem assumiu o trono?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Rute abandonou a sua família para acompanhar:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Rute e Orfa receberam um beijo de tristeza de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Salomão, rei de Israel, praticou comércio marítimo com o reino:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sansão apaixonou-se por quem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sansão queimou as plantações dos filisteus ao amarrar tochas nas caudas de qual animal?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sansão visitou uma prostituta quando estava viajando pela cidade de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Saul foi o:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Saul recebeu um beijo de coroação de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Se um boi fosse roubado por alguém, quantos bois o ladrão teria de repôr ao seu proprietário?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sebá foi o segundo rebelde a se revoltar contra o governo do rei:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Segundo a religião dos filisteus, qual deus era o filho de Dago, deus da agricultura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Segundo a religião dos filisteus, qual deus era o pai de Baal?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Segundo o que Sansão disse a Dalila, para ele perder sua força ele deveria ser amarrado por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sem usar qualquer espécie de arma ou ferramenta, o que Davi matou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sete, filho de Adão e Eva, nasceu:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Simão de Cerene ficou conhecido como:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sobre o propiciatório da Arca da Aliança haviam 2:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sobre quantas tribos de Israel Salomão reinou durante 40 anos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sobre que animal cavalgou Rebeca quando foi casar-se com Isaque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Tabita morava na cidade de Jope, e também era conhecida por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Tiago foi decapitado à espada por ordem de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Tiago foi o primeiro apóstolo a:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Um dos filhos de Joquebede foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Uma das pragas que acometeram o Egito foi que as águas do rio Nilo se transformaram em:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Uma vez que Daniel não queria contaminar-se com a alimentação impura da mesa do rei, qual era a alimentação de Daniel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Uzá perdeu a vida pelo fato de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Vasti perdeu a condição de rainha pelo fato de ter-se recusado a aparecer diante de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Vinde a Jesus, todos aqueles que estiverem de que forma, para que possam ser aliviados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Wycliffe fez a primeira tradução completa da Bíblia no ano de 1380 para qual idioma?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Zaqueu subiu em uma árvore para poder enxergar melhor a:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Zebedeu foi pai de quais discípulos de Jesus?"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "quizzes_questions" Quizzes::Level Load (0.2ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "10 anos após o reino de Israel ter sido capturado, qual nação tomou as cidades fortificadas de Judá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "2 dias antes da celebração da Páscoa, na casa de quem Jesus jantou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "2 dias antes da celebração da Páscoa, Simão, o leproso, ofereceu a Jesus um:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "42 mil pessoas perderam a sua vida por não saberem pronunciar qual palavra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "5.000 pessoas foram alimentadas por Jesus através do milagre da multiplicação de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A bênção da primogenitura de Jacó deveria ser dada a:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A bênçao da primogenitura era para ser dada ao:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A cesta onde Moisés foi depositado foi coberto por betume, para evitar que esta:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A cesta onde Moisés foi depositado foi coberto por betume, para fazer com que:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A cidade de Jerusalém foi atacada 3 vezes pelos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A escuridão que se abateu devido à Crucificação de Jesus ocorreu:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A esposa de quem tentou cometer adultério com José?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A estrada de Jerusalém para Jericó foi utilizada por Jesus na parábola:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A família de quem foi salva de Sodoma, antes que a mesma tivesse sido destruída por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A família de quem o Faraó disse que fosse acomodada na cidade do Gósen?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A filha de Herodias dançou para:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A grande maioria das porções do Antigo Testamento foi escrita em:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A imagem do que apareceu nos sonhos do rei Nabucodonosor?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A mãe de Receba sugeriu que ela ficasse com seus parentes por mais 10 dias antes de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "À medida que o terceiro ataque de Nabucodonosor sobre Jerusalém continuava, o que ocorria dentro da cidade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A pedido do rei Jeroboão, quem precisou disfarçar-se quando foi procurar o profeta Aías?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A qual partido religioso pertencia Nicodemos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A qual povo Deus proveu o maná?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A qual profeta uma jumenta comprimiu o pé contra o muro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A qual rei o profeta Aías deu a mensagem de que todos os homens da casa real seriam mortos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quantos discípulos Jesus instruiu para que o acompanhassem em oração no Jardim do Getsêmani?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A que animal é comparado Satanás?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A que horas do dia Jesus foi levado ao sumo sacerdote e aos anciãos e foi considerado culpado de blasfêmia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A que rei foram trazidos bugios e pavões?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Abraão deixou todos os seus bens ao morrer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Absalão deu beijos políticos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Amnon, filho de Davi, estuprou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem as esposas hetéias de Esaú trouxeram muita amargura de espírito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Deus acrescentou mais 15 anos de vida, quando esta pessoa contraiu uma doença fatal?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem deveria ser levado uma pessoa que possuísse manchas na pele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Elias desafiou no Monte Carmelo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Eliseu ajudou, enchendo várias vasilhas de azeite?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem foi oferecido, por acidente, um caldo venenoso?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Hamã ofereceu 10.000 talentos de prata, com o objetivo de exterminar os judeus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Jacó deu um beijo enganoso?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Jacó fingiu ser?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Jesus disse da necessidade em nascer de novo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Jesus pediu que fossem buscar um jumento emprestado para entrar em Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Jesus perguntou 3 vezes se esta pessoa O amava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Joabe matou para acabar com a rebelião contra o reino de Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem João Batista estava se dirigindo quando disse a frase: \"Raça de víboras, quem vos ensinou a fugir da ira vindoura?\""], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem José disse a frase: \"Vós sois espias\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Labão enganou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Maria, mãe de Jesus, visitou quando ela descobriu que estava grávida?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Noemi deu um beijo de tristeza?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o anjo Gabriel avisou que Maria foi escolhida para ser a mãe de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o Faraó nomeou como governador de todo o Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o povo pediu que libertassem a Barrabás do que a Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o profeta Eliseu orientou lavar-se 7 vezes no rio Jordão para curar-se da lepra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o rei Davi devolveu todas as propriedades pessoais de Saul?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o rei Davi, do teto de sua casa, viu banhando-se?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o rei Ezequias mostrou tolamente os tesouros do Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o rei Manassés queimou em sacrifício?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o servo de Abraão deu como agradecimento 1 argola de ouro e 2 pulseiras de ouro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem os príncipes filisteus ofereceram 1.100 moedas de prata de cada um deles?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem os príncipes filisteus pediram que conseguisse descobrir o segredo da força de Sansão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem os Reis Magos estavam procurando como o menino \"Rei dos Judeus\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem os soldados egípcios estavam perseguindo quando o Mar Vermelho dividiu-se em dois?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Rebeca ajudou a praticar uma fraude?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Rute abandonou para poder acompanhar a sogra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Samuel deu um beijo de coroação?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Sansão pediu uma filha dos filisteus, quando este foi à cidade de Timnate?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Satanás levou ao pináculo do Templo e o tentou para saltar dali?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A rainha Jezabel foi casada com o rei:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A sogra de Pedro foi curada por Jesus na cidade de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A unção e o beijo que eram dados eram sinais de que:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A vara que brotou pertencia a:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Abel e Caim tiveram mais quantos irmãos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Abraão também foi conhecido com o:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Abraão teve filhos com quantas mulheres?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Absalão era celebrado devido à:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Absalão matou Amnom pelo fato deste ter estuprado Tamar. Qual era o grau de parentesco entre Amnom e Absalão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Absalão tentou tomar à força o reino de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Adão e Eva moravam em qual jardim?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Agar era de Sara, esposa de Abraão:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Aitofel, influente conselheiro do rei Davi, desertou para o lado de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além da safra de centeio, qual outra safra dos egípcios sobreviveu quando Deus enviou as pedras de fogo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além da safra de cevada, qual outra safra dos egípcios foi destruída em decorrência da praga das pedras de fogo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além da safra de linho, qual outra safra dos egípcios foi destruída em decorrência da praga das pedras de fogo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além da safra de trigo, qual outra safra dos egípcios sobreviveu quando Deus enviou as pedras de fogo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Daniel, quantas pessoas mais foram nomeadas Presidentes do reino da Babilônia pelo rei Dario?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de incenso, quais os outros presentes dados ao menino Jesus pelos Reis Magos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Jacó do Egito, quem mais foi embalsamado de acordo com a tradição egípcia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Jambres, como era o nome do outro mago do Faraó que conseguiu imitar 2 pragas enviadas por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Janes, como era o nome do outro mago do Faraó que conseguiu imitar 2 pragas enviadas por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Jesus, quantas pessoas mais foram crucificadas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de José do Egito, quem mais foi embalsamado de acordo com a tradição egípcia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Orfa, a quem mais Noemi deu um beijo de tristeza?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Pedro, quem mais estava pescando quando ambos foram chamados por Jesus para serem Seus discípulos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de profeta, Natã também foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de rei, Melquisedeque também foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Rute, a quem mais Noemi deu um beijo de tristeza?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de sacerdote, Melquisedeque também foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de seu filho Roboão, quem mais cultuava ídolos na casa de Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Sodoma, qual foi a outra cidade que também foi destruída por Deus através de fogo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além do sumo sacerdote, quem mais presenciou Jesus ter sido culpado por blasfêmia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além dos 120 Presidentes nomeados pelo rei Dario, que cargos também foram nomeados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além dos 3 Presidentes nomeados pelo rei Dario, que outros cargos foram nomeados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além dos anciãos, quem mais presenciou Jesus ter sido culpado por blasfêmia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além dos escribas, quem mais Herodes levou consigo a fim de descobrir onde Cristo iria nascer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além dos sacerdotes, quem mais Herodes levou consigo a fim de descobrir onde Cristo iria nascer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Amnom, filho de Davi, estuprou a Tamar. Qual era o grau de parentesco entre eles?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Amnon e Sefatias foram filhos do rei:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ana emprestou seu filho a:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Anake foi o pai de uma raça de gigantes conhecida como os:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "André, apóstolo de Jesus, tinha um irmão pescador que também aceitou o chamado de Jesus. Seu nome era:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Anrão teve como filhos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes da Páscoa dos judeus, por que os judeus estavam saindo do país e indo para Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de casar-se com o rei Assuero, Ester foi criada pelo seu primo:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de desertar para o lado de Absalão, a quem o influente Aitofel servia como conselheiro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de Paulo ir da cidade de Filipos à cidade de Trôade, qual festividade foi celebrada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de ser curado de sua cegueira, o que Bartimeu estava fazendo na estrada próximo a Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de tentar tirar um argueiro do olho ne nosso irmão, o que devemos tirar de nosso próprio olho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de ungir os pés de Jesus, o que a mulher pecadora fez com os seus pés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes do povo de Israel gritar para que os muros da cidade de Jericó caíssem, qual instrumento eles tocaram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Anualmente, Pôncio Pilatos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ao final dos 10 dias que durou o perído de testes da alimentação de Daniel e seus amigos, como eles estavam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ao receber a visão de um lençol cheio de animais, o que Deus disse a Pedro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ao ver Jesus ser levado preso à presença de Pôncio Pilatos, como Judas se sentiu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Aonde a rainha de Sabá foi visitar o rei Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Aos cidadãos de Israel Absalão deu:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Apesar de Elias ter sido um profeta de Deus, quem ainda assim tentou matá-lo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Apesar de ter sido ressuscitado por Jesus, quem estava pretendendo matar Lázaro novamente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a água virar sangue, como os egípcios conseguiram água fresca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a Arca da Aliança ter sido colocada no Templo de Jerusalém, o mesmo encheu-se de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a destruição dos rebeldes, como o povo israelita reagiu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a divisão do reino, em qual cidade Jeroboão, Rei das tribos do norte, fez sua morada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a interpretação dos seus sonhos, o rei Nabucodonosor deu a Daniel qual cargo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a luta com Deus, Jacó passou a se chamar:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a luta com Deus, o que o anjo deu a Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a morte de Herodes, para onde José levou Maria e Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a morte de quem o rei Davi finalmente teve seu trono restituído?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a ressureição de Jesus, durante 40 dias ele:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a ressurreição de Jesus, quem foi subornado para dizer que o seu corpo havia sido levado embora?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a ressurreição de Jesus, quem subornou os guardas para dizer que o Seu corpo havia sido levado embora?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Absalão, quem foi o próximo rebelde a se revoltar contra o governo do rei Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Amnom, filho de Davi, ter fingido estar doente, o que aconteceu a Tamar ao visitá-lo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após deixar Raabe, onde os espias enviados por Josué se refugiaram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Deus ter descido ao Templo de Jerusalém, o que Salomão fez ao povo que estava presente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Eliseu ter morrido e sepultado, o que aconteceu ao morto que foi jogado em seu túmulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Êutico ter morrido devido à queda de uma janela ao ter adormecido, o que Paulo fêz com ele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Jael ter acolhido seu inimigo, o que ela fez a ele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Jesus ter montado no jumento, o que os discípulos colocaram à Sua frente na estrada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Jesus ter ressucitado, durante quanto tempo Ele apresentou-se vivo às pessoas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Noé ter entrado na arca, quanto tempo ainda levou para começar a chover?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após o final do Dilúvio, quanto tempo ainda demorou para a arca de Noé finalmente encostar em terra seca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após o rei Davi ter jejuado e orado por 7 dias pela vida do seu filho, o que aconteceu a este?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após o retorno do cativeiro da Babilônia, os idosos do povo judeu choraram após terem visto a reconstrução:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após o Sinédrio ter considerado Jesus culpado por blasfêmia, para onde o levaram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após os filisteus terem aprisionado Sansão, o que obrigaram-no a fazer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Pedro ter sido libertado da prisão por um anjo, Pedro foi para a casa de Maria. Ela era de João Marco:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Pedro ter sido libertado da prisão por um anjo, Pedro foi para a casa de Maria:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter arrancado as portas de entrada da cidade de Gaza, para onde Sansão as levou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter brotado, a vara de Arão produziu:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter conversado com Jesus, o que Pôncio Pilatos quis fazer com Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter matado a Amnom, para qual cidade Absalão fugiu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter passado pela Macedônia e ido à Grécia, qual era o próximo destino que Paulo planejava ir?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter passado pela Macedônia, qual apóstolo ficou 3 meses na Grécia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter passado pela Macedônia, qual foi o próximo destino de Paulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter sido cercado pelo exército babilônico pela 3ª vez, o que o rei Zedequias tentou fazer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter sido construída, que ordens o rei Nabucodonosor deu ao seu povo com relação à estátua?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter sido curado da cegueira, qual foi o novo nome de Saulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter sido nomeado governador do Egito, José possuia um cargo de alto-escalão, apenas abaixo do:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter soltado a pomba pela 3ª vez e ela não ter retornado à arca, o que Noé concluiu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter traído Jesus por dinheiro e ter-se arrependido, a quem Judas tentou devolver o dinheiro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter traído Jesus, Judas Iscariotes arrependeu-se e suicidou-se:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter vestido os panos de saco, o rei Nínive sentou sobre:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter visitado a Macedônia e a Grécia, Paulo desejava ir para a Síria. Qual motivo levou Paulo a retornar à Macedônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após terem cruzado o rio Jordão, em que local os israelitas pararam pela 1ª vez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após terem espancado Jesus, o que os soldados romanos fizeram com a cana que haviam colocado em Suas mãos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após terem visitado o menino Jesus, como eles foram alertados para que não voltassem a Herodes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após terem visitado o menino Jesus, quem foi advertido para que não fossem novamente a Herodes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Arão, chefe de uma das tribos de Israel, era o líder de qual tribo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "As cinzas do forno foram utilizadas por Moisés e Arão para enviar contra os egípcios a praga dos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "As doze tribos de Israel nasceram através do casamento da linhagem de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "As portas de qual cidade Sansão arrancou e levou para o cume de um monte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "As roupas confeccionadas com pêlo de camelo foram usadas por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Assim que Moisés desceu do Monte Sinai pela 1ª vez e viu que o povo estava adorando um ídolo, o que Moisés fez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Atalia tentou destruir o rei Jeoás. Qual era o grau de parentesco entre eles?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Através de uma estrela, os Reis Magos foram levados até:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Baal era um deus cultuado pelo povo da terra de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Balaão estava sentado em uma jumenta quando lhe apareceu:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Balaão tinha um burro que chegou a falar após ter visto:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Baraque, comandante de Israel, disse que só iria à batalha se fosse acompanhado por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Bate-Seba foi casada com o oficial:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Bate-Seba pediu ao rei Davi para que escolhesse qual filho para lhe suceder no trono real?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Betuel foi o pai de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Cafarnaum era a cidade natal dos discípulos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Cão, Sem e Jafé são filhos de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Certa noite, em uma caverna, Jacó lutou contra:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Certa vez, o ferro de um machado caiu acidentalmente em um lago. Quem orou que fez com que o ferro voltasse à tona?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com o que a cesta onde Moisés foi depositado era coberto, para que a esta não afundasse?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com o que Maria envolveu o menino Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com o que os soldados romanos bateram na cabeça de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com o que Sansão matou 1.000 filisteus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com o seu exército, Nabucodonosor derrubou os muros de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com qual deus grego Barnabé foi confundido, enquanto estava com Paulo na cidade de Listra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com qual deus grego Paulo foi confundido quanto encontrava-se na cidade de Listra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com qual idade Jeoás passou a reinar sobre a nação israelita?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com quantos dias de vida Jesus foi circuncidado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com quantos dias deveria ser circuncidado um menino recém nascido?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com que espécie de madeira foi construída a arca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com que material Noé revestiu a arca, tanto internamente quanto externamente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com quem a rainha Vasti era casada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com quem Zípora e Jetro tinham um grau de parentesco em comum?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com relação a Jesus, ao invés de quebrar as Suas pernas, o que os soldados romanos fizeram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com relação à rebelião de Corá, Datã e Abirão, que fez com que o chão os engolisse?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como as árvores utilizadas na construção do Templo de Salomão foram transportadas do Líbano para a Palestina?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como Bate-Seba respondeu à notícia de que seu marido Urias havia morrido em batalha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como Deus lidou com a rebelião de Corá, Datã e Abirão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como é conhecido o dia de descanso dos judeus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como era o nome da esposa de Áquila, que auxiliou no ministério de Paulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como era o nome da esposa do rei Acazias, que desejava matar a Elias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como Israel comemorou a passagem pelo Mar Vermelho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como João Batista morreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como o rei Davi foi punido pelo fato de ter cometido adultério e assassinato?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como o rei Davi respondeu às acusações do profeta Namã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como o rei Nabucodonosor reagiu após Deus ter dado a Daniel a interpretação correta dos sonhos do rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como os judeus fizeram a dedicação do Templo, quando o processo de reconstrução foi concluído?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como Potifar respondeu à acusação de sua esposa contra José?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como Sansão deveria ser criado por sua mãe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava a esposa de Isaque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava a filha de Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava a irmã de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava a mãe de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o 1º filho de Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o irmão de Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o irmão de Ismael?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o irmão do gigante Golias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o irmão gêmeo de Esaú?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o nome do pai de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o primeiro filho de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o principal deus da agricultura dos filisteus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o sogro de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como terminou a rebelião entre Davi e Absalão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Contra quem Absalão, filho de Davi, vingou o estupro que foi cometido contra Tamar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Cornélio, uma pessoa honrada e temente a Deus, era:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Da família de Moisés, quem era o caçula?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dalila traiu Sansão por causa de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Daniel foi levado cativo para o reino da Babilônia quando a mesma era governada por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das 10 pragas que Deus enviou ao Egito, quantas os magos do Faraó puderam imitar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das alternativas abaixo, qual delas não era uma das regiões da Palestina na época em que Jesus viveu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das alternativas abaixo, qual é o companheiro de Paulo que não o estava aguardando na cidade de Trôade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das alternativas abaixo, quem não foi filho de Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das Montanhas do Líbano foram extraídas cedro e cipreste utilizadas na construção:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das mulheres abaixo, qual delas não teve filhos com Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das mulheres abaixo, qual delas teve flhos com Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das opções abaixo, qual delas não foi utilizada na placa que foi pregada na cruz de Cristo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das vezes que Noé soltou uma pomba para verificar se havia terra seca, em qual delas a pomba trouxe um ramo de oliveira?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Davi apanhou 5 pedras no chão para matar o gigante Golias. Quantas ele usou para matá-lo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Davi foi o:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Davi teve como cunhado:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com os Dez Mandamentos, a quem devemos honrar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 2:10, quando a sabedoria adentra o coração, o que se tornará agradável para sua alma?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 2:11-12, o que uma pessoa de discrição e conhecimento será desviada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 2:7, o que é o Senhor para aqueles que andam em integridade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 2:8, o Senhor guarda o caminho da justiça e faz o que para os devotos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 29:11, o que o tolo sempre perde e o sábio retém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 3:3, o que deverá ser atado ao redor da garganta e escrito nas tábuas do coração?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 30:20, a mulher adúltera come, limpa sua boca e diz o quê?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 30:33, bater o leite produz manteiga, premer o nariz produz sangue e premer a ira produz?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 30:5, Deus é o escudo para aqueles que se refugiam nEle porque todo o Seu trabalho é:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 31:9, para quem você deveria abrir sua boca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De qual madeira era feita a Arca da Aliança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De qual nação Deus matou 185.000 quando estes estavam tentando tomar Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De qual profeta Hilquias era filho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que direção vieram os Reis Magos quando foram ver o menino Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que era feito o propiciatório da Arca da Aliança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que forma foram transportadas as árvores de cedro compradas por Salomão para a construção do Templo de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que forma Jesus morreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que forma Raquel morreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que lado do barco Jesus havia dito para que os discípulos jogassem suas redes, após uma noite inteira sem pescar nada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem era o sepulcro onde Jesus foi colocado depois de crucificado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem eram as mesas que Jesus virou no Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem Husai era amigo, e que fingiu estar apoiando Absalão apenas para ficar informado sobre os planos da rebelião?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem Jesus expulsou 7 demônios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem José, filho de Jacó, interpretou os sonhos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem o rei Acaz queria comprar uma vinha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Debaixo de que árvore Elias se sentou desanimado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Débora foi a babá de quem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Débora, a profetisa, certa vez chegou a liderar:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Débora, a profetisa, também foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dentre as alternativas abaixo, qual deles não é filho de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dentre as alternativas abaixo, qual era a alimentação que João Batista não utilizava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dentre as alternativas abaixo, qual não foi um presente dado ao menino jesus pelos reis Magos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dentre as opções abaixo, qual deles não foi apóstolo de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Depois de passar pela Macedônia, quantos meses Paulo ficou na Grécia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Depois de ter sido vendido pelos seus irmãos, José se tornou escravo em qual país?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Depois que José do Egito interpretou o sonho do Faraó, que presente ele ganhou do Faraó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Depois que um pupilo é completamente treinado, como ele será?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Deus criou o Jardim do Éden que era molhado por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Deus curou o general sírio Naamã de qual enfermidade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Devido ao saque cometido contra a cidade de Jericó, qual foi a punição imposta a Acã e sua família?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Do que a rainha Jezabel acusou Nabote, para com isso poder prender Nabote e tomar a vinha que ele tinha em suas terras?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Do que eram feitas as roupas de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Do que Sansão precisou após ter matado 1.000 homens com apenas uma única queixada de jumento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dorcas era uma mulher bondosa e caridosa que morava na cidade de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dorcas, uma mulher bondosa e caridosa, também era conhecida como:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos 10 homens que sofriam de lepra e que foram curados por Jesus, quantos deles retornaram para agradecer pela cura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos 30.000 trabalhadores que foram designados para construírem o Templo de Jerusalém, quantos trabalhavam no mês?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos amigos de Daniel, quem foi jogado em uma fornalha ardente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos filhos de Adão e Eva, Abel foi o:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos filhos de Adão e Eva, Caim foi o:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos filhos de Adão e Eva, Sete foi o:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos livros da Bíblia abaixo, qual deles não termina com um ponto de interrogação?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos livros da Bíblia abaixo, qual deles tem apenas 1 único capítulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos livros da Bíblia abaixo, qual deles tem mais de 1 capítulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos livros da Bíblia abaixo, qual deles termina com um ponto de interrogação?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos livros da Bíblia abaixos, qual deles não contém a palavra \"Deus\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante 6 dias, quantas voltas por dia o povo de Israel marchava ao redor dos muros da cidade de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante a Última Ceia, a quem Jesus ofereceu um bocado de pão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante a Última Ceia, com que objetivo Jesus ofereceu um bocado de pão a Judas Iscariotes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante a Última Ceia, que gesto Jesus efetuou para sinalizar quem seria o traidor dentre os 12 discípulos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante a Última Ceia, quem ofereceu um bocado de pão a Judas Iscariotes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante a viagem de Paulo a Roma, o que desapareceu durante muitos dias devido à forte tempestade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante o 2º ataque de Nabucodonosor à cidade de Jerusalém, quem não foi levado cativo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante o ministério de Jesus, quem governava a Galiléia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante o reinado de Ezequias no reino de Judá, o que ocorreu com o reino de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante o tempo que ficou cego, o que Paulo não fez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante os 40 dias em que jesus esteve no deserto, o que ele fez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quanto tempo Jacó concordou em trabalhar para seu futuro sogro para poder desposar Raquel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quanto tempo não chovia quando então o profeta Elias orou por chuva?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quanto tempo o rei Jeoás reinou sobre a nação israelita?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quanto tempo o Rei Nabucodonosor achava que era um animal, e agia como tal?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quanto tempo Paulo ficou cego, até ser curado por Ananias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quantos anos Jacó precisou trabalhar para seu futuro sogro para poder desposar Raquel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quantos anos o povo israelita peregrinou pelo Deserto?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante sua última semana de vida, enquanto não estava em Jerusalém Jesus estava na cidade de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ebede-Meleque, que havia salvo o profeta Jeremias de morrer em uma cisterna com lama, era:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Elias mandou matar os profetas de qual deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Elias subiu aos Céus através de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Elias teve o privilégio de comer uma refeição preparada por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Elifaz, uma das pessoas que repreendeu a Jó, era de nacionalidade:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em 1961, foi encontrada em Cesaréia uma inscrição que fazia menção de um prefeito na época de Jesus. Quem foi mencionado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em Caná ocorreu:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em Éfeso, quem se zangou com Paulo e os discípulos e instigou uma revolta contra eles?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em lugar de Isaque, que animal Deus providenciou para Abraão oferecer em sacrifício?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em Malta naufragou o navio onde estava:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual ano de seu reinado Salomão iniciou a construção do Templo de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual árvore ficou preso Absalão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual árvore Zaqueu subiu para poder enxergar melhor Jesus no meio da multidão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual cidade encontrava-se Nabucodonosor quando o rei Zedequias foi levado à sua presença para receber a sentença final?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual cidade Jesus nasceu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual cidade Maria, mãe de Jesus, morava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual cidade Nabucodonosor derrotou o rei Neco e seu exército egípcio?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual cidade os discípulos de Jesus foram chamados cristãos pela 1ª vez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual lugar estranho Jesus falou para Pedro encontrar uma moeda para pagar o imposto do Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual mar André estava pescando quando Jesus o chamou para ser discípulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual mar Pedro estava pescando quando Jesus o chamou para ser discípulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual monte Abraão quase sacrificou seu filho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Elias desafiou os sacerdotes de Baal?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual monte fixou-se a arca de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Jesus chorou sobre Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Josué pronunciou as bênçãos dadas a Israel devido à sua obediência?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Moisés passou 40 dias com Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Moisés recebeu de Deus a missão para tirar o povo de Israel da escravidão do Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Moisés viu um arbusto em chamas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte o rei Saul e seus filhos foram derrotados pelos filisteus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Salomão construiu o Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual província ocorreu o 1º milagre de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual região montanhosa foi feita uma aliança entre Jacó e Labão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual rio Jesus foi batizado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual rio João Batista batizava as pessoas para que se arrependessem e buscassem o perdão de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual rio Moisés foi colocado em uma cesta, quando bebê?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual rio o profeta Eliseu orientou Naamã se molhar 7 vezes para se curar da lepra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em quantas línguas Pôncio Pilatos escreveu na placa que pregou na cruz de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em quantas raposas Sansão amarrou fachos incediadas em suas caudas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que ano a Bíblia foi dividida em capítulos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que ano a Bíblia foi dividida em versículos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que cidade Jesus e seus pais haviam ido para a comemoração da Páscoa dos judeus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que condição física estavam Sadraque, Mesaque e Abede-Nego quando eles saíram da fornalha ardente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que local Jesus foi crucificado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que local Moisés escondeu o egípcio que havia matado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que local Moisés foi sepultado por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que monte Moisés viu a Terra Prometida?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que Monte morreu Arão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que ocasião Jesus amaldiçoou uma figueira?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que orquestra tocava Jaaziel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que resultou a falsa acusação de que José havia tentado seduzir a esposa de Potifar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em resposta aos resmungos do povo israelita pelo fato dos rebeldes terem sido destruídos, o que Deus enviou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Judas fez após os sumos sacerdotes terem recusado a devolução das 30 moedas de prata?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Judas fez depois de trair Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Lázaro, o mendigo, quis comer da mesa do homem rico?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que levou os Reis Magos até o menino Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Melquisedeque foi ao mesmo tempo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Moisés e Arão pediram ao Faraó em relação aos israelitas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Moisés encontrou no Monte Horebe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Moisés foi instruído a fazer pelo fato de estar em solo sagrado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Moisés recebeu de Deus no Monte Sinai?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Moisés viu que estava em chamas, mas que não se consumia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Nabote possuía em suas terras que o rei Acaz queria comprar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Noé construiu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Noé enviou da arca, que ao retornar trouxe um ramo de oliveira em seu bico?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o Faraó deu a José pelo fato de ter interpretado os seus sonhos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o Faraó mandou fazer que fosse feito contra todos os bebês hebreus do sexo masculino que nascessem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei babilônico Belsazar viu na parede de diferente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Davi desejava construir, mas que foi negado por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Ezequias construiu para permitir que a água fosse levada à cidade de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Ezequias tolamente mostrou aos babilônios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Jeroboão pediu à sua esposa que fizesse quando esta fosse encontrar-se com o profeta Aías?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Manassés fez no Templo de Jerusalém quando reinou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Nabucodonosor mandou construir para que todos se prostrassem e adorassem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em sua rebelião, de quem eram os 250 seguidores que morreram consumidos pelo fogo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em sua viagem à Roma, onde naufragou o navio em que Paulo viajava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em toda a Bíblia, além de Jesus quem mais jejuou 40 dias e 40 noites?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em um de seus casamentos, ao casar-se com a filha do Faraó, Salomão fez aliança com o reino:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em uma das ocasiões em que Pedro orava no telhado, que visão ele recebeu de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Enquanto estava na casa de Simão, o leproso, o que uma mulher fez com um vaso de alabastro cheio de bálsamo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Enquanto esteve na cidade de Jope, Pedro esteve hospedado na casa de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Enquanto Sansão estava com uma prostituta, o que o povo da cidade de Gaza estava fazendo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Entre as alternativas abaixo, o que não havia dentro da Arca da Aliança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Entre os filhos de Davi, qual deles não nasceu durante seu reinado em Hebrom?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Entre os irmãos Moisés, Arão e Míriã, qual dentre eles era o mais velho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Esaú vendeu seu direito de filho mais velho em troca de quê?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Esaú, filho de Isaque e Rebeca, era:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ester casou-se com o rei persa:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ester, após ter casado com o rei Assuero, passou a ser a rainha do império:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Foi levado para o cativeiro da Babilônia:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Gamaliel foi professor do apóstolo:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Há quantas promessas na Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Herodes Agripa mandou matar os apóstolos pois sentia que o cristianismo era uma ameaça à sua religião:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Herodes decretou que todos os meninos fossem mortos com idade inferior a:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Herodias pediu a cabeça de quem a Herodes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Imediatamente antes da coroação do rei Salomão, quem pretendia governar o trono real a ser deixado por Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Incluindo Jesus, quantas pessoas jantaram com Ele na última Páscoa?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Incluindo Jesus, quantos homens foram crucificados com Ele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Isabel foi mãe de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Isaque recebe um beijo enganoso de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ismael e seu irmão Isaque nasceram com uma diferença de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Israel era composta por quantas tribos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jabal foi o pai dos que:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jacó tinha um irmão gêmeo, que se chamava:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jacó, irmão gêmeo de Esaú, nasceu segurando:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jedidias era também conhecido por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jemima era esposa de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jericó foi a primeira cidade conquistada pelos israelitas, quando estes eram comandados por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jeroboão governou as tribos de Israel do:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus chamou André para ser discípulo quando este estava:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus chamou Pedro para ser discípulo quando este estava:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus curou 10 homens que sofriam de qual enfermidade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus disse aos cambistas e àqueles que estavam vendendo que sua casa seria chamada de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus disse que após o sal ter perdido o seu gosto, o mesmo passaria a ser:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus disse que não havia vindo para chamar os justos, mas para chamar quem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus e João Batista eram, entre si:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus ensinou de que haveremos de prestar contas no dia do juízo de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus ensinou que deveríamos amar aos nossos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus expulsou os mercadores que haviam no:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus foi batizado por quem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus foi traído por Judas Iscariotes através de um:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus nos diz para não arremessar pérolas aos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus nos ensinou que devemos orar:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jó residia na terra de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jonas pregou arrependimento durante 40 dias aos cidadãos de qual cidade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jônatas matou um gigante filisteu que tinha quantos dedos nas mãos e nos pés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jônatas matou um gigante filisteu, assim como Davi. Qual era o parentesco entre eles?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jônatas teve um filho com o nome de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Joquebede tem como filhos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José foi trabalhar como escravo na casa de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José foi vendido como escravo no Egito. Qual foi o valor pago por ele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José foi vendido como escravo, ao preço de 20 barras de prata, para:\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José teve um sonho onde viu curvando-se para ele:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José teve um sonho, onde viu:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José, filho de Jacó, tornou-se um grande líder da nação:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jubal foi o pai dos que tocam:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Lídia foi a primeira mulher:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ló, sobrinho de Abraão, habitava em qual cidade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Lucas, autor do Livro de Lucas, foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Marcos, autor do Livro de Marcos, foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Maria, mãe de Jesus, e Isabel, mãe de João Batista, eram entre si:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Martinho Lutero foi o primeiro tradutor da Bíblia para a língua:\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Matusalém, o homem mais idoso da Bíblia, teve como neto:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Matusalém, o homem mais velho da Bíblia, morreu antes de seu pai (Enoque). Essa afirmação é:\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Mesaque, Sadraque e Abede-Nego foram jogados em uma fornalha ardente pelo rei da:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Miriã ficou enciumada por qual motivo?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na 1ª vez que Noé soltou uma pomba, o que ela trouxe em seu bico?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na 3ª vez que Noé soltou uma pomba, o que ela trouxe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na 5ª praga enviada por Deus ao Egito, quem foi poupado de uma pestilência muito grave?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na 7ª praga que se abateu sobre os egípcios, além das pedras de fogo Deus enviou também:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na biblioteca da Universidade de Gottingen, Alemanha, existe uma Bíblia que foi escrita em 470 folhas de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na biblioteca da Universidade de Gottingen, Alemanha, existe uma Bíblia que foi escrita em quantas folhas de palmeira?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na casa de quem Jesus teve seus pés ungidos por uma mulher?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na cidade de Jericó, em que local Raabe escondeu os espias enviados por Josué?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na cidade de Nazaré morou:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na entrada triunfal de Jesus em Jerusalém, foram estendidos ramos de:\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época de Moisés, o povo israelita era tido no Egito como um povo:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época de Moisés, quantas pragas ocorreram no Egito pelo fato do Faraó não autorizar a saída do povo hebreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época do povo israelita, Babilônia estava situada às margens do rio:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época em que Jesus viveu, a cidade de Nazaré estava localizada em qual região?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época em que Jesus viveu, a Judéia era governada por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época em que Jesus viveu, em qual província localizava-se a cidade de Caná?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época que Jesus viveu, a estrada que ligava Jerusalém a Jericó era conhecida por haver muitos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na estrada para Emaús, 2 discípulos de Jesus encontraram-se com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na estrada para qual cidade Jesus apareceu para 2 de Seus discípulos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na igreja primitiva, quem deveria ungir os enfermos com óleo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na parábola do Bom Samaritano, na estrada para qual cidade um homem havia sido surrado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na parábola do Filho Pródigo, o que fez o filho pródigo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na parábola do Filho Pródigo, o que o filho pródigo fez ao se arrepender?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na parábola do Filho Pródigo, quantos filhos tinha o homem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na presença de quem Jesus foi culpado de blasfêmia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na região montanhosa de Gileade, Jacó fez uma aliança com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na região montanhosa de Gileade, Labão fez uma aliança com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na semana da criação, em que dia Deus descansou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na visão que Deus deu ao centurião romano Cornélio, o anjo mandou buscar Pedro de qual cidade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na visão que Deus deu ao centurião romano Cornélio, qual discípulo o anjo mandou buscar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nabucodonosor era rei de qual país?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nabucodonosor mandou jogar os amigos de Daniel em uma fornalha ardente pois os mesmos se recusaram a:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nabucodonosor reconstruiu a cidade de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nas bodas de Caná, Jesus operou o 1º milagre, transformando água em:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nas bodas de Caná, quantos jarros de água Jesus transformou em vinho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nas bodas de Caná, quem pediu a Jesus que transformasse a água em vinho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nas bodas de Caná, sua mãe pediu a Jesus que:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nebo era um ídolo adotado pelos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Neustã foi o nome dado à:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ninrode, bisneto de Noé, construiu a cidade de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No 1º ataque de Nabucodonosor à Jerusalém, quem foi ajudar o reino de Judá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No 1º ataque de Nabucodonosor a Jerusalém, quem se tornou servo deste?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No 7º dia, o que Deus criou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No 8º dia de vida, o que deveria ser feito ao bebê do sexo masculino?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No cenáculo, ocorreu uma contenda entre os discípulos de Jesus sobre quem dentre eles era o:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No cenáculo, pelo fato de Jesus estar ciente de que em breve iria sofrer uma traição, o seu espírito estava:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No cenáculo, por que Jesus disse que estava com o espírito perturbado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No cenáculo, qual foi o motivo que gerou uma contenda entre os discípulos de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No decreto baixado por Nabucodonosor, o que aconteceria se alguém não louvasse o Deus de Sadraque, Mesaque e Abede-Nego?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No dia seguinte à sua entrada triunfal em Jerusalém, que espécie de árvore Jesus amaldiçoou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No jantar oferecido por Simão, o leproso, quem mais estava presente neste Jantar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No livro de Josué, Sesai, Aimã e Talmai eram filhos de quem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No Monte das Oliveiras, Jesus chorou pela cidade de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No sonho de José, para onde Deus o instruiu a levar Maria e o menino Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No túmulo de quem um morto foi jogado e reviveu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No vale de Tofete, o povo hebreu oferecia sacrifícios vivos de crianças ao deus:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O 1º filho de Abraão com Sara se chamou:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O altar de Moleque, profanado por Josias através da queima de ossos humanos, situava-se no:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O anjo Gabriel comunicou à Maria que ela:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O apóstolo Paulo foi morto:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O apóstolo Tiago foi morto:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O bezerro de ouro construído por Arão foi confeccionado a partir de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Dilúvio durou quantos dias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O filho do rei Davi morreu pelo fato deste ter:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O gigante Golias foi morto por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Gólgota foi o local onde:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O imperador Nero mandou decapitar o apóstolo:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Mar Morto ficava em qual dos reinos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Mar Vermelho foi aberto e dividido em 2 partes para permitir que o povo hebreu escapasse:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O menino Jesus nasceu em um:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Monte Carmelo ficava na tribo israelita de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Monte Hermom marcava ao norte a fronteira de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O nome de qual Sumo Sacerdote significava \"sumo, altíssimo\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Novo Testamento foi escrito em:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O oficial Urias morto em batalha foi casado com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O povo pediu a Pôncio Pilatos que soltassem Barrabás ao invés de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O profeta Aías foi consultado pelo rei Jeroboão para saber sobre:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O profeta Namã questionou o rei Davi pelo fato deste ter mantido relações sexuais com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O profeta Zacarias foi o pai de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O profeta Zacarias impulsionou o povo judeu para que terminasse a construção:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que a filha do Faraó encontrou preso junto aos juncos do rio Nilo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que a mulher sunamita e seu marido ofereceram a Eliseu quando este os estava visitando?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que a multidão gritou para Pôncio Pilatos após ele ter apresentado Jesus à esta?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Absalão cortava no fim de cada ano?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceria aos animais se por ventura eles tocassem o monte Sinai no 3º dia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Bate-Seba quando seu período de luto por Urias terminou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Eliseu após ter sido oferecido ao mesmo um caldo venenoso por acidente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Êutico após este ter adormecido enquanto ouvia a mensagem de Paulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Êutico após ter caído de uma janela pelo fato de ter adormecido enquanto Paulo pregava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Jesus após os 2 discípulos O terem reconhecido após Sua ressurreição?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Judas Iscariotes imediatamente após ter recebido um pedaço de pão diretamente de Jesus na Última Ceia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Raquel, esposa de Jacó, após ter dado a luz a Benjamim?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu ao Egito pelo fato do Faraó ter negado a saída do povo hebreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu ao rei Davi com a morte de Absalão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu com a mentira de que \"o corpo de Jesus foi roubado pelos discípulos\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu com as rãs, no final da 2ª praga enviada por Deus contra os egípcios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu com os 250 seguidores de Corá, em sua rebelião?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu com Saulo depois de seu encontro com Jesus na estrada para Damasco?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu quando a esposa de Jeroboão entrou em sua casa após ter retornado da consulta ao profeta Aías?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu quando Jesus disse aos discípulos que jogassem suas redes do lado direito do barco?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu quando Jesus morreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Ana fazia todos os anos para seu filho Samuel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Arão fez para o povo israelita enquanto Moisés estava no monte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Arão possuía que havia brotado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Ararat, Sinai e Nebo têm em comum?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que as esposas hetéias de Esaú levaram para Isaque e Rebeca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que cada chefe das tribos de Israel possuía?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que César Augusto decretou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Davi ajuntou em um riacho próximo, antes de sua batalha contra Golias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Deus disse a Moisés para tirar, quando este viu a sarça em chamas que não se consumia pelo fogo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Deus fez aos 185.000 que estavam acampados ao redor da cidade de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Deus fez no 7º dia da criação?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que devemos fazer com aqueles que nos amaldiçoam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que devemos fazer com aqueles que nos maltratam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que devemos nos vestir para nos proteger contra as tentações de Satanás?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que dizia a placa que foi pregada na cruz de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Eliseu fez para transformar o caldo venenoso novamente comestível?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que En-dor era?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que era incomum na sarça em chamas que Moisés viu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Esaú vendeu a Jacó, seu irmão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Esaú vendeu em troca de um ensopado?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que estava dentro da Arca da Aliança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Ezequias, rei de Judá, sabiamente retirou de seu reino?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que foi pregado na cruz acima da cabeça de Jesus Cristo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Golias disse a Davi quando viu o cajado na mão de Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que guiou os reis Magos em sua jornada a partir do oriente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que houve durante as últimas 3 horas em que Jesus esteve crucificado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jacó comprou de seu irmão, Esaú?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jacó tomou de Esaú?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus disse à mulher pecadora, em resposta pelo fato da mesma ter-lhe ungido seus pés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus disse quando Ele apareceu para os discípulos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus disse que as pessoas haviam transformado o Templo de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus disse que havia superado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus ensinou que acontecerá à uma casa ou cidade que estiver dividida?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus ensinou que devemos fazer quando forçados a andar 1 milha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus fez para ensinar os seus discípulos sobre servir ao próximo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus instruiu a seus discípulos a dizerem se alguém se recusasse a emprestar o jumento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus nos diz para não arremessar aos porcos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus nos ensinou se alguém nos pede nossa camisa?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus nos instruiu a fazer quando nos batem na face direita?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus oferecia para aqueles que o seguiam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Joabe fez a seu irmão enquanto o beijava?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jônatas foi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que José disse ao Faraó sobre o significado dos sonhos que este tivera?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que José fez com seus irmãos por 3 dias, quando estes foram comprar grãos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que José ganhou de seu pai que deixou seus irmãos com muito ciúme?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que José, filho de Jaco, interpretou para o Faraó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Josué enviou para a cidade de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o servo de Abraão deu a Rebeca como agradecimento, próximo ao poço?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que ocorreu durante o reinado de Oséias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os apóstolos deveriam fazer se uma casa ou cidade não os recebesse?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os discípulos de Jesus fizeram ao verem Jesus ser levado preso pelos soldados romanos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os filisteus colocaram dentro da Arca da Aliança quando a devolveram aos israelitas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os irmãos de José foram fazer no Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os israelitas fizeram a Jericó após a queda do muro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os israelitas fizeram para derrubar as muralhas de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os outros 2 Presidentes nomeados pelo rei Dario sentiam em relação ao cargo de Daniel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os pastores fizeram logo após terem recebido a notícia do nascimento do menino Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os soldados romanos disseram a Jesus quando colocaram a coroa de espinhos sobre Sua cabeça?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os soldados romanos faziam para apressar a morte das pessoas crucificadas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os soldados romanos fizeram com Jesus enquanto batiam-No com a cana em sua cabeça?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Pedro encontrou dentro da boca de um peixe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Pedro, Tiago e João fizeram como resposta após Jesus tê-los instruídos para vigiarem no Jardim do Getsêmani?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que pertencia a Esaú que lhe foi tomado por seu irmão Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Pôncio Pilatos disse quando trouxe Jesus do Pretório e O apresetou à multidão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Pôncio Pilatos fez enquanto disse: \"Sou inocente do sangue deste homem\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Raabe fez descer quando os israelitas invadiram a cidade de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Raabe pediu aos espias em troca de sua colaboração em escondê-los?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que representavam os 5 camundongos de ouro que foram colocados pelos filisteus dentro da Arca da Aliança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Rubens, o filho mais velho de Jacó, perdeu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Salomão construiu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Sansão amarrou nas caudas de 300 raposas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Sansão e seus pais encontraram quando estavam a caminho de Timnate?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Sansão fez ao leão com o qual lutou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Sansão fez com a queixada de um jumento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que se apossou de Sansão quando este encontrou-se com um leão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que siginica o nome de Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que significavam os sonhos do Faraó do Egito, interpretados por José?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que um jovem chamado Êutico estava fazendo enquanto Paulo estava dando uma mensagem em Trôade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Acabe foi morto pelo fato de ter sido alvo ao acaso de uma:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Davi viajou pelo Monte das Oliveiras pois estava fugindo:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Ezequias construiu um túnel para abastecer de água a cidade de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Herodes Agripa I mandou decapitar à espada o apóstolo:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Nabucodonosor mandou chamar magos e adivinhos para decifrar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Nabucodonosor viu uma grande estátua quando:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei persa Dario jogou Daniel em uma cova infestada de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O sacerdote Zadoque ungiu qual rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Templo de Jerusalém encheu-se de uma nuvem após ter sido colocada:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Abraão nasceu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde aconteceu o primeiro milagre de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde estava a força de Sansão:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Êutico estava sentado e caiu após ter adormecido enquanto ouvia a mensagem de Paulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Felipe encontrou o eunuco etíope ao qual batizou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde foi celebrada pela 1ª vez a Páscoa?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jesus foi preso?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jesus foi rejeitado pela 1ª fez, quando iniciou suas orações?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jesus pediu aos seus discípulos que tomassem um jumento emprestado para entrar em Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jesus se encontrava quando foi preso pelos soldados romanos, a mando dos líderes religiosos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jesus se encontrava quando Satanás o tentou a saltar, informando que os anjos de Deus o segurariam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jonas passou 3 dias e 3 noites?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Moisés recebeu as tábuas dos 10 Mandamentos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde o anjo Gabriel comunicou a Zacarias de que ele teria um filho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde o profeta Jeremias foi atirado para morrer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde o rei de Babilônia mandou jogar os amigos de Daniel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde os discípulos foram chamados de cristãos pela primeira vez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde os Reis Magos estavam procurando o bebê que nasceu \"Rei dos Judeus\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Paulo foi proclamado publicamente Rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Pedro estava quando ele cortou a orelha de um homem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Sansão construiu o Templo de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os 10 Mandamentos dados por Deus a Moisés foram escritos em:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os anciãos da igreja primitiva deviam ungir os enfermos com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os guardas que estavam guardando o sepulcro de Jesus receberam uma grande quantia de dinheiro para dizer:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os israelitas, em sua peregrinação pelo deserto, foi provido por Deus com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os livros de Mateus, Marcos, Lucas e João também são conhecidos como:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os muros de qual cidade caíram quando os israelitas gritaram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os piolhos que Deus havia enviado aos egípcios eram feitos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os Presidentes invejosos enganaram ao rei Dario, fazendo-o assinar um decreto que duraria:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os primeiros filhos de Jó foram mortos através de um:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os raptores de Jesus vendaram-no e disseram para Ele fazer o quê?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para a construção do Templo de Deus em Jerusalém, o que Salomão contratou de Hirão, rei de Tiro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para a construção do Templo de Jerusalém, qual rei forneceu a Salomão árvores de cedro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para ajudar uma viúva pobre, Eliseu pediu à ela tomasse emprestadas várias vasilhas, que foram enchidas com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para capturar Elias, o rei Acazias enviou:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para causar os tumores na 6ª praga a ser enviada contra os egípcios, Moisés e Arão foram instruídos por Deus a usar:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para não ir à Nínive dar a advertência final, Jonas se escondeu em um:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para obrigar o povo a prestar obediência à sua autoridade, o rei Nabucodonosor construiu:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para onde Abraão enviou Eliezer em busca de uma esposa para Isaque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para onde Jonas foi após ter sido vomitado pelo grande peixe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para onde o profeta Isaías predisse que os tesouros do Templo seriam levados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para onde os porcos que receberam a legião de demônios expulsos por Jesus se atiraram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para onde Sansão foi levado após ter sido cegado pelos filisteus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para poder enxergar melhor a jesus no meio da multidão, Zaqueu subiu em uma:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para proteger Moisés, onde sua mãe o escondeu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para provocar a profanação do altar eregido ao deus Moleque, o que Josias queimou neste altar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para qual cidade Josué enviou espias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para qual cidade os reis Magos foram conduzidos por uma estrela?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para qual país Daniel foi levado como cativo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para qual país foi Abraão durante a fome?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para que região Moisés fugiu após ter matado o egípcio?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para se apresentar a Isaque, seu futuro marido, Rebeca foi até:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para ter certeza de que o gigante Golias estava morto, o que Davi fez após ter jogado a pedra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para tirar a força de Sansão, Dalila:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Paulo ficou cego enquanto caminhava em qual estrada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Paulo foi curado da sua cegueira por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pedro, apóstolo de Jesus, tinha um irmão pescador que também aceitou o chamado do Mestre. Seu nome era:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pelo fato de Mefibosete ser o último descendente da casa de Saul, o que o rei Davi lhe devolveu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pelo fato de ter olhado para trás desobedecendo à instrução divina enquanto fugiam, em que a esposa de Ló foi transformada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pelo que cada árvore é conhecida?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pôncio Pilatos foi governador de qual região, na época que Jesus viveu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pôncio Pilatos ordenou que Jesus fosse:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por causa do decreto de César Augusto, José e Maria precisaram mudar-se para:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por causa do pecado de Acã, quantos homens de Josué morreram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por ciúmes e ódio, os irmãos de José o venderam à uma caravana como:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por dinheiro, Judas Iscariotes traiu a:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por onde os israelitas vagaram durante 40 anos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por qual Monte o rei Davi passou em sua fuga de seu filho rebelde?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por qual motivo Daniel não se alimentava com os alimentos que eram oferecidos na mesa do rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto anos aproximadamente o povo israelita foi escravo do povo egípcio?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto anos Moisés viveu em Midiã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto Moisés foi escondido por sua mãe, enquanto era bebê?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo Absalão refugiou-se na cidade de Gesur, pelo fato de ter matado a Amnom?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo durou o período de teste da alimentação de Daniel e seus amigos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo Jonas ficou preso dentro da barriga de um grande peixe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo o gigante Golias provocou os israelitas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo o povo de Nínive recebeu as advertências de Jonas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo o rei Davi jejuou e orou para que Deus mantivesse seu filho vivo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo os espias enviados por Josué ficaram escondidos em um monte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quantos anos Daniel e seus amigos deviam ser educados no serviço do rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quantos anos José ficou na prisão antes do Faraó chamá-lo para interpretar seus sonhos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quantos dias durou a praga enviada por Deus contra os egícpios que transformava a água em sangue?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que Daniel foi atirado na cova dos leões?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que Jesus nasceu em um estábulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que José e Maria precisaram viajar para Belém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que Nadabe e Abiú morreram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que o faraó mandou matar todos os bebês hebreus do sexo masculino que nascessem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que os irmãos de José decidiram vendê-lo como escravo por 20 moedas de prata?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que os irmãos de José o venderam como escravo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que Pôncio Pilatos ordenou a colocação de guardas no sepulcro de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que Rubens, o filho mais velho de Jacó, perdeu a sua primogenitura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quem um homem cego não pode ser guiado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por várias vezes, quem sofreu várias tentativas de assassinato por parte de Saul, rei de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque Deus pediu a Moisés para que tirasse as sandálias quando este viu a sarça ardente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque Deus santificou e descansou no 7º dia da semana da criação?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque dos 30.000 trabalhadores designados para construítem o Templo de Jerusalém, apenas 10.000 trabalhavam no mês?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque foi preciso que um anjo retirasse a pedra do sepulcro de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porquê Hamã ofereceu 10.000 talentos de prata ao Rei Assuero?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque Nabote não queria vender ao rei Acaz a vinha que havia em suas terras?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque Saul desejava matar a Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque um homem morte foi atirado no túmulo de Eliseu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Próximo a qual cidade o cego Bartimeu teve sua visão restabelecida por Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais discípulos receberam a orientação para que orassem junto com Jesus no Jardim do Getsêmani?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais eram os nomes dos magos do Faraó que conseguiram imitar 2 pragas enviadas por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais foram as primeiras palavras do anjo para os pastores que receberam as Boas Novas do nascimento do menino Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais foram as safras da cultura egípcia que foram destruídas, pelo fato de Deus ter enviado as pedras de fogo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais foram as safras da cultura egípcia que sobreviveram às pedras de fogo enviadas por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais personagens bíblicos jejuaram 40 dias e 40 noites?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual a mulher que acolheu o seu inimigo e depois o matou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual animal doméstico não é mencionado na Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual animal feriu Paulo, porém seu veneno não fez efeito algum?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual animal Satanás utilizou para enganar a Eva no Jardim do Éden?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual anjo disse a Zacarias que ele teria um filho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo converteu Lídia, a 1ª mulher convertida na Europa?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo de Jesus encontrou um eunuco etíope e o batizou na estrada para Gaza?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo de Jesus estava preso entre 2 guardas a prisão, e foi libertado por um anjo enviado por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo de Jesus tinha como profissão coletor de impostos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo escreveu a Epístola aos Romanos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo foi confundido pelos gregos como sendo o deus Mercúrio?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo foi morto decapitado:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo queria prosseguir sua viagem para a Síria, mas que foi obrigado à retornar à Macedônia pois havia uma cilada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo ressuscitou um jovem chamado Êutico, que morreu após ter caído de uma janela ao adormecer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo também era conhecido por Dídimo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo traiu Jesus por dinheiro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual cidade Abraão pediu a Deus para não ser destruída?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual cidade do Egito disse Faraó a José para acomodar sua família?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual cidade também era conhecida por haver muitos gigantes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual comandante de Israel que disse que só iria à batalha se uma mulher fosse com ele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual comemoração Jesus e seus pais participavam anualmente em Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual deficiência física Jônatas tinha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual deficiência física Mefibosete possuía?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual destas tribos não pertencia às 12 tribos de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual discípulo recebeu a visão de um lençol cheio de animais?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual discípulo ressuscitou Dorcas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual discípulo teve sua sogra curada por Jesus na cidade de Cafarnaum?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual discípulo traiu Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos amigos do rei Davi fingiu estar apoiando Absalão apenas para ficar informado dos acontecimentos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos apóstolos de Jesus era denominado Zelote?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos apóstolos foi mordido por uma cobra, porém não sofreu mal nenhum?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos discípulos de Jesus caminhou sobre a água?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos discípulos de Jesus cortou uma orelha dos algozes que vieram prender Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos filhos de Davi estuprou Tamar, sua meia-irmã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos filhos de Davi se rebelou contra o pai e tentou tomar o trono à força?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos filhos de Davi se vingou pelo fato de seu irmão Amnom ter estuprado sua própria meia-irmã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos livros abaixo não é considerado com um dos livros dos Evangelhos de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é a forma hebréia do nome do profeta Zacarias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o 5º mandamento de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o 6º mandamento de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o 7º mandamento de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o 8º mandamento de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o 9º mandamento de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o grau de parentesco entre Jetro e Zípora?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o grau de parentesco entre José do Egito e Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o grau de parentesco entre Salomão e Roboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o livro mais antigo da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o maior capítulo da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o maior livro da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o maior versículo da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o menor capítulo da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o menor lívro da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o menor versículo da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome da babá de Rebeca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome da cobertura da Arca da Aliança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome da primeira mulher?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome do anjo que avisou Maria de que ela iria ser a mãe de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome do filho de Ana que foi entregue ao Sumo Sacerdote Eli para ser cuidado por este?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome do filho de Ana, que foi dedicado ao serviço de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome do temanita que repreendeu a Jó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome do vale próximo a Jerusalém onde o povo sacrificava suas crianças ao deus Moloque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o salmo onde todos os versos terminam com o estribilho \"Porque a Sua misericórdia dura para sempre.\"?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o significado do nome de Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o significado do nome do Sumo Sacerdote Eli?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a alimentação básica de João Batista no deserto?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a altura aproximada do gigante Golias morto por Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a altura da arca de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a altura da estátua de ouro construída pelo rei Nabucodonosor?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a capital do reino de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a cidade natal do discípulo Pedro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a cidade que Deus mandou Jonas advertir sobre seus pecados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a cor da corda que Raabe fez descer quando os israelitas invadiram a cidade de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a distância aproximada entre a cidade de Emaús e Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a enfermidade que o comandante Naamã era acometido?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a enfermidade que o sacerdote deveria testemunhar, para definir se a pessoa deveria ou não ser apartada da família?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a finalidade da moeda que Pedro encontrou dentro da boca de um peixe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade apriximada de Jesus quando começou a pregar seu ministério publicamente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Abraão quando Isaque nasceu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Ezequias quando este se tornou rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Jesus quando seus pais se perderam do mesmo, e o encontraram ensinando no Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de José quando este recebeu do Faraó um anel pelo fato de ter interpretados os seus sonhos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Moisés quando o mesmo matou um egípcio pelo fato deste estar surrando um hebreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Noé quando a arca foi concluída?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Sara quando Isaque nasceu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a nacionalidade da mulher que estava tirando água do poço e deu a Jesus para beber?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a nacionalidade de 11 dos 12 apóstolos de Jesus?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a nacionalidade de Dalila, esposa de Sansão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a nacionalidade de Ebede-Meleque, o eunuco que havia salvo o profeta Jeremias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a nacionalidade do gigante Golias morto por Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de André antes de se tornar apóstolo de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de Demétrio que havia instigado uma revolta entre os próprios discípulos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de José, pai de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de Mateus, um dos apóstolos de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de Pedro antes de se tornar apóstolo de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de Raquel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de Zaqueu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a punição imposta pelo rei Dario caso alguém não obedecesse ao decreto por ele assinado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a punição imposta pelo rei Nabucodonosor caso as pessoas a quem ele chamou não decifrassem os seus sonhos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a sentença do anjo da morte que iria passar sobre o Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a tarefa principal de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o antigo nome de Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o antigo nome de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o antigo nome de Paulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o apóstolo de Jesus responsável pelas finanças?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o comprimento da arca de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o discípulo mais jovem de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o filho de Salomão que cultuava ídolos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco de Jetro para com Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco de Zípora para com Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Abraão e Harã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Absalão e Amnon?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Arão e Anrão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Elcana e Jeroão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Herodes, o Grande, e Herodes Agripa?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Jacó e Maria, mãe de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Jesus e Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Joás e Gideão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Jônatas e Saul?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Labão e Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Lázaro e Marta?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Mardoqueu e Ester, a esposa do rei Assuero?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Orfa e Ester?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Orfa e Noemi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Orfa e Rute?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Rute e Noemi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Rute e Orfa?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o irmão de Maria e Marta que Jesus ressuscitou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome babilônico de Azarias, amigo de Daniel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome babilônico de Daniel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome babilônico de Hananias, amigo de Daniel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome babilônico de Misael, amigo de Daniel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da cidade do rei Ogue que era cheia de gigantes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da esposa de Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da esposa de Herodes Antipas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da esposa de Jó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da esposa de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da esposa de Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da irmã de Raquel, esposa de Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do apóstolo que estava pregando a mensagem quando Êutico caiu da janela pois estava dormindo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do filho de Rute e Boaz?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do marido de Isabel, mãe de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do marido de Maacá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do pai de Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do pai de Moisés e de Arão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do pai de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do pai do profeta Zacarias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do poço de onde a mulher samaritana com quem Jesus falou estava tirando água?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o objetivo da mãe de Moisés ao tê-lo colocado em um cesto e deixado à deriva no rio Nilo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o objetivo de Saulo quando este ficou cego quando dirigia-se para a cidade de Damasco?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o outro nome de Jetro, sogro de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o outro nome pelo qual o apóstolo Tomé também era conhecido?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o reinado ocupado por Salmanezer quando levou cativo o povo de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o significado do nome de Urias, leal oficial do exército de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o sobrenome de Herodes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual festividade celebra o final da vida de escravidão do povo israelita no Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual filho de Davi o estava perseguindo para matá-lo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual filho de Davi refugiou-se na cidade de Gesur após ter matado Amnom?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual filho de Jacó perdeu a sua primogenitura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual filho do rei Azarias governou em seu lugar após a sua morte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 1ª praga que Deus enviou aos egípcios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 2ª praga que Deus enviou contra os egípcios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 3ª praga enviada por Deus ao povo egípcio?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 4ª praga que Deus enviou ao Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 5ª praga que Deus enviou ao Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 6ª praga que Deus enviou contra os egípcios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 7ª praga enviada por Deus contra os egípcios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a acusação do sumo sacerdote contra Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a árvore cuja semente Jesus usou para ensinar uma lição de fé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a causa que levou com que Israel fosse levado cativo pelos assírios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a desculpa utilizada por Amnom, filho de Davi, para que Tamar, sua meia-irmã, viesse à sua casa e a estuprasse?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a Epístola que o apóstolo Paulo escreveu enquanto esteve viajando pela Grécia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a mensagem que o profeta Aías disse à esposa de Jeroboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a pior rainha do reino de Isarel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a primeira cidade conquistada pelos israelitas quando estes estavam sob a liderança de Josué?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a proclamação do rei de Níníve para que todas as pessoas fizessem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a profecia que o profeta Isaías disse ao rei Ezequias com relação aos tesouros do Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a profissão de Ninrode?"], ["LIMIT", 1]] Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a profissão de Zacarias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a quantidade de seguidores de Corá que foram consumidos pelo fogo em sua rebelião?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a resposta do rei Davi à tentativa de rebelião promovida por Absalão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a única mulher na Bíblia que teve a sua idade mencionada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a única ocasião registrada no Novo Testamento em que Jesus cantou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o 1º discípulo a perder sua vida pelo fato de estar evangelizando?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o 1º discípulo morto a mando de Herodes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o 1º milagre que Jesus realizou em público?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o decreto assinado pelo rei Dario vigente por 30 dias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o fato que levou o rei Davi a ser questionado pelo profeta Namã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o fato que permitiu que os 2 discípulos de Jesus que caminharam com Ele na estrada de Emaús O reconhecessem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o filho de Jacó que tornou-se um grande líder da nação egípcia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o filho do rei babilônico Nabucodonosor?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o filho primogênito do rei Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o filho que Davi não teve com Bate-Seba?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o grau de parentesco entre Moisés e Anrão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o grau de parentesco entre Moisés e Joquebede?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o homem mais velho da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o melhor amigo de Jônatas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o motivo que levou Deus a optar pela destruição da Terra através de um dilúvio?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o nome que o rei Davi e Bate-Seba deram ao segundo filho que tiveram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o novo mandamento que Jesus ensinou aos seus discípulos no cenáculo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o objetivo de Josias em queimar ossos humanos no altar eregido ao deus Moleque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o outro nome que Deus deu a Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o pecado que Davi cometeu com Bate-Seba?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o período de reinado de Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o primeiro apóstolo a morrer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o primeiro discípulo a perder a sua vida?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o profeta que antecedeu a João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o profeta que apareceu após Malaquias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o profeta que era conhecido como o \"profeta que chorava\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o profeta que sucedeu a Samuel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o rei mais cruel que o povo de Israel já teve como governante?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o rei que destruiu os muros de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o último grande líder da nação babilônica?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o último livro da Bíblia a ser escrito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o único dos doze apóstolos que não era Galileu?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual ídolo foi a principal deusa de Tiro, conhecida também como \"A Dama do Mar\" no livro dos judeus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual ídolo representava o deus do conhecimento e da literatura de Babilônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual ídolo também era conhecido por Tiro como a \"Deusa do Mar\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual imperador Romano decretou que todos deveriam pagar impostos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual imposto deveria ser pago com a moeda que Pedro encontrou dentro da boca de um peixe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual instrumento era tocado pela orquestra criada pelo rei Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual juiz de Israel tinha 30 filhos que cavalgavam 30 jumentos?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual mandamento nos instrui a respeitar a vida do próximo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual mar dividiu-se em dois para permitir que o povo hebreu escapasse da perseguição do Faraó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual Monte marcava ao norte os limites de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual mulher liderou um exército em uma batalha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual nação o rei Sisaque governava quanto atacou Jerusalém e saqueou o Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual nação tomou o povo israelita como escravo por aproximadamente 400 anos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o homem que, depois de morto, matou mais pessoas que em sua vida?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o nome do filho do rei Ezequias que ocupou o trono real após sua morte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o nome do jovem que estava dormindo sentado em uma janela enquanto Paulo pregava a mensagem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o nome do pai de Rebeca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o nome que deram à serpente de bronze levantada por Moisés no deserto?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o percentual do Novo Testamento que foi escrito em grego?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o rei que adivinhava pelas nuvens, praticava feitiçaria e queimou o seu filho em sacrifício?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual planta deveria ser utilizada para aplicar o sangue do cordeiro nos batentes da porta das casas dos israelitas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual povo considerava Dago como o principal deus da agricultura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual povo depositou na Arca da Aliança 5 camundongos de ouro quando a mesma foi devolvida aos israelitas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual povo tinha como divindade o deus Moloque, que exigia o sacrifício de crianças?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual povo, provido por Deus, peregrinou pelo deserto durante 40 anos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta a rainha Jezabel tentou matar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta antecedeu a Namã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta disse a mensagem ao rei Jeroboão de que todos os filhos da casa real seriam mortos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta foi atirado em uma cisterna para afundar na lama e ser deixado lá para morrer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta foi chamado para dizer sobre a condição de saúde do filho de Jeroboão, quando este adoeceu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta foi o pai de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta impulsionou os judeus para que terminassem a reconstrução do Templo, após o retorno da Babilônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta predisse ao rei Ezequias que os tesouros do Templo seriam levados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta se inspirava ouvindo música?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta transformou-se em sacerdote?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profissão Jesus aprendeu de seu pai?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rainha foi visitar o rei Salomão em Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei a rainha de Sabá foi visitar em Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei antecedeu o governo de Belsazar no império Babilônico?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei antecedeu o reinado de Roboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei Atalia tentou destruir?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei babilônico teve sonhos onde Daniel afirmou que apenas Deus era capaz de interpretá-los?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei babilônico travou uma batalha contra o rei Neco do Egito e derrotou-o na cidade de Carquêmis?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei construiu altares a Baal e erigiu uma estátua da deusa Asera no Templo de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei da Assíria levou cativo todo o povo do reino do norte de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei da Babilônia mandou jogar os amigos de Daniel em uma fornalha ardente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei da Babilônia mandou jogar os amigos de Daniel na cova dos leões?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei de Israel tinha 700 esposas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei de Judá construiu um túnel que permitiu que fosse trazida água para a cidade de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei de Judá foi capturado na cidade de Jericó, após ter escapado do 3º ataque do rei Nabucodonosor?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei devolveu a Mefibosete todas as propriedades pessoais de Saul?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei do Egito atacou Jerusalém e saqueou o Templo, roubando assim seus tesouros?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei egípcio travou uma batalha contra o rei Nabucodonosor e foi derrotado na cidade de Carquêmis?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei foi morto por uma flecha atirada ao acaso?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei foi questionado pelo profeta Namã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei juntamente com seus filhos foram derrotados pelos filisteus no Monte Gilboa?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei mandou buscar o profeta Aías quando seu filho adoeceu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei mandou chamar adivinhos e magos para decifrar os sonhos que tinha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei mostrou os tesouros do Templo aos babilônios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei o sacerdote Samuel ungiu como rei de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei pagava 150 ciclos de prata por um cavalo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei persa jogou Daniel na cova dos leões?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei queria capturar Elias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei sucedeu o governo de Nabucodonosor no império Babilônico?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei viajou pelo Monte das Oliveiras fugindo do seu filho rebelde?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei, ao ter adoecido, mandou que fosse consultado o deus Baal-Zebube, para ver se sararia da sua doença?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual sacerdote ungiu Davi como o novo rei de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual sacerdote ungiu Salomão como rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual salmo possui 5 versículos exatamente iguais?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual servo de Deus teve os seus filhos mortos por um tufão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual tio criou Ester como filha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando 3 mil homens amarraram Sansão, o que eles fizeram com ele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando a Babilônia era governada pelo rei Belsazar, qual povo estava prestes a conquistar a Babilônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando a cabeça de Sansão foi raspada, por que ele não conseguiu vencer os filisteus como nas 3 vezes anteriores?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando a cruel rainha Jezabel morreu ela foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando a mulher pecadora derramou lágrimas sobre os pés de Jesus, com o que ela secou seus pés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando a torre de Babel estava sendo construída, o que Deus fez às pessoas que a estavam construindo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando as obras do Templo foram interrompidas por causa da oposição, quem decretou que o trabalho fosse retomado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Dario tornou-se rei da Babilônia, para qual posição Daniel foi nomeado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Davi desafiou Golias com sua funda e algumas pedras, o que Davi levava consigo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Davi matou o gigante Golias, Davi era:"], ["LIMIT", 1]] Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Davi viu Bate-Seba do teto de sua casa, o que ela estava fazendo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Deus apareceu para Salomão em sonho e permitiu que ele pedisse o que quisesse, o que Salomão pediu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Elias foi levado para os Céus por Deus ainda vivo, o que Elias era:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Elias, o profeta, começou a orar ao lado de um lago, o que começou a flutuar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Ezequias contraiu uma doença fatal, quantos anos de vida Deus lhe acrescentou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando foi feita a primeira tradução completa da Bíblia para o inglês por Wycliffe?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jeoaquim reinava em Judá, quem atacou Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus chegou a Betfagé, enviou seus discípulos para a aldeia mais próxima para pedir emprestado um:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus e seus discípulos chegaram ao Jardim do Getsêmani, o que Jesus pediu aos seus discípulos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus estava indo para o Gólgota, quem carregou um trecho a cruz de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus estava jantando na casa de um dos fariseus, o que uma mulher fez por Ele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus estava no Jardim do Getsêmani, o que lhe ocorreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus expulsou os demônios de um homem que vivia no cemitério, para onde a legião foi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus foi preso, o que Pedro fez:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus foi ungido com o bálsamo, qual dos discípulos se indignou por esse ato?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus lavou os pés dos discípulos, o que Ele pretendia ensinar aos mesmos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus se aproximava de Jerusalém montado no jumento, o que os fariseus pediram a Ele fazer com a multidão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus se aproximava de Jerusalém montado no jumento, quem pediu a Ele que repreendesse a multidão que O saudava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus transformou água em vinho, qual evento estava sendo celebrado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jonas foi jogado no mar, Deus o salvou de se afogar enviando:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando José do Egito morreu, seu corpo foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando José foi vendido como escravo, quantas moedas de prata os irmãos de José receberam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Judas percebeu que Jesus havia sido condenado pelo Sinédrio, o que ele fez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Maria e José estavam procurando a Jesus quando Este tinha apenas 12 anos, onde finalmente o encontraram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Maria foi visitar sua prima Isabel, quanto tempo ela ficou ausente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Moisés desceu do Monte Sinai pela 1ª vez com as tábuas da lei de Deus, o que Moisés viu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Moisés era bebê, ele foi colocado por sua mãe em um cesto, e deixado no:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Moisés viu um egípcio surrando um hebreu, o que Moisés fez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Noé enviou da arca uma pomba, o ramo de qual árvore ela trouxe em seu bico?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Noé enviou uma pomba da arca, o que ela trouxe em seu bico?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o anjo da morte passou pelo Egito, o sangue de qual animal foi colocado nos batentes da porta?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o Espírito do Senhor se apossou de Sansão, o que aconteceu com as cordas que o amarravam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o filho de Jeroboão adoeceu, quem ele mandou sua esposa procurar, em busca de respostas sobre a condição do menino?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o jovem Daniel falou com o rei Nabucodonosor, quem ele disse que saberia interpretar os sonhos do rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o povo hebreu estava apostatado de Deus, que espécie de sacrifícios eram oferecidos ao deus Moloque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o rei Belsazar estava dando uma festa no palácio real, o que aconteceu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o rei Belsazar viu uma mão sem corpo escrevendo na parede, o que estava ocorrendo no palácio real?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o rei Manassés reinou, de qual deusa ele erigiu uma estátua no interior do Templo de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o rei ouviu a mensagem de Jonas, com que roupas ele se vestiu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o rei Zedequias escapou do cerco bailônico à cidade de Jerusalém, em qual cidade ele foi capturado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o reino de Israel foi conquistado pelos assírios, quem reinava no reino de Judá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando os filhos de Jacó foram comprar grãos no Egito, quem disse a eles que eles eram espias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando os filisteus atacaram Sansão pela 4ª vez, o que eles lhe fizeram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando os irmãos de José foram para o Egito para comprar grãos, o que José disse a eles?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando os judeus retornaram a Jerusalém vindo de Babilônia, como os idosos reagiram à construção do alicerce do Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Paulo foi à Roma, o que os marinheiros do navio tentaram fazer ao avistarem terra após a violenta tempestade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Paulo foi à Roma, o que os soldados romanos tentaram fazer aos prisioneiros quando o navio estava naufragando?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Paulo foi à Roma, quem tentou matar os prisioneiros que haviam no navio que estava naufragando?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Paulo precisou retornar da Grécia p/ a Macedônia pois desejavam matá-lo, onde seus companheiros o estavam aguardando?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Roboão tornou-se rei, o que os israelitas lhe pediram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Salomão morreu, onde ele foi interrado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Sansão apaixonou-se por Dalila, ela vivia no vale de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Sansão estava andando pela estrada, que animal tinha em seu corpo uma colméia de mel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Sansão estava andando por uma estrada, o que ele encontrou no corpo de um leão morto?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Sansão foi à cidade de Timnate, o que ele pediu aos seus pais?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Sansão visitou a cidade de Gaza, o que ele fez por lá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando um caldo venenoso foi acidentalmente oferecido a Eliseu, o que ele colocou na panela para torná-lo comestível?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Zedequias governava o reino de Judá, quem atacou Jerusalém pela 3ª vez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas esposas Jacó tinha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas esposas Salomão teve?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas esposas tinha o rei Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas janelas havia na arca de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas letras a Bíblia contém aproximadamente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas letras possui o maior versículo da Bíblia (Ester 8:9)?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas letras possui o menor versículo da Bíblia (Êxodo 20:13)?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas ovelhas foram sacrificadas como oferta pacífica quando Deus entrou no Templo de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas palavras a Bíblia contém aproximadamente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pedras Davi apanhou no chão para matar o gigante Golias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pessoas haviam no navio que naufragou onde Paulo estava em sua viagem para Roma?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pessoas Jesus alimentou com 5 peixes e 2 pães?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pessoas justas Abraão estava procurando em Sodoma?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pessoas morreram do povo israelita em função da praga enviada por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pessoas perderam a sua vida por não saberem pronunciar a palavra Shiboleth?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas portas havia na arca de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes Deus apareceu a Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes Eliseu disse para Naamã se molhar no rio Jordão para se curar da lepra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes Jesus perguntou a Pedro se este o amava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes Noé enviu uma pomba para procurar por terra seca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes o rei Nabucodonosor atacou Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes Pedro negou a Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas voltas o povo de Israel deu em volta dos muros da cidade de Jericó, para que estes caíssem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto custou o terreno que foi a sepultura de Sara?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto Jesus foi tentado por Satanás, para matar a fome de Jesus Satanás pediu que as pedras fossem transformadas em:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto Judas Iscariotes disse que custava o perfume que lavou os pés de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto os príncipes filisteus ofereceram a Dalila para que ela descobrissem o segredo da força de Sansão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto pagava Salomão por um cavalo?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto Satanás tentou a Jesus, o que o mesmo pediu que Jesus transformasse em pão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto talentos de prata Hamã ofereceu ao Rei Assuero para exterminar os judeus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto tempo durou a celebração de dedicação do Templo de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto tempo Moisés ficou no Monte Sinai com Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto tempo passou até que José e Maria reencontrassem Jesus, que havia separado-se deles em uma viagem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto tempo passou até que Maria percebesse que Jesus, então com 12 anos de idade, não estava na caravana de regresso?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos andares havia na arca de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos Arão era mais velho do que Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos de diferença há entre os irmãos Esaú e Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos Jacó precisou trabalhar para casar-se com Léia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos Jacó precisou trabalhar para finalmente casar-se com Raquel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos José do Egito tinha quando morreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos Mefibosete tinha quando foi deixado cair por sua babá, e que com isso afetou seus 2 pés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos o rei Salomão levou para construir o Templo de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos tinha Manassés quando foi constituído rei do povo de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos viveu Matusalém, o homem mais velho da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos apóstolos Jesus chamou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos bois foram sacrificados como oferta pacífica quando Deus entrou no Templo de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos cânticos escreveu Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos capítulos a Bíblia possui?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos capítulos possui o maior livro da Bíblia (Salmos)?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos cestos de comida ainda sobraram após todas as pessoas terem se alimentado no milagre da multiplicação?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos conveses havia na arca de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos demônios Jesus expulsou de Maria Madalena?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos dias a mãe de Rebeca sugeriu que ela ficasse com seus parentes antes de partir para se casar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos dias Jesus jejuou enquanto esteve no deserto, antes de iniciar seu ministério?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos dias Lázaro esteve sepultado antes de ser ressuscitado por Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos discípulos Jesus mandou tomar emprestado um jumento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos Evangelhos existem no Antigo Testamento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos Evangelhos existem no Novo Testamento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filhos de Davi nasceram durante seu reinado em Hebrom?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filhos de José se tornaram líderes das tribos de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filhos Jair, juiz de Israel, tinha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filhos Noé tinha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filisteus morreram quando Sansão destruiu a construção em que se encontravam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filisteus Sansão matou com apenas uma única queixada de jumento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos foram os dias da criação?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos foram os filhos que Davi teve com Bate-Seba?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos Governadores o rei Dario nomeou quando assumiu o reino da Babilônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos homens foram precisos para amarrar Sansão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos músicos faziam parte da orquestra do rei Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos personagens do Velho Testamento apareceram na montanha durante a transfiguração?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos Presidentes o rei Dario nomeou quando assumiu o reino da Babilônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos príncipes filisteus ofereceram a Dalila 1.100 moedas de prata?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos provérbios escreveu Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos querubins de ouro haviam sobre o propiciatório da Arca da Aliança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos trabalhadores foram designados para a construção do Templo de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos versículos a Bíblia possui?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos versículos possui o maior capítulo da Bíblia (Salmos 119)?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos versículos possui o menor capítulo da Bíblia (Salmos 117)?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos versículos possui o menor livro da Bíblia (2ª João)?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que animais os 30 filhos de Jair, juiz de Israel, montavam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que animal Balaão possuía que chegou a falar após ter visto um anjo do Senhor?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que animal comprimiu o pé de Balaão contra o muro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que animal teria que ser reposto cinco vezes mais se fosse roubado por alguém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que cena incrível Moisés presenciou quando ele estava no Monte Horebe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que desejava construir o Templo de Deus, mas cujo pedido foi negado por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que discípulo Jesus encontrou sob uma figueira?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que evento ocorreu quando Jesus tinha apenas 8 dias de idade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que faixa de montanhas produziu as árvores de cedro e de cipreste que Salomão utilizou na construção do Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que falso deus era a divindade principal de Canaã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que foi a mãe de Jeroboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que foi o pai dos músicos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que grupo de pessoas queria saber o segredo da força de Sansão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que homem israelita era celebrado por sua beleza?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que ídolo representava o deus sírio louvado pelo general Naamã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que instrumento era tocado nos funerais nos tempos do Novo Testamento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que instrumento musical foi ouvido antes de Moisés subir ao Sinai e receber a Lei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que instrumentos Miriã tocou depois da travessia do Mar Vermelho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mandamento nos instrui a não matar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mandamento nos instrui a sermos honestos com o próximo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que monte era tão sagrado que se um animal o tocasse morreria instantaneamente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mulher abandonou a família para acompanhar a sogra?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mulher ajudou o filho a praticar uma fraude?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mulher devotada dedicou seu filho, Samuel, ao Senhor?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mulher diabólica tentou destruir o rei Jeoás e toda a prole de Judá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mulher matou toda a família real para ser rainha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que parte do corpo de Mefibosete foi afetada quando sua babá o deixou cair com apenas 5 anos de idade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que parte do corpo uma jumenta comprimiu o profeta Balaão contra um muro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que pessoas o profeta Isaías predisse que seriam levadas cativas para Babilônia e se tornatiam eunucas no palácio?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que povo chamava Belzebu como o \"príncipe dos espíritos do diabo\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que povo derrotou o rei Saul e seus filhos no Monte Gilboa?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que rei reconheceu que Deus fez com ele o mesmo que ele tinha feito aos seus inimigos?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que rio se transformou em sangue?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que substância Jesus disse ser inútil após ter perdido o gosto?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem absteu-se de alimentar-se dos alimentos impuros que haviam na mesa do rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem aconselhou Jacó a retornar para a terra de seus pais?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem adoeceu que obrigou o rei Jeroboão a procurar o profeta Aías para dizer-lhe sobre sua condição de saúde?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem afirmou que apenas Deus poderia interpretar os sonhos que o rei Nabucodonosor estava tendo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ajudou uma viúva pobre enchendo várias vasilhas de azeite?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem amarrou Sansão com 7 tendões não secos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem amparou Saulo e defendeu-o para os apóstolos, assegurando-lhes que agora Saulo era um verdadeiro cristão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Ananias curou da cegueira?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem apareceu a Jesus na montanha durante a transfiguração?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem apareceu a Jesus para tentá-lo no deserto?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem apresentou Jesus surrado à multidão, dizendo: \"Eis o homem!\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem arrancou as portas de entrada da cidade de Gaza?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem arrependeu-se após ter visto Jesus ser levado preso para a presença de Pôncio Pilatos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Atalia matou para poder ser rainha?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Barnabé defendeu perante os apóstolos, assegurando que ele havia se convertido?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem batizava as pessoas no rio Jordão para que se arrependessem e buscassem o perdão de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem casou-se com Bate-Seba após ela ter terminado seu período de luto por Urias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem casou-se com Maria, mãe de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem cavalgou um camelo quando dirigia-se ao seu casamento?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem chamou o fogo dos Céus para consumir um altar de sacrifícios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem chorou quando viu o alicerce do Templo ser reconstruído, após terem retornado do cativeiro da Babilônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem chorou sobre Jerusalém no Monte das Oliveiras?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem colocou o bebê Moisés em um cesto no rio Nilo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem colocou os irmãos de José na prisão, quando estes foram comprar grãos no Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem colocou Zedequias no trono do reino de Judá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem comandou os israelitas em sua batalha contra Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem comprou o direito de primogenitura que não lhe era seu por direito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem comunicou a Maria, futura mãe de Jesus, que ela iria ter um bebê?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem conduziu os israelitas cantando após a travessia do Mar Vermelho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem confundiu um canto da multidão com um canto de guerra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem construiu a cidade de Nínive?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem construiu o Templo de Deus em Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem contou aos pastores sobre o nascimento de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem cortava os cabelos no fim de cada ano, pois os mesmos muito lhe pesavam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem cortou o cabelo de Sansão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem cuspiu em Jesus enquanto o mesmo estava sendo surrado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem dançou na festa de aniversário de Herodes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem decidiu que, caso as pessoas não conseguissem decifrar seus sonhos, essas pessoas seriam mortas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem deixou seu filho sob um arbusto para não vê-lo morrer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem deu beijos políticos aos cidadãos de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem deu presentes de ouro ao menino Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem deu um beijo de traição em Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Deus enviou para preparar o caminho de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse a frase \"Raça de víboras, quem vos ensinou a fugir da ira vindoura?\""], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse a Zacarias que ele teria um filho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse ao Faraó que haveria um período de muita fome no Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse que queria ver os furos nas mãos e nos pés de Jesus para acreditar que Jesus havia ressuscitado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse: \"Desafio hoje as fileiras de Israel; dai-me um homem para que pelejemos.\""], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse: \"Se tu é o Filho de Deus, manda a esta pedra que se torne pão.\""], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse: \"Sou inocente do sangue deste homem.\""], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem durante 7 anos imaginava que era um animal?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem durante sua viagem para Roma enfrentou uma violenta tempestade no mar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem é chamado de \"o príncipe dos espíritos do diabo\" pelos fariseus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem é o primeiro bígamo citado na Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem encontrou a cesta onde Moisés encontrava-se escondido, presa junto aos juncos do rio Nilo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem encontrou um arbusto em chamas que não se consumia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enganou Eva no Jardim do Éden?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enganou Jacó em seu próprio banquete de casamento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enganou Jacó, que ao final dos primeiros 7 anos de trabalho, não recebeu a mão de Raquel, mas sim da sua irmã Léia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enganou o rei Dario, fazendo-o com que assinasse um decreto onde o rei deveria receber unicamente as orações?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enviou Eliezer para procurar por uma esposa para Isaque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enviou espias para a cidade de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era a esposa do impostor Ananias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era a esposa do rei Assuero que recusou-se a ser exibida em frente a alguns convidados bêbados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era a mulher viúva e moabita que se dedicara inteiramente à sua sogra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era a rainha cruel de Israel que foi devorada pelos cachorros quado morreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era a sogra de Rute?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o centurião romano honrado e temente a Deus que teve uma visão de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o conselheiro influente do rei Davi que desertou para o lado de Absalão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o deus dos amonitas que exigia o sacrifício de crianças?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o home da terra de Uz?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o homem segundo o coração de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o honesto homem a quem Deus deu instruções para construiur uma arca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o irmão de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o irmão mais novo de Miriã?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o marido impostor de Safira?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o melhor amigo de Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o pai de Ló, que foi resgatado por um anjo da cidade de Sodoma?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o profeta de Jerusalém que visitou os cristãos em Antioquia e contou-lhes sobre uma grande fome que estava por vir?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o rei da Assíria quando Deus matou 185.000 homens que estavam tentando tomar Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o rei de Israel quando a Assíria conquistou o reinado do norte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o rei de Judá quando Nabucodonosor atacou Jerusalém pela 1ª vez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o rei de Judá quando Nabucodonosor atacou pela 3ª vez a cidade de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o rei governante em Jerusalém quando Jesus nasceu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o Sumo Sacerdote que cuidou de Samuel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o tio de Ló?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem eram os pais de Jedidias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem eram os pais de José e Benjamim?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem eram os pais de Sete?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem eram os pais dos irmãos gêmeos Esaú e Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem escondeu Moisés em uma cesta, com o objetivo de protegê-lo do decreto de morte pronunciado pelo Faraó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem escondeu os espias na cidade de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem escreveu a carta de Paulo aos Romanos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem espargia o sangue do sacrifício no propiciatório da Arca da Aliança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem estava em pé no pináculo do Templo e tentou Jesus a saltar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem estava perseguindo o povo israelita quando eles estavam atravessando o Mar Vermelho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem estava procurando Jesus, quando Este tinha apenas 12 anos, e estava ensinando no Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem estava sentado eu uma jumenta quando apareceu um anjo com a espada desembainhada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem esteve sepultado por 4 dias até que foi ressuscitado por Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem expulsou os mercadores que haviam se alojado no Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem falsamente acusou José de tentar seduzí-la?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fez a primeira tradução completa da Bíblia para o inglês, no ano de 1380?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fez descer uma corda púrpura pela janela quando os israelitas invadiram Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fez saques em Jericó mesmo após Josué ter instruído o povo a não fazê-lo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fez um bezerro de ouro como ídolo para os israelitas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fez uma estátua de ouro de si próprio para ser cultuada e que tinha 90 pés de altura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou 3 dias na barriga de um grande peixe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou cego na estrada de Damasco?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou cego quando dirigia-se para a cidade de Damasco prender alguns cristãos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou com os 2 pés feridos porque quando tinha apenas 5 anos a babá que o carregava o deixou cair?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou enciumada pelo êxito de seu irmão mais novo?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou irritada ao perceber que sua irmã não a ajudava, preferindo ouvir as palavras de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou preso pelos cabelos em um carvalho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou preso pelos cabelos em um cedro do Líbano?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fingiu ser Esaú para obter a bênção da primogenitura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a 1ª pessoa a ver Jesus ressuscitado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a 1ª pessoa que testemunhou a conversão de Saulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a avó de Timóteo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a bisavó de Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a dedicada discípula em Jope que Pedro ressuscitou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a esposa de Boaz?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a garota israelita que casou com o rei persa Assuero?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a irmã de Arão, o Sumo-Sacerdote?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Ismael?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Obede?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Roboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Timóteo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a primeira mulher convertida na Europa?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a primeira pessoa a cometer assassinato na Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a única médium registrada na Bíblia?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a vítima do primeiro assassinato ocorrido na Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi acusado falsamente de tentar seduzir a esposa de Potifar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi ao Egito durante uma longa estiagem de seca e fome?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi apresentado no Templo de Jerusalém como um bebê?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi atirado à cova dos leões?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi batizado por João Batista no rio Nilo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi chamado de cristãos pela 1ª vez na cidade de Antioquia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi colocado em uma cesta no rio Nilo, quando ainda era bebê?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi confundido pelos gregos como sendo o deus Júpiter?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi decapitado pelo rei Herodes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi escondido em uma cesta por sua mãe com o objetivo de protegê-lo de morte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi escravo pessoal de Potifar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi filho de Davi e Bate-Seba?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi filho de Terá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi levado escravo para o Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi neto de Obede?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi nomeado Presidente do reino da Babilônia, através do rei Dario?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o 1º filho de Adão e Eva?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o 2º rei de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o 3º filho de Adão e Eva?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Arão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Raquel e Léia, esposas de Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o bisavô de Ninrode, construtor da cidade de Nínive?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o bisneto de Rute?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o gigante morto por Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o irmão do Sumo-Sacerdote Arão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o marido de Priscila, que auxiliou no ministério de Paulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o marido de Rute?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai da rainha Jezabel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Acabe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Elcana?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Eliseu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Esdras?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Gideão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Ismael?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Jeroboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Jônas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Jônatas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Josué?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Lia e Raquel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Manassés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Mefibosete?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de muitas nações?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Obede?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Roboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Saul?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Zípora?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do profeta Neemias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do profeta Oséias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do profeta Sofonias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do rei babilônico Belsazar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do rei Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do rei Jotão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do rei Manassés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai dos líderes das 12 tribos de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai dos que habitam em tendas e possuem gados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai dos que tocam harpa e flauta?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai que se deitou com suas próprias filhas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o patriarca do Velho Testamento que quase sacrificou seu filho no Monte Moriá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o primeiro homem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o primeiro rei de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o primeiro tradutor da Bíblia para a língua do povo alemão?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o rei da Babilônia que viu uma mão sem corpo escrevendo na parede?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o sogro de Maria, mãe de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o tio-avô de Raquel e Léia, esposas de Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o último dos juízes de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o último rei que reinou o reino do Norte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o último sobrevivente da casa de Saul?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi obrigado a girar um moinho após seu prisionamento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi possuído por Satanás logo após ter recebido das mãos de Jesus um pedaço de pão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi proclamado publicamente rei na cidade de Gilgal?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi professor do apóstolo Paulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi rei e sacerdote ao mesmo tempo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi sepultado por Deus em um vale?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi tocado por um milagre de Jesus e estava sendo ameaçado de morte pelos sumos sacerdotes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi transformada em estátua de sal, ao olhar para trás?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi um dos filhos de Anrão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi um dos filhos do rei Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi vendido pelos seus irmãos ao preço de 20 moedas de prata?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi visitar Maria para dizer-lhe que ela havia sido escolhida para ser a mãe de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi, cujo significado de seu nome é \"pacífico\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram as primeiras pessoas a ouvirem sobre o nascimento de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram os pais de Benjamim?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram os pais de Jeroboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram os pais de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram os pais de José, do Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram os pais de Roboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem formou a primeira orquestra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fugiu de Jerusalém quando Absalão tentou tomar o trono à força?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ganhou uma \"túnica de muitas cores\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem governava o reino de Judá quando Nabucodonosor atacou Jerusalém pela 2ª vez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem gritou \"Crucifica-o!\" após Pôncio Pilatos ter apresentado Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem havia dado a Daniel o nome de Beltesaazar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem interpretou os sonhos do Faraó do Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem irou-se pelo fato de ter sido construído um altar de sacrifícios para o deus Moleque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Isaque abençoou por engano, em lugar de Esaú?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Jesus disse que iria gritar se acaso o povo ficasse em silêncio pela ocasião de sua entrada triunfal em Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Jesus expulsou do Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem jogou Jonas no mar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem levou cativo o reino norte de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem levou seu filho de 12 anos a Jerusalém para celebrar a Páscoa dos judeus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem libertou o apóstolo Pedro da prisão quando ele foi acorrentado entre 2 guardas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem liderou o povo israelita durante sua libertação do cativeiro no Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou açoitar Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou decapitar João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou escrever uma placa para ser pregada na cruz de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou executar à morte o apóstolo Tiago?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou matar os profetas de Baal?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou prender Nabote acusando-o de blasfêmia, apenas para poder tomar posse da vinha que ele tinha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou que todos os bebês hebreus que nascessem fosse mortos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou tomar um jumento emprestado para Sua entrada em Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mantinha o povo israelita mantido em cativeiro, durante os dias de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou 1.000 filisteus com apenas a queixada de um jumento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou o gigante filisteu que tinha 12 dedos nas mãos e 12 dedos nos pés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou o rebelde Absalão que tencionava tomar à força o reino de Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou o rei assírio Senaqueribe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou seu irmão enquanto o beijava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou um egípcio pelo fato deste estar surrando um hebreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou um leão e um urso com as mãos nuas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu aos 110 anos de idade, quando então foi embalsamado e mumificado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu de parto ao nascer-lhe o segundo filho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu na revolta de Absalão na tentativa de tomar o trono do rei Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu no Monte Hor?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu no naufrágio do navio em que Paulo se encontrava quando estava indo para Roma?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu pelo fato de ter trazido fogo estranho à Casa de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem nasceu em Ur dos Caldeus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Nicodemos encontrou à noite e perguntou sobre a necessidade em nascer de novo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem nomeou José como governador de todo o Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem o egípcio morto por Moisés estava surrando?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem o povo preferiu que fosse libertado por Pôncio Pilatos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem o rei Acaz ofereceu como sacrifício ao deus Moloque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem o rei da Babilônia mandou jogar em uma fornalha ardente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ofereceu a Rebeca como forma de agradecimento 1 argola de ouro e 2 pulseiras de ouro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ofereceu ao Rei Assuero 10.000 talentos de prata, com o objetivo em exterminar os judeus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ofereceu um quarto na parte de cima de sua casa quando Eliseu estava avisitando?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou a colocação de guardas para guardar o sepulcro de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou a prisão de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou que Daniel fosse atirado à cova dos leões?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou que Jesus fosse crucificado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou que qualquer pessoa que visse Jesus deveria relatar onde ele se encontrava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou que todos os filhos do sexo masculino que nascessem fossem mortos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem orientou Naamã para se molhar no rio Jordão para se curar da lepra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem orou por 7 dias para que seu filho não morresse?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem passou 40 dias no Monte Sinai com Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem passou a noite lutando com Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a cabeça de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a Dalila que ela conseguisse de Sansão o segredo de sua força?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a Deus que lhe desse sabedoria?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a Deus que não destruísse Sodoma?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a José que interpretasse seus sonhos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a Roboão que abaixasse os impostos, após a morte do rei Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu ao rei Davi para que escolhesse Salomão a lhe suceder no trono real?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu aos espias que sua família fosse poupada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu um período de teste de 10 dias para provar que a alimentação da mesa do rei era impura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem perdeu a força quando teve seu cabelo cortado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem perdeu a posição de rainha pelo fato de ter-se recusado a aparecer diante de um banco de bêbados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem perdeu a vida por ter tocado na arca de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem perguntou a Pedro 3 vezes se ele amava a Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem permitiu que Mefibosete, com apenas 5 anos de idade, o deixasse cair, prejudicando com isso seus 2 pés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem persuadiu a multidão a pedir a Crucificação de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem possuiu o corpo de Judas Iscariotes após o mesmo ter recebido diretamente de Jesus um pedaço de pão na Última Ceia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem precisou ser educado no serviço do rei durante 3 anos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem preferiu ouvir as palavras de Jesus, ao invés de ajudar sua irmã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pregou arrependimento aos cidadãos de Nínive durante 40 dias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem procurava matar Saulo após ter-se convertido para o cristianismo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem profetizou de que os assírios não conseguiriam tomar Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pronunciou no Monte Gerizim as bênçãos dadas a Israel devido à sua obediência?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem provocou a morte de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem queimou as plantações dos filisteus amarrando tochas nas caudas de raposas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem questionou Davi sobre seus pecados contra Bate-Seba e Urias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Raabe escondeu na cidade de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem recebeu do Faraó um anel pelo fato de haver interpretado os sonhos do Faraó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem recebeu do rei Nabucodonosor o cargo de Governador da Babilônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem recebeu um beijo de traição?"], ["LIMIT", 1]] Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem reclamou para o Senhor que era pesado de boca e pesado de língua?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem reconstruiu Babilônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem refugiou-se em um monte, após terem deixado Raabe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem reinava na cidade de Astarote, conhecida por haver muitos gigantes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem reinava na Judéia quando José, Maria e Jesus retornaram para a Palestina?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem resmungou pelo fato dos rebeldes terem sido destruídos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem retirou a pedra do túmulo de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem salvou a vida do profeta Jeremias, que havia sido atirado em uma cisterna para morrer na lama?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem salvou Balaão de ser morto por um anjo que estava com a espada desembainhada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem salvou Ló e sua família de serem destruídos juntamente com a cidade de Sodoma?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem são bem-aventurados, pelo fato de serem consolados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem são bem-aventurados, pelo fato de serem fartos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem são bem-aventurados, pelo fato do reino dos céus serem deles?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem se postou perante os israelitas e os provocou durante 40 dias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem se tornou rei quando tinha 7 anos e reinou durante 40 anos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem sepultou Moisés em um vale?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem serão bem-aventurados, pelo fato de herdarem a terra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem subiu aos Céus em uma carruagem de fogo"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem subiu em cima de uma ávore para ver Jesus quando Ele estivesse passando?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem substituiu o apóstolo Judas após sua morte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem sucedeu Salomão no trono real após sua morte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem sugeriu que Rebeca ficasse com seus parentes\n1,por mais 10 dias antes de partir para se casar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem também tinha o nome de Beltessazar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem tentou José a pecar quando ele era um escravo de Potifar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem tentou várias vezes matar a Davi com uma lança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve como punição a morte de seu filho pelo fato de ter cometido adultério?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve como punição a morte de seu filho pelo fato de ter planejado um assassinato?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve o privilégio de comer uma refeição preparada por um anjo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve seu trono restituído com a morte de Absalão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve sua visão restaurada na estrada próximo à cidade de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve um sonho sobre o sol, a lua e as estrelas se curvando para ele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem tinha um burro que falou e viu o anjo do Senhor?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem trouxe muita amargura de espírito para Isaque e Rebeca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem vendeu seu direito de primogenitura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem visitou uma prostituta quando chegou à cidade de Gaza?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem, ao ter entrado em casa após ter regressado da consulta ao profeta Aías, teve seu filho morto?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem, após ter ouvido a mensagem de advertência de Jonas, vestiu-se com panos de saco?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem, na mesa de um homem rico, quis comer apenas migalhas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem, para se proteger, fingiu ser louco?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Raquel era esposa de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Raquel morreu de parto ao nascer-lhe:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Raquel, esposa de Jacó, morreu ao dar a luz:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Rebeca ajudou o filho a praticar:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Rebeca teve os filhos gêmeos Esaú e Jacó com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Roboão era o filho de Salomão que seria o sucessor no trono real, porém quem assumiu o trono?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Rute abandonou a sua família para acompanhar:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Rute e Orfa receberam um beijo de tristeza de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Salomão, rei de Israel, praticou comércio marítimo com o reino:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sansão apaixonou-se por quem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sansão queimou as plantações dos filisteus ao amarrar tochas nas caudas de qual animal?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sansão visitou uma prostituta quando estava viajando pela cidade de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Saul foi o:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Saul recebeu um beijo de coroação de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Se um boi fosse roubado por alguém, quantos bois o ladrão teria de repôr ao seu proprietário?"], ["LIMIT", 1]] Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sebá foi o segundo rebelde a se revoltar contra o governo do rei:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Segundo a religião dos filisteus, qual deus era o filho de Dago, deus da agricultura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Segundo a religião dos filisteus, qual deus era o pai de Baal?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Segundo o que Sansão disse a Dalila, para ele perder sua força ele deveria ser amarrado por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sem usar qualquer espécie de arma ou ferramenta, o que Davi matou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sete, filho de Adão e Eva, nasceu:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Simão de Cerene ficou conhecido como:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sobre o propiciatório da Arca da Aliança haviam 2:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sobre quantas tribos de Israel Salomão reinou durante 40 anos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sobre que animal cavalgou Rebeca quando foi casar-se com Isaque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Tabita morava na cidade de Jope, e também era conhecida por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Tiago foi decapitado à espada por ordem de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Tiago foi o primeiro apóstolo a:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Um dos filhos de Joquebede foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Uma das pragas que acometeram o Egito foi que as águas do rio Nilo se transformaram em:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Uma vez que Daniel não queria contaminar-se com a alimentação impura da mesa do rei, qual era a alimentação de Daniel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Uzá perdeu a vida pelo fato de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Vasti perdeu a condição de rainha pelo fato de ter-se recusado a aparecer diante de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Vinde a Jesus, todos aqueles que estiverem de que forma, para que possam ser aliviados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Wycliffe fez a primeira tradução completa da Bíblia no ano de 1380 para qual idioma?"], ["LIMIT", 1]] Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Zaqueu subiu em uma árvore para poder enxergar melhor a:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Zebedeu foi pai de quais discípulos de Jesus?"], ["LIMIT", 1]]  (0.1ms) SELECT COUNT(*) FROM "quizzes_questions" Quizzes::Level Load (0.2ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.6ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.6ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.2ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.2ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.6ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "10 anos após o reino de Israel ter sido capturado, qual nação tomou as cidades fortificadas de Judá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "2 dias antes da celebração da Páscoa, na casa de quem Jesus jantou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "2 dias antes da celebração da Páscoa, Simão, o leproso, ofereceu a Jesus um:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "42 mil pessoas perderam a sua vida por não saberem pronunciar qual palavra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "5.000 pessoas foram alimentadas por Jesus através do milagre da multiplicação de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A bênção da primogenitura de Jacó deveria ser dada a:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A bênçao da primogenitura era para ser dada ao:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A cesta onde Moisés foi depositado foi coberto por betume, para evitar que esta:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A cesta onde Moisés foi depositado foi coberto por betume, para fazer com que:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A cidade de Jerusalém foi atacada 3 vezes pelos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A escuridão que se abateu devido à Crucificação de Jesus ocorreu:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A esposa de quem tentou cometer adultério com José?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A estrada de Jerusalém para Jericó foi utilizada por Jesus na parábola:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A família de quem foi salva de Sodoma, antes que a mesma tivesse sido destruída por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A família de quem o Faraó disse que fosse acomodada na cidade do Gósen?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A filha de Herodias dançou para:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A grande maioria das porções do Antigo Testamento foi escrita em:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A imagem do que apareceu nos sonhos do rei Nabucodonosor?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A mãe de Receba sugeriu que ela ficasse com seus parentes por mais 10 dias antes de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "À medida que o terceiro ataque de Nabucodonosor sobre Jerusalém continuava, o que ocorria dentro da cidade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A pedido do rei Jeroboão, quem precisou disfarçar-se quando foi procurar o profeta Aías?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A qual partido religioso pertencia Nicodemos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A qual povo Deus proveu o maná?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A qual profeta uma jumenta comprimiu o pé contra o muro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A qual rei o profeta Aías deu a mensagem de que todos os homens da casa real seriam mortos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quantos discípulos Jesus instruiu para que o acompanhassem em oração no Jardim do Getsêmani?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A que animal é comparado Satanás?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A que horas do dia Jesus foi levado ao sumo sacerdote e aos anciãos e foi considerado culpado de blasfêmia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A que rei foram trazidos bugios e pavões?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Abraão deixou todos os seus bens ao morrer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Absalão deu beijos políticos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Amnon, filho de Davi, estuprou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem as esposas hetéias de Esaú trouxeram muita amargura de espírito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Deus acrescentou mais 15 anos de vida, quando esta pessoa contraiu uma doença fatal?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem deveria ser levado uma pessoa que possuísse manchas na pele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Elias desafiou no Monte Carmelo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Eliseu ajudou, enchendo várias vasilhas de azeite?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem foi oferecido, por acidente, um caldo venenoso?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Hamã ofereceu 10.000 talentos de prata, com o objetivo de exterminar os judeus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Jacó deu um beijo enganoso?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Jacó fingiu ser?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Jesus disse da necessidade em nascer de novo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Jesus pediu que fossem buscar um jumento emprestado para entrar em Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Jesus perguntou 3 vezes se esta pessoa O amava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Joabe matou para acabar com a rebelião contra o reino de Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem João Batista estava se dirigindo quando disse a frase: \"Raça de víboras, quem vos ensinou a fugir da ira vindoura?\""], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem José disse a frase: \"Vós sois espias\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Labão enganou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Maria, mãe de Jesus, visitou quando ela descobriu que estava grávida?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Noemi deu um beijo de tristeza?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o anjo Gabriel avisou que Maria foi escolhida para ser a mãe de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o Faraó nomeou como governador de todo o Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o povo pediu que libertassem a Barrabás do que a Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o profeta Eliseu orientou lavar-se 7 vezes no rio Jordão para curar-se da lepra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o rei Davi devolveu todas as propriedades pessoais de Saul?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o rei Davi, do teto de sua casa, viu banhando-se?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o rei Ezequias mostrou tolamente os tesouros do Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o rei Manassés queimou em sacrifício?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o servo de Abraão deu como agradecimento 1 argola de ouro e 2 pulseiras de ouro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem os príncipes filisteus ofereceram 1.100 moedas de prata de cada um deles?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem os príncipes filisteus pediram que conseguisse descobrir o segredo da força de Sansão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem os Reis Magos estavam procurando como o menino \"Rei dos Judeus\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem os soldados egípcios estavam perseguindo quando o Mar Vermelho dividiu-se em dois?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Rebeca ajudou a praticar uma fraude?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Rute abandonou para poder acompanhar a sogra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Samuel deu um beijo de coroação?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Sansão pediu uma filha dos filisteus, quando este foi à cidade de Timnate?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Satanás levou ao pináculo do Templo e o tentou para saltar dali?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A rainha Jezabel foi casada com o rei:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A sogra de Pedro foi curada por Jesus na cidade de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A unção e o beijo que eram dados eram sinais de que:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A vara que brotou pertencia a:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Abel e Caim tiveram mais quantos irmãos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Abraão também foi conhecido com o:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Abraão teve filhos com quantas mulheres?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Absalão era celebrado devido à:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Absalão matou Amnom pelo fato deste ter estuprado Tamar. Qual era o grau de parentesco entre Amnom e Absalão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Absalão tentou tomar à força o reino de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Adão e Eva moravam em qual jardim?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Agar era de Sara, esposa de Abraão:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Aitofel, influente conselheiro do rei Davi, desertou para o lado de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além da safra de centeio, qual outra safra dos egípcios sobreviveu quando Deus enviou as pedras de fogo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além da safra de cevada, qual outra safra dos egípcios foi destruída em decorrência da praga das pedras de fogo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além da safra de linho, qual outra safra dos egípcios foi destruída em decorrência da praga das pedras de fogo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além da safra de trigo, qual outra safra dos egípcios sobreviveu quando Deus enviou as pedras de fogo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Daniel, quantas pessoas mais foram nomeadas Presidentes do reino da Babilônia pelo rei Dario?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de incenso, quais os outros presentes dados ao menino Jesus pelos Reis Magos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Jacó do Egito, quem mais foi embalsamado de acordo com a tradição egípcia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Jambres, como era o nome do outro mago do Faraó que conseguiu imitar 2 pragas enviadas por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Janes, como era o nome do outro mago do Faraó que conseguiu imitar 2 pragas enviadas por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Jesus, quantas pessoas mais foram crucificadas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de José do Egito, quem mais foi embalsamado de acordo com a tradição egípcia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Orfa, a quem mais Noemi deu um beijo de tristeza?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Pedro, quem mais estava pescando quando ambos foram chamados por Jesus para serem Seus discípulos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de profeta, Natã também foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de rei, Melquisedeque também foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Rute, a quem mais Noemi deu um beijo de tristeza?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de sacerdote, Melquisedeque também foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de seu filho Roboão, quem mais cultuava ídolos na casa de Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Sodoma, qual foi a outra cidade que também foi destruída por Deus através de fogo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além do sumo sacerdote, quem mais presenciou Jesus ter sido culpado por blasfêmia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além dos 120 Presidentes nomeados pelo rei Dario, que cargos também foram nomeados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além dos 3 Presidentes nomeados pelo rei Dario, que outros cargos foram nomeados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além dos anciãos, quem mais presenciou Jesus ter sido culpado por blasfêmia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além dos escribas, quem mais Herodes levou consigo a fim de descobrir onde Cristo iria nascer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além dos sacerdotes, quem mais Herodes levou consigo a fim de descobrir onde Cristo iria nascer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Amnom, filho de Davi, estuprou a Tamar. Qual era o grau de parentesco entre eles?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Amnon e Sefatias foram filhos do rei:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ana emprestou seu filho a:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Anake foi o pai de uma raça de gigantes conhecida como os:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "André, apóstolo de Jesus, tinha um irmão pescador que também aceitou o chamado de Jesus. Seu nome era:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Anrão teve como filhos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes da Páscoa dos judeus, por que os judeus estavam saindo do país e indo para Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de casar-se com o rei Assuero, Ester foi criada pelo seu primo:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de desertar para o lado de Absalão, a quem o influente Aitofel servia como conselheiro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de Paulo ir da cidade de Filipos à cidade de Trôade, qual festividade foi celebrada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de ser curado de sua cegueira, o que Bartimeu estava fazendo na estrada próximo a Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de tentar tirar um argueiro do olho ne nosso irmão, o que devemos tirar de nosso próprio olho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de ungir os pés de Jesus, o que a mulher pecadora fez com os seus pés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes do povo de Israel gritar para que os muros da cidade de Jericó caíssem, qual instrumento eles tocaram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Anualmente, Pôncio Pilatos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ao final dos 10 dias que durou o perído de testes da alimentação de Daniel e seus amigos, como eles estavam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ao receber a visão de um lençol cheio de animais, o que Deus disse a Pedro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ao ver Jesus ser levado preso à presença de Pôncio Pilatos, como Judas se sentiu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Aonde a rainha de Sabá foi visitar o rei Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Aos cidadãos de Israel Absalão deu:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Apesar de Elias ter sido um profeta de Deus, quem ainda assim tentou matá-lo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Apesar de ter sido ressuscitado por Jesus, quem estava pretendendo matar Lázaro novamente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a água virar sangue, como os egípcios conseguiram água fresca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a Arca da Aliança ter sido colocada no Templo de Jerusalém, o mesmo encheu-se de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a destruição dos rebeldes, como o povo israelita reagiu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a divisão do reino, em qual cidade Jeroboão, Rei das tribos do norte, fez sua morada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a interpretação dos seus sonhos, o rei Nabucodonosor deu a Daniel qual cargo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a luta com Deus, Jacó passou a se chamar:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a luta com Deus, o que o anjo deu a Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a morte de Herodes, para onde José levou Maria e Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a morte de quem o rei Davi finalmente teve seu trono restituído?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a ressureição de Jesus, durante 40 dias ele:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a ressurreição de Jesus, quem foi subornado para dizer que o seu corpo havia sido levado embora?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a ressurreição de Jesus, quem subornou os guardas para dizer que o Seu corpo havia sido levado embora?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Absalão, quem foi o próximo rebelde a se revoltar contra o governo do rei Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Amnom, filho de Davi, ter fingido estar doente, o que aconteceu a Tamar ao visitá-lo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após deixar Raabe, onde os espias enviados por Josué se refugiaram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Deus ter descido ao Templo de Jerusalém, o que Salomão fez ao povo que estava presente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Eliseu ter morrido e sepultado, o que aconteceu ao morto que foi jogado em seu túmulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Êutico ter morrido devido à queda de uma janela ao ter adormecido, o que Paulo fêz com ele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Jael ter acolhido seu inimigo, o que ela fez a ele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Jesus ter montado no jumento, o que os discípulos colocaram à Sua frente na estrada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Jesus ter ressucitado, durante quanto tempo Ele apresentou-se vivo às pessoas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Noé ter entrado na arca, quanto tempo ainda levou para começar a chover?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após o final do Dilúvio, quanto tempo ainda demorou para a arca de Noé finalmente encostar em terra seca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após o rei Davi ter jejuado e orado por 7 dias pela vida do seu filho, o que aconteceu a este?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após o retorno do cativeiro da Babilônia, os idosos do povo judeu choraram após terem visto a reconstrução:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após o Sinédrio ter considerado Jesus culpado por blasfêmia, para onde o levaram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após os filisteus terem aprisionado Sansão, o que obrigaram-no a fazer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Pedro ter sido libertado da prisão por um anjo, Pedro foi para a casa de Maria. Ela era de João Marco:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Pedro ter sido libertado da prisão por um anjo, Pedro foi para a casa de Maria:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter arrancado as portas de entrada da cidade de Gaza, para onde Sansão as levou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter brotado, a vara de Arão produziu:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter conversado com Jesus, o que Pôncio Pilatos quis fazer com Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter matado a Amnom, para qual cidade Absalão fugiu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter passado pela Macedônia e ido à Grécia, qual era o próximo destino que Paulo planejava ir?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter passado pela Macedônia, qual apóstolo ficou 3 meses na Grécia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter passado pela Macedônia, qual foi o próximo destino de Paulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter sido cercado pelo exército babilônico pela 3ª vez, o que o rei Zedequias tentou fazer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter sido construída, que ordens o rei Nabucodonosor deu ao seu povo com relação à estátua?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter sido curado da cegueira, qual foi o novo nome de Saulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter sido nomeado governador do Egito, José possuia um cargo de alto-escalão, apenas abaixo do:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter soltado a pomba pela 3ª vez e ela não ter retornado à arca, o que Noé concluiu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter traído Jesus por dinheiro e ter-se arrependido, a quem Judas tentou devolver o dinheiro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter traído Jesus, Judas Iscariotes arrependeu-se e suicidou-se:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter vestido os panos de saco, o rei Nínive sentou sobre:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter visitado a Macedônia e a Grécia, Paulo desejava ir para a Síria. Qual motivo levou Paulo a retornar à Macedônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após terem cruzado o rio Jordão, em que local os israelitas pararam pela 1ª vez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após terem espancado Jesus, o que os soldados romanos fizeram com a cana que haviam colocado em Suas mãos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após terem visitado o menino Jesus, como eles foram alertados para que não voltassem a Herodes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após terem visitado o menino Jesus, quem foi advertido para que não fossem novamente a Herodes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Arão, chefe de uma das tribos de Israel, era o líder de qual tribo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "As cinzas do forno foram utilizadas por Moisés e Arão para enviar contra os egípcios a praga dos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "As doze tribos de Israel nasceram através do casamento da linhagem de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "As portas de qual cidade Sansão arrancou e levou para o cume de um monte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "As roupas confeccionadas com pêlo de camelo foram usadas por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Assim que Moisés desceu do Monte Sinai pela 1ª vez e viu que o povo estava adorando um ídolo, o que Moisés fez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Atalia tentou destruir o rei Jeoás. Qual era o grau de parentesco entre eles?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Através de uma estrela, os Reis Magos foram levados até:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Baal era um deus cultuado pelo povo da terra de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Balaão estava sentado em uma jumenta quando lhe apareceu:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Balaão tinha um burro que chegou a falar após ter visto:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Baraque, comandante de Israel, disse que só iria à batalha se fosse acompanhado por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Bate-Seba foi casada com o oficial:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Bate-Seba pediu ao rei Davi para que escolhesse qual filho para lhe suceder no trono real?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Betuel foi o pai de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Cafarnaum era a cidade natal dos discípulos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Cão, Sem e Jafé são filhos de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Certa noite, em uma caverna, Jacó lutou contra:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Certa vez, o ferro de um machado caiu acidentalmente em um lago. Quem orou que fez com que o ferro voltasse à tona?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com o que a cesta onde Moisés foi depositado era coberto, para que a esta não afundasse?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com o que Maria envolveu o menino Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com o que os soldados romanos bateram na cabeça de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com o que Sansão matou 1.000 filisteus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com o seu exército, Nabucodonosor derrubou os muros de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com qual deus grego Barnabé foi confundido, enquanto estava com Paulo na cidade de Listra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com qual deus grego Paulo foi confundido quanto encontrava-se na cidade de Listra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com qual idade Jeoás passou a reinar sobre a nação israelita?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com quantos dias de vida Jesus foi circuncidado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com quantos dias deveria ser circuncidado um menino recém nascido?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com que espécie de madeira foi construída a arca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com que material Noé revestiu a arca, tanto internamente quanto externamente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com quem a rainha Vasti era casada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com quem Zípora e Jetro tinham um grau de parentesco em comum?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com relação a Jesus, ao invés de quebrar as Suas pernas, o que os soldados romanos fizeram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com relação à rebelião de Corá, Datã e Abirão, que fez com que o chão os engolisse?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como as árvores utilizadas na construção do Templo de Salomão foram transportadas do Líbano para a Palestina?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como Bate-Seba respondeu à notícia de que seu marido Urias havia morrido em batalha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como Deus lidou com a rebelião de Corá, Datã e Abirão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como é conhecido o dia de descanso dos judeus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como era o nome da esposa de Áquila, que auxiliou no ministério de Paulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como era o nome da esposa do rei Acazias, que desejava matar a Elias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como Israel comemorou a passagem pelo Mar Vermelho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como João Batista morreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como o rei Davi foi punido pelo fato de ter cometido adultério e assassinato?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como o rei Davi respondeu às acusações do profeta Namã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como o rei Nabucodonosor reagiu após Deus ter dado a Daniel a interpretação correta dos sonhos do rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como os judeus fizeram a dedicação do Templo, quando o processo de reconstrução foi concluído?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como Potifar respondeu à acusação de sua esposa contra José?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como Sansão deveria ser criado por sua mãe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava a esposa de Isaque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava a filha de Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava a irmã de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava a mãe de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o 1º filho de Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o irmão de Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o irmão de Ismael?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o irmão do gigante Golias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o irmão gêmeo de Esaú?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o nome do pai de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o primeiro filho de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o principal deus da agricultura dos filisteus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o sogro de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como terminou a rebelião entre Davi e Absalão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Contra quem Absalão, filho de Davi, vingou o estupro que foi cometido contra Tamar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Cornélio, uma pessoa honrada e temente a Deus, era:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Da família de Moisés, quem era o caçula?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dalila traiu Sansão por causa de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Daniel foi levado cativo para o reino da Babilônia quando a mesma era governada por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das 10 pragas que Deus enviou ao Egito, quantas os magos do Faraó puderam imitar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das alternativas abaixo, qual delas não era uma das regiões da Palestina na época em que Jesus viveu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das alternativas abaixo, qual é o companheiro de Paulo que não o estava aguardando na cidade de Trôade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das alternativas abaixo, quem não foi filho de Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das Montanhas do Líbano foram extraídas cedro e cipreste utilizadas na construção:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das mulheres abaixo, qual delas não teve filhos com Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das mulheres abaixo, qual delas teve flhos com Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das opções abaixo, qual delas não foi utilizada na placa que foi pregada na cruz de Cristo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das vezes que Noé soltou uma pomba para verificar se havia terra seca, em qual delas a pomba trouxe um ramo de oliveira?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Davi apanhou 5 pedras no chão para matar o gigante Golias. Quantas ele usou para matá-lo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Davi foi o:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Davi teve como cunhado:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com os Dez Mandamentos, a quem devemos honrar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 2:10, quando a sabedoria adentra o coração, o que se tornará agradável para sua alma?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 2:11-12, o que uma pessoa de discrição e conhecimento será desviada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 2:7, o que é o Senhor para aqueles que andam em integridade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 2:8, o Senhor guarda o caminho da justiça e faz o que para os devotos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 29:11, o que o tolo sempre perde e o sábio retém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 3:3, o que deverá ser atado ao redor da garganta e escrito nas tábuas do coração?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 30:20, a mulher adúltera come, limpa sua boca e diz o quê?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 30:33, bater o leite produz manteiga, premer o nariz produz sangue e premer a ira produz?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 30:5, Deus é o escudo para aqueles que se refugiam nEle porque todo o Seu trabalho é:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 31:9, para quem você deveria abrir sua boca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De qual madeira era feita a Arca da Aliança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De qual nação Deus matou 185.000 quando estes estavam tentando tomar Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De qual profeta Hilquias era filho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que direção vieram os Reis Magos quando foram ver o menino Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que era feito o propiciatório da Arca da Aliança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que forma foram transportadas as árvores de cedro compradas por Salomão para a construção do Templo de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que forma Jesus morreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que forma Raquel morreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que lado do barco Jesus havia dito para que os discípulos jogassem suas redes, após uma noite inteira sem pescar nada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem era o sepulcro onde Jesus foi colocado depois de crucificado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem eram as mesas que Jesus virou no Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem Husai era amigo, e que fingiu estar apoiando Absalão apenas para ficar informado sobre os planos da rebelião?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem Jesus expulsou 7 demônios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem José, filho de Jacó, interpretou os sonhos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem o rei Acaz queria comprar uma vinha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Debaixo de que árvore Elias se sentou desanimado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Débora foi a babá de quem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Débora, a profetisa, certa vez chegou a liderar:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Débora, a profetisa, também foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dentre as alternativas abaixo, qual deles não é filho de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dentre as alternativas abaixo, qual era a alimentação que João Batista não utilizava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dentre as alternativas abaixo, qual não foi um presente dado ao menino jesus pelos reis Magos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dentre as opções abaixo, qual deles não foi apóstolo de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Depois de passar pela Macedônia, quantos meses Paulo ficou na Grécia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Depois de ter sido vendido pelos seus irmãos, José se tornou escravo em qual país?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Depois que José do Egito interpretou o sonho do Faraó, que presente ele ganhou do Faraó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Depois que um pupilo é completamente treinado, como ele será?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Deus criou o Jardim do Éden que era molhado por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Deus curou o general sírio Naamã de qual enfermidade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Devido ao saque cometido contra a cidade de Jericó, qual foi a punição imposta a Acã e sua família?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Do que a rainha Jezabel acusou Nabote, para com isso poder prender Nabote e tomar a vinha que ele tinha em suas terras?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Do que eram feitas as roupas de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Do que Sansão precisou após ter matado 1.000 homens com apenas uma única queixada de jumento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dorcas era uma mulher bondosa e caridosa que morava na cidade de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dorcas, uma mulher bondosa e caridosa, também era conhecida como:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos 10 homens que sofriam de lepra e que foram curados por Jesus, quantos deles retornaram para agradecer pela cura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos 30.000 trabalhadores que foram designados para construírem o Templo de Jerusalém, quantos trabalhavam no mês?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos amigos de Daniel, quem foi jogado em uma fornalha ardente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos filhos de Adão e Eva, Abel foi o:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos filhos de Adão e Eva, Caim foi o:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos filhos de Adão e Eva, Sete foi o:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos livros da Bíblia abaixo, qual deles não termina com um ponto de interrogação?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos livros da Bíblia abaixo, qual deles tem apenas 1 único capítulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos livros da Bíblia abaixo, qual deles tem mais de 1 capítulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos livros da Bíblia abaixo, qual deles termina com um ponto de interrogação?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos livros da Bíblia abaixos, qual deles não contém a palavra \"Deus\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante 6 dias, quantas voltas por dia o povo de Israel marchava ao redor dos muros da cidade de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante a Última Ceia, a quem Jesus ofereceu um bocado de pão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante a Última Ceia, com que objetivo Jesus ofereceu um bocado de pão a Judas Iscariotes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante a Última Ceia, que gesto Jesus efetuou para sinalizar quem seria o traidor dentre os 12 discípulos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante a Última Ceia, quem ofereceu um bocado de pão a Judas Iscariotes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante a viagem de Paulo a Roma, o que desapareceu durante muitos dias devido à forte tempestade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante o 2º ataque de Nabucodonosor à cidade de Jerusalém, quem não foi levado cativo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante o ministério de Jesus, quem governava a Galiléia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante o reinado de Ezequias no reino de Judá, o que ocorreu com o reino de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante o tempo que ficou cego, o que Paulo não fez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante os 40 dias em que jesus esteve no deserto, o que ele fez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quanto tempo Jacó concordou em trabalhar para seu futuro sogro para poder desposar Raquel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quanto tempo não chovia quando então o profeta Elias orou por chuva?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quanto tempo o rei Jeoás reinou sobre a nação israelita?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quanto tempo o Rei Nabucodonosor achava que era um animal, e agia como tal?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quanto tempo Paulo ficou cego, até ser curado por Ananias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quantos anos Jacó precisou trabalhar para seu futuro sogro para poder desposar Raquel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quantos anos o povo israelita peregrinou pelo Deserto?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante sua última semana de vida, enquanto não estava em Jerusalém Jesus estava na cidade de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ebede-Meleque, que havia salvo o profeta Jeremias de morrer em uma cisterna com lama, era:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Elias mandou matar os profetas de qual deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Elias subiu aos Céus através de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Elias teve o privilégio de comer uma refeição preparada por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Elifaz, uma das pessoas que repreendeu a Jó, era de nacionalidade:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em 1961, foi encontrada em Cesaréia uma inscrição que fazia menção de um prefeito na época de Jesus. Quem foi mencionado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em Caná ocorreu:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em Éfeso, quem se zangou com Paulo e os discípulos e instigou uma revolta contra eles?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em lugar de Isaque, que animal Deus providenciou para Abraão oferecer em sacrifício?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em Malta naufragou o navio onde estava:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual ano de seu reinado Salomão iniciou a construção do Templo de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual árvore ficou preso Absalão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual árvore Zaqueu subiu para poder enxergar melhor Jesus no meio da multidão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual cidade encontrava-se Nabucodonosor quando o rei Zedequias foi levado à sua presença para receber a sentença final?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual cidade Jesus nasceu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual cidade Maria, mãe de Jesus, morava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual cidade Nabucodonosor derrotou o rei Neco e seu exército egípcio?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual cidade os discípulos de Jesus foram chamados cristãos pela 1ª vez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual lugar estranho Jesus falou para Pedro encontrar uma moeda para pagar o imposto do Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual mar André estava pescando quando Jesus o chamou para ser discípulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual mar Pedro estava pescando quando Jesus o chamou para ser discípulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual monte Abraão quase sacrificou seu filho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Elias desafiou os sacerdotes de Baal?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual monte fixou-se a arca de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Jesus chorou sobre Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Josué pronunciou as bênçãos dadas a Israel devido à sua obediência?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Moisés passou 40 dias com Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Moisés recebeu de Deus a missão para tirar o povo de Israel da escravidão do Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Moisés viu um arbusto em chamas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte o rei Saul e seus filhos foram derrotados pelos filisteus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Salomão construiu o Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual província ocorreu o 1º milagre de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual região montanhosa foi feita uma aliança entre Jacó e Labão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual rio Jesus foi batizado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual rio João Batista batizava as pessoas para que se arrependessem e buscassem o perdão de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual rio Moisés foi colocado em uma cesta, quando bebê?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual rio o profeta Eliseu orientou Naamã se molhar 7 vezes para se curar da lepra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em quantas línguas Pôncio Pilatos escreveu na placa que pregou na cruz de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em quantas raposas Sansão amarrou fachos incediadas em suas caudas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que ano a Bíblia foi dividida em capítulos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que ano a Bíblia foi dividida em versículos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que cidade Jesus e seus pais haviam ido para a comemoração da Páscoa dos judeus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que condição física estavam Sadraque, Mesaque e Abede-Nego quando eles saíram da fornalha ardente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que local Jesus foi crucificado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que local Moisés escondeu o egípcio que havia matado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que local Moisés foi sepultado por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que monte Moisés viu a Terra Prometida?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que Monte morreu Arão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que ocasião Jesus amaldiçoou uma figueira?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que orquestra tocava Jaaziel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que resultou a falsa acusação de que José havia tentado seduzir a esposa de Potifar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em resposta aos resmungos do povo israelita pelo fato dos rebeldes terem sido destruídos, o que Deus enviou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Judas fez após os sumos sacerdotes terem recusado a devolução das 30 moedas de prata?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Judas fez depois de trair Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Lázaro, o mendigo, quis comer da mesa do homem rico?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que levou os Reis Magos até o menino Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Melquisedeque foi ao mesmo tempo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Moisés e Arão pediram ao Faraó em relação aos israelitas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Moisés encontrou no Monte Horebe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Moisés foi instruído a fazer pelo fato de estar em solo sagrado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Moisés recebeu de Deus no Monte Sinai?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Moisés viu que estava em chamas, mas que não se consumia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Nabote possuía em suas terras que o rei Acaz queria comprar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Noé construiu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Noé enviou da arca, que ao retornar trouxe um ramo de oliveira em seu bico?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o Faraó deu a José pelo fato de ter interpretado os seus sonhos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o Faraó mandou fazer que fosse feito contra todos os bebês hebreus do sexo masculino que nascessem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei babilônico Belsazar viu na parede de diferente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Davi desejava construir, mas que foi negado por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Ezequias construiu para permitir que a água fosse levada à cidade de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Ezequias tolamente mostrou aos babilônios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Jeroboão pediu à sua esposa que fizesse quando esta fosse encontrar-se com o profeta Aías?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Manassés fez no Templo de Jerusalém quando reinou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Nabucodonosor mandou construir para que todos se prostrassem e adorassem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em sua rebelião, de quem eram os 250 seguidores que morreram consumidos pelo fogo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em sua viagem à Roma, onde naufragou o navio em que Paulo viajava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em toda a Bíblia, além de Jesus quem mais jejuou 40 dias e 40 noites?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em um de seus casamentos, ao casar-se com a filha do Faraó, Salomão fez aliança com o reino:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em uma das ocasiões em que Pedro orava no telhado, que visão ele recebeu de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Enquanto estava na casa de Simão, o leproso, o que uma mulher fez com um vaso de alabastro cheio de bálsamo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Enquanto esteve na cidade de Jope, Pedro esteve hospedado na casa de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Enquanto Sansão estava com uma prostituta, o que o povo da cidade de Gaza estava fazendo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Entre as alternativas abaixo, o que não havia dentro da Arca da Aliança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Entre os filhos de Davi, qual deles não nasceu durante seu reinado em Hebrom?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Entre os irmãos Moisés, Arão e Míriã, qual dentre eles era o mais velho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Esaú vendeu seu direito de filho mais velho em troca de quê?"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Esaú, filho de Isaque e Rebeca, era:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ester casou-se com o rei persa:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ester, após ter casado com o rei Assuero, passou a ser a rainha do império:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Foi levado para o cativeiro da Babilônia:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Gamaliel foi professor do apóstolo:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Há quantas promessas na Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Herodes Agripa mandou matar os apóstolos pois sentia que o cristianismo era uma ameaça à sua religião:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Herodes decretou que todos os meninos fossem mortos com idade inferior a:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Herodias pediu a cabeça de quem a Herodes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Imediatamente antes da coroação do rei Salomão, quem pretendia governar o trono real a ser deixado por Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Incluindo Jesus, quantas pessoas jantaram com Ele na última Páscoa?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Incluindo Jesus, quantos homens foram crucificados com Ele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Isabel foi mãe de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Isaque recebe um beijo enganoso de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ismael e seu irmão Isaque nasceram com uma diferença de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Israel era composta por quantas tribos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jabal foi o pai dos que:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jacó tinha um irmão gêmeo, que se chamava:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jacó, irmão gêmeo de Esaú, nasceu segurando:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jedidias era também conhecido por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jemima era esposa de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jericó foi a primeira cidade conquistada pelos israelitas, quando estes eram comandados por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jeroboão governou as tribos de Israel do:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus chamou André para ser discípulo quando este estava:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus chamou Pedro para ser discípulo quando este estava:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus curou 10 homens que sofriam de qual enfermidade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus disse aos cambistas e àqueles que estavam vendendo que sua casa seria chamada de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus disse que após o sal ter perdido o seu gosto, o mesmo passaria a ser:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus disse que não havia vindo para chamar os justos, mas para chamar quem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus e João Batista eram, entre si:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus ensinou de que haveremos de prestar contas no dia do juízo de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus ensinou que deveríamos amar aos nossos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus expulsou os mercadores que haviam no:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus foi batizado por quem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus foi traído por Judas Iscariotes através de um:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus nos diz para não arremessar pérolas aos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus nos ensinou que devemos orar:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jó residia na terra de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jonas pregou arrependimento durante 40 dias aos cidadãos de qual cidade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jônatas matou um gigante filisteu que tinha quantos dedos nas mãos e nos pés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jônatas matou um gigante filisteu, assim como Davi. Qual era o parentesco entre eles?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jônatas teve um filho com o nome de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Joquebede tem como filhos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José foi trabalhar como escravo na casa de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José foi vendido como escravo no Egito. Qual foi o valor pago por ele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José foi vendido como escravo, ao preço de 20 barras de prata, para:\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José teve um sonho onde viu curvando-se para ele:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José teve um sonho, onde viu:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José, filho de Jacó, tornou-se um grande líder da nação:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jubal foi o pai dos que tocam:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Lídia foi a primeira mulher:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ló, sobrinho de Abraão, habitava em qual cidade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Lucas, autor do Livro de Lucas, foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Marcos, autor do Livro de Marcos, foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Maria, mãe de Jesus, e Isabel, mãe de João Batista, eram entre si:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Martinho Lutero foi o primeiro tradutor da Bíblia para a língua:\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Matusalém, o homem mais idoso da Bíblia, teve como neto:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Matusalém, o homem mais velho da Bíblia, morreu antes de seu pai (Enoque). Essa afirmação é:\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Mesaque, Sadraque e Abede-Nego foram jogados em uma fornalha ardente pelo rei da:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Miriã ficou enciumada por qual motivo?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na 1ª vez que Noé soltou uma pomba, o que ela trouxe em seu bico?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na 3ª vez que Noé soltou uma pomba, o que ela trouxe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na 5ª praga enviada por Deus ao Egito, quem foi poupado de uma pestilência muito grave?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na 7ª praga que se abateu sobre os egípcios, além das pedras de fogo Deus enviou também:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na biblioteca da Universidade de Gottingen, Alemanha, existe uma Bíblia que foi escrita em 470 folhas de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na biblioteca da Universidade de Gottingen, Alemanha, existe uma Bíblia que foi escrita em quantas folhas de palmeira?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na casa de quem Jesus teve seus pés ungidos por uma mulher?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na cidade de Jericó, em que local Raabe escondeu os espias enviados por Josué?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na cidade de Nazaré morou:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na entrada triunfal de Jesus em Jerusalém, foram estendidos ramos de:\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época de Moisés, o povo israelita era tido no Egito como um povo:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época de Moisés, quantas pragas ocorreram no Egito pelo fato do Faraó não autorizar a saída do povo hebreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época do povo israelita, Babilônia estava situada às margens do rio:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época em que Jesus viveu, a cidade de Nazaré estava localizada em qual região?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época em que Jesus viveu, a Judéia era governada por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época em que Jesus viveu, em qual província localizava-se a cidade de Caná?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época que Jesus viveu, a estrada que ligava Jerusalém a Jericó era conhecida por haver muitos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na estrada para Emaús, 2 discípulos de Jesus encontraram-se com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na estrada para qual cidade Jesus apareceu para 2 de Seus discípulos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na igreja primitiva, quem deveria ungir os enfermos com óleo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na parábola do Bom Samaritano, na estrada para qual cidade um homem havia sido surrado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na parábola do Filho Pródigo, o que fez o filho pródigo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na parábola do Filho Pródigo, o que o filho pródigo fez ao se arrepender?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na parábola do Filho Pródigo, quantos filhos tinha o homem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na presença de quem Jesus foi culpado de blasfêmia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na região montanhosa de Gileade, Jacó fez uma aliança com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na região montanhosa de Gileade, Labão fez uma aliança com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na semana da criação, em que dia Deus descansou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na visão que Deus deu ao centurião romano Cornélio, o anjo mandou buscar Pedro de qual cidade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na visão que Deus deu ao centurião romano Cornélio, qual discípulo o anjo mandou buscar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nabucodonosor era rei de qual país?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nabucodonosor mandou jogar os amigos de Daniel em uma fornalha ardente pois os mesmos se recusaram a:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nabucodonosor reconstruiu a cidade de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nas bodas de Caná, Jesus operou o 1º milagre, transformando água em:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nas bodas de Caná, quantos jarros de água Jesus transformou em vinho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nas bodas de Caná, quem pediu a Jesus que transformasse a água em vinho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nas bodas de Caná, sua mãe pediu a Jesus que:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nebo era um ídolo adotado pelos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Neustã foi o nome dado à:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ninrode, bisneto de Noé, construiu a cidade de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No 1º ataque de Nabucodonosor à Jerusalém, quem foi ajudar o reino de Judá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No 1º ataque de Nabucodonosor a Jerusalém, quem se tornou servo deste?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No 7º dia, o que Deus criou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No 8º dia de vida, o que deveria ser feito ao bebê do sexo masculino?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No cenáculo, ocorreu uma contenda entre os discípulos de Jesus sobre quem dentre eles era o:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No cenáculo, pelo fato de Jesus estar ciente de que em breve iria sofrer uma traição, o seu espírito estava:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No cenáculo, por que Jesus disse que estava com o espírito perturbado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No cenáculo, qual foi o motivo que gerou uma contenda entre os discípulos de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No decreto baixado por Nabucodonosor, o que aconteceria se alguém não louvasse o Deus de Sadraque, Mesaque e Abede-Nego?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No dia seguinte à sua entrada triunfal em Jerusalém, que espécie de árvore Jesus amaldiçoou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No jantar oferecido por Simão, o leproso, quem mais estava presente neste Jantar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No livro de Josué, Sesai, Aimã e Talmai eram filhos de quem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No Monte das Oliveiras, Jesus chorou pela cidade de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No sonho de José, para onde Deus o instruiu a levar Maria e o menino Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No túmulo de quem um morto foi jogado e reviveu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No vale de Tofete, o povo hebreu oferecia sacrifícios vivos de crianças ao deus:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O 1º filho de Abraão com Sara se chamou:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O altar de Moleque, profanado por Josias através da queima de ossos humanos, situava-se no:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O anjo Gabriel comunicou à Maria que ela:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O apóstolo Paulo foi morto:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O apóstolo Tiago foi morto:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O bezerro de ouro construído por Arão foi confeccionado a partir de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Dilúvio durou quantos dias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O filho do rei Davi morreu pelo fato deste ter:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O gigante Golias foi morto por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Gólgota foi o local onde:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O imperador Nero mandou decapitar o apóstolo:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Mar Morto ficava em qual dos reinos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Mar Vermelho foi aberto e dividido em 2 partes para permitir que o povo hebreu escapasse:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O menino Jesus nasceu em um:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Monte Carmelo ficava na tribo israelita de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Monte Hermom marcava ao norte a fronteira de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O nome de qual Sumo Sacerdote significava \"sumo, altíssimo\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Novo Testamento foi escrito em:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O oficial Urias morto em batalha foi casado com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O povo pediu a Pôncio Pilatos que soltassem Barrabás ao invés de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O profeta Aías foi consultado pelo rei Jeroboão para saber sobre:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O profeta Namã questionou o rei Davi pelo fato deste ter mantido relações sexuais com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O profeta Zacarias foi o pai de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O profeta Zacarias impulsionou o povo judeu para que terminasse a construção:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que a filha do Faraó encontrou preso junto aos juncos do rio Nilo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que a mulher sunamita e seu marido ofereceram a Eliseu quando este os estava visitando?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que a multidão gritou para Pôncio Pilatos após ele ter apresentado Jesus à esta?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Absalão cortava no fim de cada ano?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceria aos animais se por ventura eles tocassem o monte Sinai no 3º dia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Bate-Seba quando seu período de luto por Urias terminou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Eliseu após ter sido oferecido ao mesmo um caldo venenoso por acidente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Êutico após este ter adormecido enquanto ouvia a mensagem de Paulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Êutico após ter caído de uma janela pelo fato de ter adormecido enquanto Paulo pregava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Jesus após os 2 discípulos O terem reconhecido após Sua ressurreição?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Judas Iscariotes imediatamente após ter recebido um pedaço de pão diretamente de Jesus na Última Ceia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Raquel, esposa de Jacó, após ter dado a luz a Benjamim?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu ao Egito pelo fato do Faraó ter negado a saída do povo hebreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu ao rei Davi com a morte de Absalão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu com a mentira de que \"o corpo de Jesus foi roubado pelos discípulos\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu com as rãs, no final da 2ª praga enviada por Deus contra os egípcios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu com os 250 seguidores de Corá, em sua rebelião?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu com Saulo depois de seu encontro com Jesus na estrada para Damasco?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu quando a esposa de Jeroboão entrou em sua casa após ter retornado da consulta ao profeta Aías?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu quando Jesus disse aos discípulos que jogassem suas redes do lado direito do barco?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu quando Jesus morreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Ana fazia todos os anos para seu filho Samuel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Arão fez para o povo israelita enquanto Moisés estava no monte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Arão possuía que havia brotado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Ararat, Sinai e Nebo têm em comum?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que as esposas hetéias de Esaú levaram para Isaque e Rebeca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que cada chefe das tribos de Israel possuía?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que César Augusto decretou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Davi ajuntou em um riacho próximo, antes de sua batalha contra Golias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Deus disse a Moisés para tirar, quando este viu a sarça em chamas que não se consumia pelo fogo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Deus fez aos 185.000 que estavam acampados ao redor da cidade de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Deus fez no 7º dia da criação?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que devemos fazer com aqueles que nos amaldiçoam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que devemos fazer com aqueles que nos maltratam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que devemos nos vestir para nos proteger contra as tentações de Satanás?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que dizia a placa que foi pregada na cruz de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Eliseu fez para transformar o caldo venenoso novamente comestível?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que En-dor era?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que era incomum na sarça em chamas que Moisés viu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Esaú vendeu a Jacó, seu irmão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Esaú vendeu em troca de um ensopado?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que estava dentro da Arca da Aliança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Ezequias, rei de Judá, sabiamente retirou de seu reino?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que foi pregado na cruz acima da cabeça de Jesus Cristo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Golias disse a Davi quando viu o cajado na mão de Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que guiou os reis Magos em sua jornada a partir do oriente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que houve durante as últimas 3 horas em que Jesus esteve crucificado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jacó comprou de seu irmão, Esaú?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jacó tomou de Esaú?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus disse à mulher pecadora, em resposta pelo fato da mesma ter-lhe ungido seus pés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus disse quando Ele apareceu para os discípulos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus disse que as pessoas haviam transformado o Templo de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus disse que havia superado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus ensinou que acontecerá à uma casa ou cidade que estiver dividida?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus ensinou que devemos fazer quando forçados a andar 1 milha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus fez para ensinar os seus discípulos sobre servir ao próximo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus instruiu a seus discípulos a dizerem se alguém se recusasse a emprestar o jumento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus nos diz para não arremessar aos porcos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus nos ensinou se alguém nos pede nossa camisa?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus nos instruiu a fazer quando nos batem na face direita?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus oferecia para aqueles que o seguiam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Joabe fez a seu irmão enquanto o beijava?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jônatas foi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que José disse ao Faraó sobre o significado dos sonhos que este tivera?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que José fez com seus irmãos por 3 dias, quando estes foram comprar grãos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que José ganhou de seu pai que deixou seus irmãos com muito ciúme?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que José, filho de Jaco, interpretou para o Faraó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Josué enviou para a cidade de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o servo de Abraão deu a Rebeca como agradecimento, próximo ao poço?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que ocorreu durante o reinado de Oséias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os apóstolos deveriam fazer se uma casa ou cidade não os recebesse?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os discípulos de Jesus fizeram ao verem Jesus ser levado preso pelos soldados romanos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os filisteus colocaram dentro da Arca da Aliança quando a devolveram aos israelitas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os irmãos de José foram fazer no Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os israelitas fizeram a Jericó após a queda do muro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os israelitas fizeram para derrubar as muralhas de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os outros 2 Presidentes nomeados pelo rei Dario sentiam em relação ao cargo de Daniel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os pastores fizeram logo após terem recebido a notícia do nascimento do menino Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os soldados romanos disseram a Jesus quando colocaram a coroa de espinhos sobre Sua cabeça?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os soldados romanos faziam para apressar a morte das pessoas crucificadas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os soldados romanos fizeram com Jesus enquanto batiam-No com a cana em sua cabeça?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Pedro encontrou dentro da boca de um peixe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Pedro, Tiago e João fizeram como resposta após Jesus tê-los instruídos para vigiarem no Jardim do Getsêmani?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que pertencia a Esaú que lhe foi tomado por seu irmão Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Pôncio Pilatos disse quando trouxe Jesus do Pretório e O apresetou à multidão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Pôncio Pilatos fez enquanto disse: \"Sou inocente do sangue deste homem\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Raabe fez descer quando os israelitas invadiram a cidade de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Raabe pediu aos espias em troca de sua colaboração em escondê-los?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que representavam os 5 camundongos de ouro que foram colocados pelos filisteus dentro da Arca da Aliança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Rubens, o filho mais velho de Jacó, perdeu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Salomão construiu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Sansão amarrou nas caudas de 300 raposas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Sansão e seus pais encontraram quando estavam a caminho de Timnate?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Sansão fez ao leão com o qual lutou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Sansão fez com a queixada de um jumento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que se apossou de Sansão quando este encontrou-se com um leão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que siginica o nome de Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que significavam os sonhos do Faraó do Egito, interpretados por José?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que um jovem chamado Êutico estava fazendo enquanto Paulo estava dando uma mensagem em Trôade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Acabe foi morto pelo fato de ter sido alvo ao acaso de uma:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Davi viajou pelo Monte das Oliveiras pois estava fugindo:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Ezequias construiu um túnel para abastecer de água a cidade de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Herodes Agripa I mandou decapitar à espada o apóstolo:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Nabucodonosor mandou chamar magos e adivinhos para decifrar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Nabucodonosor viu uma grande estátua quando:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei persa Dario jogou Daniel em uma cova infestada de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O sacerdote Zadoque ungiu qual rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Templo de Jerusalém encheu-se de uma nuvem após ter sido colocada:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Abraão nasceu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde aconteceu o primeiro milagre de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde estava a força de Sansão:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Êutico estava sentado e caiu após ter adormecido enquanto ouvia a mensagem de Paulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Felipe encontrou o eunuco etíope ao qual batizou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde foi celebrada pela 1ª vez a Páscoa?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jesus foi preso?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jesus foi rejeitado pela 1ª fez, quando iniciou suas orações?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jesus pediu aos seus discípulos que tomassem um jumento emprestado para entrar em Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jesus se encontrava quando foi preso pelos soldados romanos, a mando dos líderes religiosos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jesus se encontrava quando Satanás o tentou a saltar, informando que os anjos de Deus o segurariam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jonas passou 3 dias e 3 noites?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Moisés recebeu as tábuas dos 10 Mandamentos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde o anjo Gabriel comunicou a Zacarias de que ele teria um filho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde o profeta Jeremias foi atirado para morrer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde o rei de Babilônia mandou jogar os amigos de Daniel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde os discípulos foram chamados de cristãos pela primeira vez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde os Reis Magos estavam procurando o bebê que nasceu \"Rei dos Judeus\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Paulo foi proclamado publicamente Rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Pedro estava quando ele cortou a orelha de um homem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Sansão construiu o Templo de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os 10 Mandamentos dados por Deus a Moisés foram escritos em:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os anciãos da igreja primitiva deviam ungir os enfermos com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os guardas que estavam guardando o sepulcro de Jesus receberam uma grande quantia de dinheiro para dizer:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os israelitas, em sua peregrinação pelo deserto, foi provido por Deus com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os livros de Mateus, Marcos, Lucas e João também são conhecidos como:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os muros de qual cidade caíram quando os israelitas gritaram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os piolhos que Deus havia enviado aos egípcios eram feitos:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os Presidentes invejosos enganaram ao rei Dario, fazendo-o assinar um decreto que duraria:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os primeiros filhos de Jó foram mortos através de um:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os raptores de Jesus vendaram-no e disseram para Ele fazer o quê?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para a construção do Templo de Deus em Jerusalém, o que Salomão contratou de Hirão, rei de Tiro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para a construção do Templo de Jerusalém, qual rei forneceu a Salomão árvores de cedro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para ajudar uma viúva pobre, Eliseu pediu à ela tomasse emprestadas várias vasilhas, que foram enchidas com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para capturar Elias, o rei Acazias enviou:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para causar os tumores na 6ª praga a ser enviada contra os egípcios, Moisés e Arão foram instruídos por Deus a usar:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para não ir à Nínive dar a advertência final, Jonas se escondeu em um:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para obrigar o povo a prestar obediência à sua autoridade, o rei Nabucodonosor construiu:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para onde Abraão enviou Eliezer em busca de uma esposa para Isaque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para onde Jonas foi após ter sido vomitado pelo grande peixe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para onde o profeta Isaías predisse que os tesouros do Templo seriam levados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para onde os porcos que receberam a legião de demônios expulsos por Jesus se atiraram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para onde Sansão foi levado após ter sido cegado pelos filisteus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para poder enxergar melhor a jesus no meio da multidão, Zaqueu subiu em uma:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para proteger Moisés, onde sua mãe o escondeu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para provocar a profanação do altar eregido ao deus Moleque, o que Josias queimou neste altar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para qual cidade Josué enviou espias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para qual cidade os reis Magos foram conduzidos por uma estrela?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para qual país Daniel foi levado como cativo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para qual país foi Abraão durante a fome?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para que região Moisés fugiu após ter matado o egípcio?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para se apresentar a Isaque, seu futuro marido, Rebeca foi até:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para ter certeza de que o gigante Golias estava morto, o que Davi fez após ter jogado a pedra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para tirar a força de Sansão, Dalila:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Paulo ficou cego enquanto caminhava em qual estrada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Paulo foi curado da sua cegueira por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pedro, apóstolo de Jesus, tinha um irmão pescador que também aceitou o chamado do Mestre. Seu nome era:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pelo fato de Mefibosete ser o último descendente da casa de Saul, o que o rei Davi lhe devolveu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pelo fato de ter olhado para trás desobedecendo à instrução divina enquanto fugiam, em que a esposa de Ló foi transformada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pelo que cada árvore é conhecida?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pôncio Pilatos foi governador de qual região, na época que Jesus viveu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pôncio Pilatos ordenou que Jesus fosse:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por causa do decreto de César Augusto, José e Maria precisaram mudar-se para:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por causa do pecado de Acã, quantos homens de Josué morreram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por ciúmes e ódio, os irmãos de José o venderam à uma caravana como:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por dinheiro, Judas Iscariotes traiu a:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por onde os israelitas vagaram durante 40 anos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por qual Monte o rei Davi passou em sua fuga de seu filho rebelde?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por qual motivo Daniel não se alimentava com os alimentos que eram oferecidos na mesa do rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto anos aproximadamente o povo israelita foi escravo do povo egípcio?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto anos Moisés viveu em Midiã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto Moisés foi escondido por sua mãe, enquanto era bebê?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo Absalão refugiou-se na cidade de Gesur, pelo fato de ter matado a Amnom?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo durou o período de teste da alimentação de Daniel e seus amigos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo Jonas ficou preso dentro da barriga de um grande peixe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo o gigante Golias provocou os israelitas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo o povo de Nínive recebeu as advertências de Jonas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo o rei Davi jejuou e orou para que Deus mantivesse seu filho vivo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo os espias enviados por Josué ficaram escondidos em um monte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quantos anos Daniel e seus amigos deviam ser educados no serviço do rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quantos anos José ficou na prisão antes do Faraó chamá-lo para interpretar seus sonhos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quantos dias durou a praga enviada por Deus contra os egícpios que transformava a água em sangue?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que Daniel foi atirado na cova dos leões?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que Jesus nasceu em um estábulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que José e Maria precisaram viajar para Belém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que Nadabe e Abiú morreram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que o faraó mandou matar todos os bebês hebreus do sexo masculino que nascessem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que os irmãos de José decidiram vendê-lo como escravo por 20 moedas de prata?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que os irmãos de José o venderam como escravo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que Pôncio Pilatos ordenou a colocação de guardas no sepulcro de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que Rubens, o filho mais velho de Jacó, perdeu a sua primogenitura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quem um homem cego não pode ser guiado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por várias vezes, quem sofreu várias tentativas de assassinato por parte de Saul, rei de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque Deus pediu a Moisés para que tirasse as sandálias quando este viu a sarça ardente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque Deus santificou e descansou no 7º dia da semana da criação?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque dos 30.000 trabalhadores designados para construítem o Templo de Jerusalém, apenas 10.000 trabalhavam no mês?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque foi preciso que um anjo retirasse a pedra do sepulcro de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porquê Hamã ofereceu 10.000 talentos de prata ao Rei Assuero?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque Nabote não queria vender ao rei Acaz a vinha que havia em suas terras?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque Saul desejava matar a Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque um homem morte foi atirado no túmulo de Eliseu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Próximo a qual cidade o cego Bartimeu teve sua visão restabelecida por Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais discípulos receberam a orientação para que orassem junto com Jesus no Jardim do Getsêmani?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais eram os nomes dos magos do Faraó que conseguiram imitar 2 pragas enviadas por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais foram as primeiras palavras do anjo para os pastores que receberam as Boas Novas do nascimento do menino Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais foram as safras da cultura egípcia que foram destruídas, pelo fato de Deus ter enviado as pedras de fogo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais foram as safras da cultura egípcia que sobreviveram às pedras de fogo enviadas por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais personagens bíblicos jejuaram 40 dias e 40 noites?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual a mulher que acolheu o seu inimigo e depois o matou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual animal doméstico não é mencionado na Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual animal feriu Paulo, porém seu veneno não fez efeito algum?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual animal Satanás utilizou para enganar a Eva no Jardim do Éden?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual anjo disse a Zacarias que ele teria um filho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo converteu Lídia, a 1ª mulher convertida na Europa?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo de Jesus encontrou um eunuco etíope e o batizou na estrada para Gaza?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo de Jesus estava preso entre 2 guardas a prisão, e foi libertado por um anjo enviado por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo de Jesus tinha como profissão coletor de impostos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo escreveu a Epístola aos Romanos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo foi confundido pelos gregos como sendo o deus Mercúrio?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo foi morto decapitado:"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo queria prosseguir sua viagem para a Síria, mas que foi obrigado à retornar à Macedônia pois havia uma cilada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo ressuscitou um jovem chamado Êutico, que morreu após ter caído de uma janela ao adormecer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo também era conhecido por Dídimo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo traiu Jesus por dinheiro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual cidade Abraão pediu a Deus para não ser destruída?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual cidade do Egito disse Faraó a José para acomodar sua família?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual cidade também era conhecida por haver muitos gigantes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual comandante de Israel que disse que só iria à batalha se uma mulher fosse com ele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual comemoração Jesus e seus pais participavam anualmente em Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual deficiência física Jônatas tinha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual deficiência física Mefibosete possuía?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual destas tribos não pertencia às 12 tribos de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual discípulo recebeu a visão de um lençol cheio de animais?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual discípulo ressuscitou Dorcas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual discípulo teve sua sogra curada por Jesus na cidade de Cafarnaum?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual discípulo traiu Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos amigos do rei Davi fingiu estar apoiando Absalão apenas para ficar informado dos acontecimentos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos apóstolos de Jesus era denominado Zelote?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos apóstolos foi mordido por uma cobra, porém não sofreu mal nenhum?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos discípulos de Jesus caminhou sobre a água?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos discípulos de Jesus cortou uma orelha dos algozes que vieram prender Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos filhos de Davi estuprou Tamar, sua meia-irmã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos filhos de Davi se rebelou contra o pai e tentou tomar o trono à força?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos filhos de Davi se vingou pelo fato de seu irmão Amnom ter estuprado sua própria meia-irmã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos livros abaixo não é considerado com um dos livros dos Evangelhos de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é a forma hebréia do nome do profeta Zacarias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o 5º mandamento de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o 6º mandamento de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o 7º mandamento de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o 8º mandamento de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o 9º mandamento de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o grau de parentesco entre Jetro e Zípora?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o grau de parentesco entre José do Egito e Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o grau de parentesco entre Salomão e Roboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o livro mais antigo da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o maior capítulo da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o maior livro da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o maior versículo da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o menor capítulo da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o menor lívro da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o menor versículo da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome da babá de Rebeca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome da cobertura da Arca da Aliança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome da primeira mulher?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome do anjo que avisou Maria de que ela iria ser a mãe de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome do filho de Ana que foi entregue ao Sumo Sacerdote Eli para ser cuidado por este?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome do filho de Ana, que foi dedicado ao serviço de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome do temanita que repreendeu a Jó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome do vale próximo a Jerusalém onde o povo sacrificava suas crianças ao deus Moloque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o salmo onde todos os versos terminam com o estribilho \"Porque a Sua misericórdia dura para sempre.\"?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o significado do nome de Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o significado do nome do Sumo Sacerdote Eli?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a alimentação básica de João Batista no deserto?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a altura aproximada do gigante Golias morto por Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a altura da arca de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a altura da estátua de ouro construída pelo rei Nabucodonosor?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a capital do reino de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a cidade natal do discípulo Pedro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a cidade que Deus mandou Jonas advertir sobre seus pecados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a cor da corda que Raabe fez descer quando os israelitas invadiram a cidade de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a distância aproximada entre a cidade de Emaús e Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a enfermidade que o comandante Naamã era acometido?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a enfermidade que o sacerdote deveria testemunhar, para definir se a pessoa deveria ou não ser apartada da família?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a finalidade da moeda que Pedro encontrou dentro da boca de um peixe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade apriximada de Jesus quando começou a pregar seu ministério publicamente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Abraão quando Isaque nasceu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Ezequias quando este se tornou rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Jesus quando seus pais se perderam do mesmo, e o encontraram ensinando no Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de José quando este recebeu do Faraó um anel pelo fato de ter interpretados os seus sonhos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Moisés quando o mesmo matou um egípcio pelo fato deste estar surrando um hebreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Noé quando a arca foi concluída?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Sara quando Isaque nasceu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a nacionalidade da mulher que estava tirando água do poço e deu a Jesus para beber?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a nacionalidade de 11 dos 12 apóstolos de Jesus?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a nacionalidade de Dalila, esposa de Sansão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a nacionalidade de Ebede-Meleque, o eunuco que havia salvo o profeta Jeremias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a nacionalidade do gigante Golias morto por Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de André antes de se tornar apóstolo de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de Demétrio que havia instigado uma revolta entre os próprios discípulos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de José, pai de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de Mateus, um dos apóstolos de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de Pedro antes de se tornar apóstolo de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de Raquel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de Zaqueu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a punição imposta pelo rei Dario caso alguém não obedecesse ao decreto por ele assinado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a punição imposta pelo rei Nabucodonosor caso as pessoas a quem ele chamou não decifrassem os seus sonhos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a sentença do anjo da morte que iria passar sobre o Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a tarefa principal de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o antigo nome de Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o antigo nome de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o antigo nome de Paulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o apóstolo de Jesus responsável pelas finanças?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o comprimento da arca de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o discípulo mais jovem de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o filho de Salomão que cultuava ídolos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco de Jetro para com Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco de Zípora para com Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Abraão e Harã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Absalão e Amnon?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Arão e Anrão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Elcana e Jeroão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Herodes, o Grande, e Herodes Agripa?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Jacó e Maria, mãe de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Jesus e Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Joás e Gideão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Jônatas e Saul?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Labão e Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Lázaro e Marta?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Mardoqueu e Ester, a esposa do rei Assuero?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Orfa e Ester?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Orfa e Noemi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Orfa e Rute?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Rute e Noemi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Rute e Orfa?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o irmão de Maria e Marta que Jesus ressuscitou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome babilônico de Azarias, amigo de Daniel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome babilônico de Daniel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome babilônico de Hananias, amigo de Daniel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome babilônico de Misael, amigo de Daniel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da cidade do rei Ogue que era cheia de gigantes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da esposa de Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da esposa de Herodes Antipas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da esposa de Jó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da esposa de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da esposa de Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da irmã de Raquel, esposa de Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do apóstolo que estava pregando a mensagem quando Êutico caiu da janela pois estava dormindo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do filho de Rute e Boaz?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do marido de Isabel, mãe de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do marido de Maacá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do pai de Abraão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do pai de Moisés e de Arão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do pai de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do pai do profeta Zacarias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do poço de onde a mulher samaritana com quem Jesus falou estava tirando água?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o objetivo da mãe de Moisés ao tê-lo colocado em um cesto e deixado à deriva no rio Nilo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o objetivo de Saulo quando este ficou cego quando dirigia-se para a cidade de Damasco?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o outro nome de Jetro, sogro de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o outro nome pelo qual o apóstolo Tomé também era conhecido?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o reinado ocupado por Salmanezer quando levou cativo o povo de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o significado do nome de Urias, leal oficial do exército de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o sobrenome de Herodes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual festividade celebra o final da vida de escravidão do povo israelita no Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual filho de Davi o estava perseguindo para matá-lo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual filho de Davi refugiou-se na cidade de Gesur após ter matado Amnom?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual filho de Jacó perdeu a sua primogenitura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual filho do rei Azarias governou em seu lugar após a sua morte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 1ª praga que Deus enviou aos egípcios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 2ª praga que Deus enviou contra os egípcios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 3ª praga enviada por Deus ao povo egípcio?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 4ª praga que Deus enviou ao Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 5ª praga que Deus enviou ao Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 6ª praga que Deus enviou contra os egípcios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 7ª praga enviada por Deus contra os egípcios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a acusação do sumo sacerdote contra Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a árvore cuja semente Jesus usou para ensinar uma lição de fé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a causa que levou com que Israel fosse levado cativo pelos assírios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a desculpa utilizada por Amnom, filho de Davi, para que Tamar, sua meia-irmã, viesse à sua casa e a estuprasse?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a Epístola que o apóstolo Paulo escreveu enquanto esteve viajando pela Grécia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a mensagem que o profeta Aías disse à esposa de Jeroboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a pior rainha do reino de Isarel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a primeira cidade conquistada pelos israelitas quando estes estavam sob a liderança de Josué?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a proclamação do rei de Níníve para que todas as pessoas fizessem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a profecia que o profeta Isaías disse ao rei Ezequias com relação aos tesouros do Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a profissão de Ninrode?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a profissão de Zacarias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a quantidade de seguidores de Corá que foram consumidos pelo fogo em sua rebelião?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a resposta do rei Davi à tentativa de rebelião promovida por Absalão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a única mulher na Bíblia que teve a sua idade mencionada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a única ocasião registrada no Novo Testamento em que Jesus cantou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o 1º discípulo a perder sua vida pelo fato de estar evangelizando?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o 1º discípulo morto a mando de Herodes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o 1º milagre que Jesus realizou em público?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o decreto assinado pelo rei Dario vigente por 30 dias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o fato que levou o rei Davi a ser questionado pelo profeta Namã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o fato que permitiu que os 2 discípulos de Jesus que caminharam com Ele na estrada de Emaús O reconhecessem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o filho de Jacó que tornou-se um grande líder da nação egípcia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o filho do rei babilônico Nabucodonosor?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o filho primogênito do rei Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o filho que Davi não teve com Bate-Seba?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o grau de parentesco entre Moisés e Anrão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o grau de parentesco entre Moisés e Joquebede?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o homem mais velho da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o melhor amigo de Jônatas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o motivo que levou Deus a optar pela destruição da Terra através de um dilúvio?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o nome que o rei Davi e Bate-Seba deram ao segundo filho que tiveram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o novo mandamento que Jesus ensinou aos seus discípulos no cenáculo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o objetivo de Josias em queimar ossos humanos no altar eregido ao deus Moleque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o outro nome que Deus deu a Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o pecado que Davi cometeu com Bate-Seba?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o período de reinado de Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o primeiro apóstolo a morrer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o primeiro discípulo a perder a sua vida?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o profeta que antecedeu a João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o profeta que apareceu após Malaquias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o profeta que era conhecido como o \"profeta que chorava\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o profeta que sucedeu a Samuel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o rei mais cruel que o povo de Israel já teve como governante?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o rei que destruiu os muros de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o último grande líder da nação babilônica?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o último livro da Bíblia a ser escrito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o único dos doze apóstolos que não era Galileu?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual ídolo foi a principal deusa de Tiro, conhecida também como \"A Dama do Mar\" no livro dos judeus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual ídolo representava o deus do conhecimento e da literatura de Babilônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual ídolo também era conhecido por Tiro como a \"Deusa do Mar\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual imperador Romano decretou que todos deveriam pagar impostos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual imposto deveria ser pago com a moeda que Pedro encontrou dentro da boca de um peixe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual instrumento era tocado pela orquestra criada pelo rei Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual juiz de Israel tinha 30 filhos que cavalgavam 30 jumentos?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual mandamento nos instrui a respeitar a vida do próximo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual mar dividiu-se em dois para permitir que o povo hebreu escapasse da perseguição do Faraó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual Monte marcava ao norte os limites de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual mulher liderou um exército em uma batalha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual nação o rei Sisaque governava quanto atacou Jerusalém e saqueou o Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual nação tomou o povo israelita como escravo por aproximadamente 400 anos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o homem que, depois de morto, matou mais pessoas que em sua vida?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o nome do filho do rei Ezequias que ocupou o trono real após sua morte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o nome do jovem que estava dormindo sentado em uma janela enquanto Paulo pregava a mensagem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o nome do pai de Rebeca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o nome que deram à serpente de bronze levantada por Moisés no deserto?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o percentual do Novo Testamento que foi escrito em grego?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o rei que adivinhava pelas nuvens, praticava feitiçaria e queimou o seu filho em sacrifício?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual planta deveria ser utilizada para aplicar o sangue do cordeiro nos batentes da porta das casas dos israelitas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual povo considerava Dago como o principal deus da agricultura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual povo depositou na Arca da Aliança 5 camundongos de ouro quando a mesma foi devolvida aos israelitas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual povo tinha como divindade o deus Moloque, que exigia o sacrifício de crianças?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual povo, provido por Deus, peregrinou pelo deserto durante 40 anos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta a rainha Jezabel tentou matar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta antecedeu a Namã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta disse a mensagem ao rei Jeroboão de que todos os filhos da casa real seriam mortos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta foi atirado em uma cisterna para afundar na lama e ser deixado lá para morrer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta foi chamado para dizer sobre a condição de saúde do filho de Jeroboão, quando este adoeceu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta foi o pai de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta impulsionou os judeus para que terminassem a reconstrução do Templo, após o retorno da Babilônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta predisse ao rei Ezequias que os tesouros do Templo seriam levados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta se inspirava ouvindo música?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta transformou-se em sacerdote?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profissão Jesus aprendeu de seu pai?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rainha foi visitar o rei Salomão em Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei a rainha de Sabá foi visitar em Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei antecedeu o governo de Belsazar no império Babilônico?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei antecedeu o reinado de Roboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei Atalia tentou destruir?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei babilônico teve sonhos onde Daniel afirmou que apenas Deus era capaz de interpretá-los?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei babilônico travou uma batalha contra o rei Neco do Egito e derrotou-o na cidade de Carquêmis?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei construiu altares a Baal e erigiu uma estátua da deusa Asera no Templo de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei da Assíria levou cativo todo o povo do reino do norte de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei da Babilônia mandou jogar os amigos de Daniel em uma fornalha ardente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei da Babilônia mandou jogar os amigos de Daniel na cova dos leões?"], ["LIMIT", 1]] Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei de Israel tinha 700 esposas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei de Judá construiu um túnel que permitiu que fosse trazida água para a cidade de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei de Judá foi capturado na cidade de Jericó, após ter escapado do 3º ataque do rei Nabucodonosor?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei devolveu a Mefibosete todas as propriedades pessoais de Saul?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei do Egito atacou Jerusalém e saqueou o Templo, roubando assim seus tesouros?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei egípcio travou uma batalha contra o rei Nabucodonosor e foi derrotado na cidade de Carquêmis?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei foi morto por uma flecha atirada ao acaso?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei foi questionado pelo profeta Namã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei juntamente com seus filhos foram derrotados pelos filisteus no Monte Gilboa?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei mandou buscar o profeta Aías quando seu filho adoeceu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei mandou chamar adivinhos e magos para decifrar os sonhos que tinha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei mostrou os tesouros do Templo aos babilônios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei o sacerdote Samuel ungiu como rei de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei pagava 150 ciclos de prata por um cavalo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei persa jogou Daniel na cova dos leões?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei queria capturar Elias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei sucedeu o governo de Nabucodonosor no império Babilônico?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei viajou pelo Monte das Oliveiras fugindo do seu filho rebelde?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei, ao ter adoecido, mandou que fosse consultado o deus Baal-Zebube, para ver se sararia da sua doença?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual sacerdote ungiu Davi como o novo rei de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual sacerdote ungiu Salomão como rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual salmo possui 5 versículos exatamente iguais?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual servo de Deus teve os seus filhos mortos por um tufão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual tio criou Ester como filha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando 3 mil homens amarraram Sansão, o que eles fizeram com ele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando a Babilônia era governada pelo rei Belsazar, qual povo estava prestes a conquistar a Babilônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando a cabeça de Sansão foi raspada, por que ele não conseguiu vencer os filisteus como nas 3 vezes anteriores?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando a cruel rainha Jezabel morreu ela foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando a mulher pecadora derramou lágrimas sobre os pés de Jesus, com o que ela secou seus pés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando a torre de Babel estava sendo construída, o que Deus fez às pessoas que a estavam construindo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando as obras do Templo foram interrompidas por causa da oposição, quem decretou que o trabalho fosse retomado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Dario tornou-se rei da Babilônia, para qual posição Daniel foi nomeado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Davi desafiou Golias com sua funda e algumas pedras, o que Davi levava consigo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Davi matou o gigante Golias, Davi era:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Davi viu Bate-Seba do teto de sua casa, o que ela estava fazendo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Deus apareceu para Salomão em sonho e permitiu que ele pedisse o que quisesse, o que Salomão pediu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Elias foi levado para os Céus por Deus ainda vivo, o que Elias era:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Elias, o profeta, começou a orar ao lado de um lago, o que começou a flutuar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Ezequias contraiu uma doença fatal, quantos anos de vida Deus lhe acrescentou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando foi feita a primeira tradução completa da Bíblia para o inglês por Wycliffe?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jeoaquim reinava em Judá, quem atacou Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus chegou a Betfagé, enviou seus discípulos para a aldeia mais próxima para pedir emprestado um:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus e seus discípulos chegaram ao Jardim do Getsêmani, o que Jesus pediu aos seus discípulos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus estava indo para o Gólgota, quem carregou um trecho a cruz de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus estava jantando na casa de um dos fariseus, o que uma mulher fez por Ele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus estava no Jardim do Getsêmani, o que lhe ocorreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus expulsou os demônios de um homem que vivia no cemitério, para onde a legião foi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus foi preso, o que Pedro fez:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus foi ungido com o bálsamo, qual dos discípulos se indignou por esse ato?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus lavou os pés dos discípulos, o que Ele pretendia ensinar aos mesmos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus se aproximava de Jerusalém montado no jumento, o que os fariseus pediram a Ele fazer com a multidão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus se aproximava de Jerusalém montado no jumento, quem pediu a Ele que repreendesse a multidão que O saudava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus transformou água em vinho, qual evento estava sendo celebrado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jonas foi jogado no mar, Deus o salvou de se afogar enviando:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando José do Egito morreu, seu corpo foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando José foi vendido como escravo, quantas moedas de prata os irmãos de José receberam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Judas percebeu que Jesus havia sido condenado pelo Sinédrio, o que ele fez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Maria e José estavam procurando a Jesus quando Este tinha apenas 12 anos, onde finalmente o encontraram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Maria foi visitar sua prima Isabel, quanto tempo ela ficou ausente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Moisés desceu do Monte Sinai pela 1ª vez com as tábuas da lei de Deus, o que Moisés viu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Moisés era bebê, ele foi colocado por sua mãe em um cesto, e deixado no:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Moisés viu um egípcio surrando um hebreu, o que Moisés fez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Noé enviou da arca uma pomba, o ramo de qual árvore ela trouxe em seu bico?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Noé enviou uma pomba da arca, o que ela trouxe em seu bico?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o anjo da morte passou pelo Egito, o sangue de qual animal foi colocado nos batentes da porta?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o Espírito do Senhor se apossou de Sansão, o que aconteceu com as cordas que o amarravam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o filho de Jeroboão adoeceu, quem ele mandou sua esposa procurar, em busca de respostas sobre a condição do menino?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o jovem Daniel falou com o rei Nabucodonosor, quem ele disse que saberia interpretar os sonhos do rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o povo hebreu estava apostatado de Deus, que espécie de sacrifícios eram oferecidos ao deus Moloque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o rei Belsazar estava dando uma festa no palácio real, o que aconteceu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o rei Belsazar viu uma mão sem corpo escrevendo na parede, o que estava ocorrendo no palácio real?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o rei Manassés reinou, de qual deusa ele erigiu uma estátua no interior do Templo de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o rei ouviu a mensagem de Jonas, com que roupas ele se vestiu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o rei Zedequias escapou do cerco bailônico à cidade de Jerusalém, em qual cidade ele foi capturado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o reino de Israel foi conquistado pelos assírios, quem reinava no reino de Judá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando os filhos de Jacó foram comprar grãos no Egito, quem disse a eles que eles eram espias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando os filisteus atacaram Sansão pela 4ª vez, o que eles lhe fizeram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando os irmãos de José foram para o Egito para comprar grãos, o que José disse a eles?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando os judeus retornaram a Jerusalém vindo de Babilônia, como os idosos reagiram à construção do alicerce do Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Paulo foi à Roma, o que os marinheiros do navio tentaram fazer ao avistarem terra após a violenta tempestade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Paulo foi à Roma, o que os soldados romanos tentaram fazer aos prisioneiros quando o navio estava naufragando?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Paulo foi à Roma, quem tentou matar os prisioneiros que haviam no navio que estava naufragando?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Paulo precisou retornar da Grécia p/ a Macedônia pois desejavam matá-lo, onde seus companheiros o estavam aguardando?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Roboão tornou-se rei, o que os israelitas lhe pediram?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Salomão morreu, onde ele foi interrado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Sansão apaixonou-se por Dalila, ela vivia no vale de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Sansão estava andando pela estrada, que animal tinha em seu corpo uma colméia de mel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Sansão estava andando por uma estrada, o que ele encontrou no corpo de um leão morto?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Sansão foi à cidade de Timnate, o que ele pediu aos seus pais?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Sansão visitou a cidade de Gaza, o que ele fez por lá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando um caldo venenoso foi acidentalmente oferecido a Eliseu, o que ele colocou na panela para torná-lo comestível?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Zedequias governava o reino de Judá, quem atacou Jerusalém pela 3ª vez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas esposas Jacó tinha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas esposas Salomão teve?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas esposas tinha o rei Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas janelas havia na arca de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas letras a Bíblia contém aproximadamente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas letras possui o maior versículo da Bíblia (Ester 8:9)?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas letras possui o menor versículo da Bíblia (Êxodo 20:13)?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas ovelhas foram sacrificadas como oferta pacífica quando Deus entrou no Templo de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas palavras a Bíblia contém aproximadamente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pedras Davi apanhou no chão para matar o gigante Golias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pessoas haviam no navio que naufragou onde Paulo estava em sua viagem para Roma?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pessoas Jesus alimentou com 5 peixes e 2 pães?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pessoas justas Abraão estava procurando em Sodoma?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pessoas morreram do povo israelita em função da praga enviada por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pessoas perderam a sua vida por não saberem pronunciar a palavra Shiboleth?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas portas havia na arca de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes Deus apareceu a Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes Eliseu disse para Naamã se molhar no rio Jordão para se curar da lepra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes Jesus perguntou a Pedro se este o amava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes Noé enviu uma pomba para procurar por terra seca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes o rei Nabucodonosor atacou Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes Pedro negou a Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas voltas o povo de Israel deu em volta dos muros da cidade de Jericó, para que estes caíssem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto custou o terreno que foi a sepultura de Sara?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto Jesus foi tentado por Satanás, para matar a fome de Jesus Satanás pediu que as pedras fossem transformadas em:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto Judas Iscariotes disse que custava o perfume que lavou os pés de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto os príncipes filisteus ofereceram a Dalila para que ela descobrissem o segredo da força de Sansão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto pagava Salomão por um cavalo?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto Satanás tentou a Jesus, o que o mesmo pediu que Jesus transformasse em pão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto talentos de prata Hamã ofereceu ao Rei Assuero para exterminar os judeus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto tempo durou a celebração de dedicação do Templo de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto tempo Moisés ficou no Monte Sinai com Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto tempo passou até que José e Maria reencontrassem Jesus, que havia separado-se deles em uma viagem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto tempo passou até que Maria percebesse que Jesus, então com 12 anos de idade, não estava na caravana de regresso?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos andares havia na arca de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos Arão era mais velho do que Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos de diferença há entre os irmãos Esaú e Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos Jacó precisou trabalhar para casar-se com Léia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos Jacó precisou trabalhar para finalmente casar-se com Raquel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos José do Egito tinha quando morreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos Mefibosete tinha quando foi deixado cair por sua babá, e que com isso afetou seus 2 pés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos o rei Salomão levou para construir o Templo de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos tinha Manassés quando foi constituído rei do povo de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos viveu Matusalém, o homem mais velho da Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos apóstolos Jesus chamou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos bois foram sacrificados como oferta pacífica quando Deus entrou no Templo de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos cânticos escreveu Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos capítulos a Bíblia possui?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos capítulos possui o maior livro da Bíblia (Salmos)?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos cestos de comida ainda sobraram após todas as pessoas terem se alimentado no milagre da multiplicação?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos conveses havia na arca de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos demônios Jesus expulsou de Maria Madalena?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos dias a mãe de Rebeca sugeriu que ela ficasse com seus parentes antes de partir para se casar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos dias Jesus jejuou enquanto esteve no deserto, antes de iniciar seu ministério?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos dias Lázaro esteve sepultado antes de ser ressuscitado por Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos discípulos Jesus mandou tomar emprestado um jumento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos Evangelhos existem no Antigo Testamento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos Evangelhos existem no Novo Testamento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filhos de Davi nasceram durante seu reinado em Hebrom?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filhos de José se tornaram líderes das tribos de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filhos Jair, juiz de Israel, tinha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filhos Noé tinha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filisteus morreram quando Sansão destruiu a construção em que se encontravam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filisteus Sansão matou com apenas uma única queixada de jumento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos foram os dias da criação?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos foram os filhos que Davi teve com Bate-Seba?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos Governadores o rei Dario nomeou quando assumiu o reino da Babilônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos homens foram precisos para amarrar Sansão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos músicos faziam parte da orquestra do rei Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos personagens do Velho Testamento apareceram na montanha durante a transfiguração?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos Presidentes o rei Dario nomeou quando assumiu o reino da Babilônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos príncipes filisteus ofereceram a Dalila 1.100 moedas de prata?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos provérbios escreveu Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos querubins de ouro haviam sobre o propiciatório da Arca da Aliança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos trabalhadores foram designados para a construção do Templo de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos versículos a Bíblia possui?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos versículos possui o maior capítulo da Bíblia (Salmos 119)?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos versículos possui o menor capítulo da Bíblia (Salmos 117)?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos versículos possui o menor livro da Bíblia (2ª João)?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que animais os 30 filhos de Jair, juiz de Israel, montavam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que animal Balaão possuía que chegou a falar após ter visto um anjo do Senhor?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que animal comprimiu o pé de Balaão contra o muro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que animal teria que ser reposto cinco vezes mais se fosse roubado por alguém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que cena incrível Moisés presenciou quando ele estava no Monte Horebe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que desejava construir o Templo de Deus, mas cujo pedido foi negado por Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que discípulo Jesus encontrou sob uma figueira?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que evento ocorreu quando Jesus tinha apenas 8 dias de idade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que faixa de montanhas produziu as árvores de cedro e de cipreste que Salomão utilizou na construção do Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que falso deus era a divindade principal de Canaã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que foi a mãe de Jeroboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que foi o pai dos músicos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que grupo de pessoas queria saber o segredo da força de Sansão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que homem israelita era celebrado por sua beleza?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que ídolo representava o deus sírio louvado pelo general Naamã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que instrumento era tocado nos funerais nos tempos do Novo Testamento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que instrumento musical foi ouvido antes de Moisés subir ao Sinai e receber a Lei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que instrumentos Miriã tocou depois da travessia do Mar Vermelho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mandamento nos instrui a não matar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mandamento nos instrui a sermos honestos com o próximo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que monte era tão sagrado que se um animal o tocasse morreria instantaneamente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mulher abandonou a família para acompanhar a sogra?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mulher ajudou o filho a praticar uma fraude?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mulher devotada dedicou seu filho, Samuel, ao Senhor?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mulher diabólica tentou destruir o rei Jeoás e toda a prole de Judá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mulher matou toda a família real para ser rainha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que parte do corpo de Mefibosete foi afetada quando sua babá o deixou cair com apenas 5 anos de idade?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que parte do corpo uma jumenta comprimiu o profeta Balaão contra um muro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que pessoas o profeta Isaías predisse que seriam levadas cativas para Babilônia e se tornatiam eunucas no palácio?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que povo chamava Belzebu como o \"príncipe dos espíritos do diabo\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que povo derrotou o rei Saul e seus filhos no Monte Gilboa?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que rei reconheceu que Deus fez com ele o mesmo que ele tinha feito aos seus inimigos?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que rio se transformou em sangue?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que substância Jesus disse ser inútil após ter perdido o gosto?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem absteu-se de alimentar-se dos alimentos impuros que haviam na mesa do rei?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem aconselhou Jacó a retornar para a terra de seus pais?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem adoeceu que obrigou o rei Jeroboão a procurar o profeta Aías para dizer-lhe sobre sua condição de saúde?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem afirmou que apenas Deus poderia interpretar os sonhos que o rei Nabucodonosor estava tendo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ajudou uma viúva pobre enchendo várias vasilhas de azeite?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem amarrou Sansão com 7 tendões não secos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem amparou Saulo e defendeu-o para os apóstolos, assegurando-lhes que agora Saulo era um verdadeiro cristão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Ananias curou da cegueira?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem apareceu a Jesus na montanha durante a transfiguração?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem apareceu a Jesus para tentá-lo no deserto?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem apresentou Jesus surrado à multidão, dizendo: \"Eis o homem!\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem arrancou as portas de entrada da cidade de Gaza?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem arrependeu-se após ter visto Jesus ser levado preso para a presença de Pôncio Pilatos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Atalia matou para poder ser rainha?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Barnabé defendeu perante os apóstolos, assegurando que ele havia se convertido?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem batizava as pessoas no rio Jordão para que se arrependessem e buscassem o perdão de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem casou-se com Bate-Seba após ela ter terminado seu período de luto por Urias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem casou-se com Maria, mãe de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem cavalgou um camelo quando dirigia-se ao seu casamento?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem chamou o fogo dos Céus para consumir um altar de sacrifícios?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem chorou quando viu o alicerce do Templo ser reconstruído, após terem retornado do cativeiro da Babilônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem chorou sobre Jerusalém no Monte das Oliveiras?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem colocou o bebê Moisés em um cesto no rio Nilo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem colocou os irmãos de José na prisão, quando estes foram comprar grãos no Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem colocou Zedequias no trono do reino de Judá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem comandou os israelitas em sua batalha contra Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem comprou o direito de primogenitura que não lhe era seu por direito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem comunicou a Maria, futura mãe de Jesus, que ela iria ter um bebê?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem conduziu os israelitas cantando após a travessia do Mar Vermelho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem confundiu um canto da multidão com um canto de guerra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem construiu a cidade de Nínive?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem construiu o Templo de Deus em Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem contou aos pastores sobre o nascimento de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem cortava os cabelos no fim de cada ano, pois os mesmos muito lhe pesavam?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem cortou o cabelo de Sansão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem cuspiu em Jesus enquanto o mesmo estava sendo surrado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem dançou na festa de aniversário de Herodes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem decidiu que, caso as pessoas não conseguissem decifrar seus sonhos, essas pessoas seriam mortas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem deixou seu filho sob um arbusto para não vê-lo morrer?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem deu beijos políticos aos cidadãos de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem deu presentes de ouro ao menino Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem deu um beijo de traição em Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Deus enviou para preparar o caminho de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse a frase \"Raça de víboras, quem vos ensinou a fugir da ira vindoura?\""], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse a Zacarias que ele teria um filho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse ao Faraó que haveria um período de muita fome no Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse que queria ver os furos nas mãos e nos pés de Jesus para acreditar que Jesus havia ressuscitado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse: \"Desafio hoje as fileiras de Israel; dai-me um homem para que pelejemos.\""], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse: \"Se tu é o Filho de Deus, manda a esta pedra que se torne pão.\""], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse: \"Sou inocente do sangue deste homem.\""], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem durante 7 anos imaginava que era um animal?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem durante sua viagem para Roma enfrentou uma violenta tempestade no mar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem é chamado de \"o príncipe dos espíritos do diabo\" pelos fariseus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem é o primeiro bígamo citado na Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem encontrou a cesta onde Moisés encontrava-se escondido, presa junto aos juncos do rio Nilo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem encontrou um arbusto em chamas que não se consumia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enganou Eva no Jardim do Éden?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enganou Jacó em seu próprio banquete de casamento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enganou Jacó, que ao final dos primeiros 7 anos de trabalho, não recebeu a mão de Raquel, mas sim da sua irmã Léia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enganou o rei Dario, fazendo-o com que assinasse um decreto onde o rei deveria receber unicamente as orações?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enviou Eliezer para procurar por uma esposa para Isaque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enviou espias para a cidade de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era a esposa do impostor Ananias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era a esposa do rei Assuero que recusou-se a ser exibida em frente a alguns convidados bêbados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era a mulher viúva e moabita que se dedicara inteiramente à sua sogra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era a rainha cruel de Israel que foi devorada pelos cachorros quado morreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era a sogra de Rute?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o centurião romano honrado e temente a Deus que teve uma visão de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o conselheiro influente do rei Davi que desertou para o lado de Absalão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o deus dos amonitas que exigia o sacrifício de crianças?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o home da terra de Uz?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o homem segundo o coração de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o honesto homem a quem Deus deu instruções para construiur uma arca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o irmão de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o irmão mais novo de Miriã?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o marido impostor de Safira?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o melhor amigo de Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o pai de Ló, que foi resgatado por um anjo da cidade de Sodoma?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o profeta de Jerusalém que visitou os cristãos em Antioquia e contou-lhes sobre uma grande fome que estava por vir?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o rei da Assíria quando Deus matou 185.000 homens que estavam tentando tomar Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o rei de Israel quando a Assíria conquistou o reinado do norte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o rei de Judá quando Nabucodonosor atacou Jerusalém pela 1ª vez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o rei de Judá quando Nabucodonosor atacou pela 3ª vez a cidade de Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o rei governante em Jerusalém quando Jesus nasceu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o Sumo Sacerdote que cuidou de Samuel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o tio de Ló?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem eram os pais de Jedidias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem eram os pais de José e Benjamim?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem eram os pais de Sete?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem eram os pais dos irmãos gêmeos Esaú e Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem escondeu Moisés em uma cesta, com o objetivo de protegê-lo do decreto de morte pronunciado pelo Faraó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem escondeu os espias na cidade de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem escreveu a carta de Paulo aos Romanos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem espargia o sangue do sacrifício no propiciatório da Arca da Aliança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem estava em pé no pináculo do Templo e tentou Jesus a saltar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem estava perseguindo o povo israelita quando eles estavam atravessando o Mar Vermelho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem estava procurando Jesus, quando Este tinha apenas 12 anos, e estava ensinando no Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem estava sentado eu uma jumenta quando apareceu um anjo com a espada desembainhada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem esteve sepultado por 4 dias até que foi ressuscitado por Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem expulsou os mercadores que haviam se alojado no Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem falsamente acusou José de tentar seduzí-la?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fez a primeira tradução completa da Bíblia para o inglês, no ano de 1380?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fez descer uma corda púrpura pela janela quando os israelitas invadiram Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fez saques em Jericó mesmo após Josué ter instruído o povo a não fazê-lo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fez um bezerro de ouro como ídolo para os israelitas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fez uma estátua de ouro de si próprio para ser cultuada e que tinha 90 pés de altura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou 3 dias na barriga de um grande peixe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou cego na estrada de Damasco?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou cego quando dirigia-se para a cidade de Damasco prender alguns cristãos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou com os 2 pés feridos porque quando tinha apenas 5 anos a babá que o carregava o deixou cair?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou enciumada pelo êxito de seu irmão mais novo?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou irritada ao perceber que sua irmã não a ajudava, preferindo ouvir as palavras de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou preso pelos cabelos em um carvalho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou preso pelos cabelos em um cedro do Líbano?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fingiu ser Esaú para obter a bênção da primogenitura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a 1ª pessoa a ver Jesus ressuscitado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a 1ª pessoa que testemunhou a conversão de Saulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a avó de Timóteo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a bisavó de Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a dedicada discípula em Jope que Pedro ressuscitou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a esposa de Boaz?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a garota israelita que casou com o rei persa Assuero?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a irmã de Arão, o Sumo-Sacerdote?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Ismael?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Obede?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Roboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Timóteo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a primeira mulher convertida na Europa?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a primeira pessoa a cometer assassinato na Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a única médium registrada na Bíblia?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a vítima do primeiro assassinato ocorrido na Bíblia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi acusado falsamente de tentar seduzir a esposa de Potifar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi ao Egito durante uma longa estiagem de seca e fome?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi apresentado no Templo de Jerusalém como um bebê?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi atirado à cova dos leões?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi batizado por João Batista no rio Nilo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi chamado de cristãos pela 1ª vez na cidade de Antioquia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi colocado em uma cesta no rio Nilo, quando ainda era bebê?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi confundido pelos gregos como sendo o deus Júpiter?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi decapitado pelo rei Herodes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi escondido em uma cesta por sua mãe com o objetivo de protegê-lo de morte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi escravo pessoal de Potifar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi filho de Davi e Bate-Seba?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi filho de Terá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi levado escravo para o Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi neto de Obede?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi nomeado Presidente do reino da Babilônia, através do rei Dario?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o 1º filho de Adão e Eva?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o 2º rei de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o 3º filho de Adão e Eva?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Arão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Noé?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Raquel e Léia, esposas de Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o bisavô de Ninrode, construtor da cidade de Nínive?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o bisneto de Rute?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o gigante morto por Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o irmão do Sumo-Sacerdote Arão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o marido de Priscila, que auxiliou no ministério de Paulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o marido de Rute?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai da rainha Jezabel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Acabe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Elcana?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Eliseu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Esdras?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Gideão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Ismael?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Jeroboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Jônas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Jônatas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Josué?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Lia e Raquel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Manassés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Mefibosete?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de muitas nações?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Obede?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Roboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Saul?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Zípora?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do profeta Neemias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do profeta Oséias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do profeta Sofonias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do rei babilônico Belsazar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do rei Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do rei Jotão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do rei Manassés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai dos líderes das 12 tribos de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai dos que habitam em tendas e possuem gados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai dos que tocam harpa e flauta?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai que se deitou com suas próprias filhas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o patriarca do Velho Testamento que quase sacrificou seu filho no Monte Moriá?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o primeiro homem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o primeiro rei de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o primeiro tradutor da Bíblia para a língua do povo alemão?\n1,"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o rei da Babilônia que viu uma mão sem corpo escrevendo na parede?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o sogro de Maria, mãe de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o tio-avô de Raquel e Léia, esposas de Jacó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o último dos juízes de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o último rei que reinou o reino do Norte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o último sobrevivente da casa de Saul?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi obrigado a girar um moinho após seu prisionamento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi possuído por Satanás logo após ter recebido das mãos de Jesus um pedaço de pão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi proclamado publicamente rei na cidade de Gilgal?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi professor do apóstolo Paulo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi rei e sacerdote ao mesmo tempo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi sepultado por Deus em um vale?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi tocado por um milagre de Jesus e estava sendo ameaçado de morte pelos sumos sacerdotes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi transformada em estátua de sal, ao olhar para trás?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi um dos filhos de Anrão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi um dos filhos do rei Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi vendido pelos seus irmãos ao preço de 20 moedas de prata?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi visitar Maria para dizer-lhe que ela havia sido escolhida para ser a mãe de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi, cujo significado de seu nome é \"pacífico\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram as primeiras pessoas a ouvirem sobre o nascimento de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram os pais de Benjamim?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram os pais de Jeroboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram os pais de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram os pais de José, do Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram os pais de Roboão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem formou a primeira orquestra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fugiu de Jerusalém quando Absalão tentou tomar o trono à força?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ganhou uma \"túnica de muitas cores\"?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem governava o reino de Judá quando Nabucodonosor atacou Jerusalém pela 2ª vez?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem gritou \"Crucifica-o!\" após Pôncio Pilatos ter apresentado Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem havia dado a Daniel o nome de Beltesaazar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem interpretou os sonhos do Faraó do Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem irou-se pelo fato de ter sido construído um altar de sacrifícios para o deus Moleque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Isaque abençoou por engano, em lugar de Esaú?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Jesus disse que iria gritar se acaso o povo ficasse em silêncio pela ocasião de sua entrada triunfal em Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Jesus expulsou do Templo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem jogou Jonas no mar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem levou cativo o reino norte de Israel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem levou seu filho de 12 anos a Jerusalém para celebrar a Páscoa dos judeus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem libertou o apóstolo Pedro da prisão quando ele foi acorrentado entre 2 guardas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem liderou o povo israelita durante sua libertação do cativeiro no Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou açoitar Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou decapitar João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou escrever uma placa para ser pregada na cruz de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou executar à morte o apóstolo Tiago?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou matar os profetas de Baal?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou prender Nabote acusando-o de blasfêmia, apenas para poder tomar posse da vinha que ele tinha?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou que todos os bebês hebreus que nascessem fosse mortos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou tomar um jumento emprestado para Sua entrada em Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mantinha o povo israelita mantido em cativeiro, durante os dias de Moisés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou 1.000 filisteus com apenas a queixada de um jumento?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou o gigante filisteu que tinha 12 dedos nas mãos e 12 dedos nos pés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou o rebelde Absalão que tencionava tomar à força o reino de Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou o rei assírio Senaqueribe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou seu irmão enquanto o beijava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou um egípcio pelo fato deste estar surrando um hebreu?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou um leão e um urso com as mãos nuas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu aos 110 anos de idade, quando então foi embalsamado e mumificado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu de parto ao nascer-lhe o segundo filho?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu na revolta de Absalão na tentativa de tomar o trono do rei Davi?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu no Monte Hor?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu no naufrágio do navio em que Paulo se encontrava quando estava indo para Roma?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu pelo fato de ter trazido fogo estranho à Casa de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem nasceu em Ur dos Caldeus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Nicodemos encontrou à noite e perguntou sobre a necessidade em nascer de novo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem nomeou José como governador de todo o Egito?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem o egípcio morto por Moisés estava surrando?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem o povo preferiu que fosse libertado por Pôncio Pilatos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem o rei Acaz ofereceu como sacrifício ao deus Moloque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem o rei da Babilônia mandou jogar em uma fornalha ardente?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ofereceu a Rebeca como forma de agradecimento 1 argola de ouro e 2 pulseiras de ouro?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ofereceu ao Rei Assuero 10.000 talentos de prata, com o objetivo em exterminar os judeus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ofereceu um quarto na parte de cima de sua casa quando Eliseu estava avisitando?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou a colocação de guardas para guardar o sepulcro de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou a prisão de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou que Daniel fosse atirado à cova dos leões?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou que Jesus fosse crucificado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou que qualquer pessoa que visse Jesus deveria relatar onde ele se encontrava?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou que todos os filhos do sexo masculino que nascessem fossem mortos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem orientou Naamã para se molhar no rio Jordão para se curar da lepra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem orou por 7 dias para que seu filho não morresse?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem passou 40 dias no Monte Sinai com Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem passou a noite lutando com Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a cabeça de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a Dalila que ela conseguisse de Sansão o segredo de sua força?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a Deus que lhe desse sabedoria?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a Deus que não destruísse Sodoma?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a José que interpretasse seus sonhos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a Roboão que abaixasse os impostos, após a morte do rei Salomão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu ao rei Davi para que escolhesse Salomão a lhe suceder no trono real?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu aos espias que sua família fosse poupada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu um período de teste de 10 dias para provar que a alimentação da mesa do rei era impura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem perdeu a força quando teve seu cabelo cortado?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem perdeu a posição de rainha pelo fato de ter-se recusado a aparecer diante de um banco de bêbados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem perdeu a vida por ter tocado na arca de Deus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem perguntou a Pedro 3 vezes se ele amava a Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem permitiu que Mefibosete, com apenas 5 anos de idade, o deixasse cair, prejudicando com isso seus 2 pés?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem persuadiu a multidão a pedir a Crucificação de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem possuiu o corpo de Judas Iscariotes após o mesmo ter recebido diretamente de Jesus um pedaço de pão na Última Ceia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem precisou ser educado no serviço do rei durante 3 anos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem preferiu ouvir as palavras de Jesus, ao invés de ajudar sua irmã?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pregou arrependimento aos cidadãos de Nínive durante 40 dias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem procurava matar Saulo após ter-se convertido para o cristianismo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem profetizou de que os assírios não conseguiriam tomar Jerusalém?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pronunciou no Monte Gerizim as bênçãos dadas a Israel devido à sua obediência?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem provocou a morte de João Batista?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem queimou as plantações dos filisteus amarrando tochas nas caudas de raposas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem questionou Davi sobre seus pecados contra Bate-Seba e Urias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Raabe escondeu na cidade de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem recebeu do Faraó um anel pelo fato de haver interpretado os sonhos do Faraó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem recebeu do rei Nabucodonosor o cargo de Governador da Babilônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem recebeu um beijo de traição?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem reclamou para o Senhor que era pesado de boca e pesado de língua?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem reconstruiu Babilônia?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem refugiou-se em um monte, após terem deixado Raabe?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem reinava na cidade de Astarote, conhecida por haver muitos gigantes?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem reinava na Judéia quando José, Maria e Jesus retornaram para a Palestina?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem resmungou pelo fato dos rebeldes terem sido destruídos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem retirou a pedra do túmulo de Jesus?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem salvou a vida do profeta Jeremias, que havia sido atirado em uma cisterna para morrer na lama?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem salvou Balaão de ser morto por um anjo que estava com a espada desembainhada?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem salvou Ló e sua família de serem destruídos juntamente com a cidade de Sodoma?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem são bem-aventurados, pelo fato de serem consolados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem são bem-aventurados, pelo fato de serem fartos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem são bem-aventurados, pelo fato do reino dos céus serem deles?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem se postou perante os israelitas e os provocou durante 40 dias?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem se tornou rei quando tinha 7 anos e reinou durante 40 anos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem sepultou Moisés em um vale?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem serão bem-aventurados, pelo fato de herdarem a terra?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem subiu aos Céus em uma carruagem de fogo"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem subiu em cima de uma ávore para ver Jesus quando Ele estivesse passando?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem substituiu o apóstolo Judas após sua morte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem sucedeu Salomão no trono real após sua morte?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem sugeriu que Rebeca ficasse com seus parentes\n1,por mais 10 dias antes de partir para se casar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem também tinha o nome de Beltessazar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem tentou José a pecar quando ele era um escravo de Potifar?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem tentou várias vezes matar a Davi com uma lança?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve como punição a morte de seu filho pelo fato de ter cometido adultério?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve como punição a morte de seu filho pelo fato de ter planejado um assassinato?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve o privilégio de comer uma refeição preparada por um anjo?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve seu trono restituído com a morte de Absalão?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve sua visão restaurada na estrada próximo à cidade de Jericó?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve um sonho sobre o sol, a lua e as estrelas se curvando para ele?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem tinha um burro que falou e viu o anjo do Senhor?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem trouxe muita amargura de espírito para Isaque e Rebeca?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem vendeu seu direito de primogenitura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem visitou uma prostituta quando chegou à cidade de Gaza?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem, ao ter entrado em casa após ter regressado da consulta ao profeta Aías, teve seu filho morto?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem, após ter ouvido a mensagem de advertência de Jonas, vestiu-se com panos de saco?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem, na mesa de um homem rico, quis comer apenas migalhas?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem, para se proteger, fingiu ser louco?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Raquel era esposa de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Raquel morreu de parto ao nascer-lhe:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Raquel, esposa de Jacó, morreu ao dar a luz:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Rebeca ajudou o filho a praticar:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Rebeca teve os filhos gêmeos Esaú e Jacó com:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Roboão era o filho de Salomão que seria o sucessor no trono real, porém quem assumiu o trono?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Rute abandonou a sua família para acompanhar:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Rute e Orfa receberam um beijo de tristeza de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Salomão, rei de Israel, praticou comércio marítimo com o reino:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sansão apaixonou-se por quem?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sansão queimou as plantações dos filisteus ao amarrar tochas nas caudas de qual animal?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sansão visitou uma prostituta quando estava viajando pela cidade de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Saul foi o:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Saul recebeu um beijo de coroação de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Se um boi fosse roubado por alguém, quantos bois o ladrão teria de repôr ao seu proprietário?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sebá foi o segundo rebelde a se revoltar contra o governo do rei:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Segundo a religião dos filisteus, qual deus era o filho de Dago, deus da agricultura?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Segundo a religião dos filisteus, qual deus era o pai de Baal?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Segundo o que Sansão disse a Dalila, para ele perder sua força ele deveria ser amarrado por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sem usar qualquer espécie de arma ou ferramenta, o que Davi matou?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sete, filho de Adão e Eva, nasceu:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Simão de Cerene ficou conhecido como:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sobre o propiciatório da Arca da Aliança haviam 2:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sobre quantas tribos de Israel Salomão reinou durante 40 anos?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sobre que animal cavalgou Rebeca quando foi casar-se com Isaque?"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Tabita morava na cidade de Jope, e também era conhecida por:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Tiago foi decapitado à espada por ordem de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Tiago foi o primeiro apóstolo a:"], ["LIMIT", 1]] Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Um dos filhos de Joquebede foi:"], ["LIMIT", 1]] Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Uma das pragas que acometeram o Egito foi que as águas do rio Nilo se transformaram em:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Uma vez que Daniel não queria contaminar-se com a alimentação impura da mesa do rei, qual era a alimentação de Daniel?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Uzá perdeu a vida pelo fato de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Vasti perdeu a condição de rainha pelo fato de ter-se recusado a aparecer diante de:"], ["LIMIT", 1]] Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Vinde a Jesus, todos aqueles que estiverem de que forma, para que possam ser aliviados?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Wycliffe fez a primeira tradução completa da Bíblia no ano de 1380 para qual idioma?"], ["LIMIT", 1]] Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Zaqueu subiu em uma árvore para poder enxergar melhor a:"], ["LIMIT", 1]] Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Zebedeu foi pai de quais discípulos de Jesus?"], ["LIMIT", 1]] SQL (189.4ms) DELETE FROM "quizzes_questions" SQL (217.1ms) DELETE FROM "quizzes_answers"  (0.2ms) SELECT COUNT(*) FROM "quizzes_questions"  (0.2ms) SELECT COUNT(*) FROM "quizzes_answers" Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.5ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.1ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Level Load (0.0ms) SELECT "quizzes_levels".* FROM "quizzes_levels" WHERE "quizzes_levels"."code" = ? ORDER BY "quizzes_levels"."id" ASC LIMIT ? [["code", "1"], ["LIMIT", 1]] Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "10 anos após o reino de Israel ter sido capturado, qual nação tomou as cidades fortificadas de Judá?"], ["LIMIT", 1]]  (0.0ms) begin transaction Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "10 anos após o reino de Israel ter sido capturado, qual nação tomou as cidades fortificadas de Judá?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "10 anos após o reino de Israel ter sido capturado, qual nação tomou as cidades fortificadas de Judá?"], ["created_at", 2016-08-19 02:54:58 UTC], ["updated_at", 2016-08-19 02:54:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assíria"], ["question_id", 1630], ["correct", true], ["created_at", 2016-08-19 02:54:58 UTC], ["updated_at", 2016-08-19 02:54:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônia"], ["question_id", 1630], ["correct", false], ["created_at", 2016-08-19 02:54:58 UTC], ["updated_at", 2016-08-19 02:54:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Grécia"], ["question_id", 1630], ["correct", false], ["created_at", 2016-08-19 02:54:58 UTC], ["updated_at", 2016-08-19 02:54:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pérsia"], ["question_id", 1630], ["correct", false], ["created_at", 2016-08-19 02:54:58 UTC], ["updated_at", 2016-08-19 02:54:58 UTC]]  (139.5ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "2 dias antes da celebração da Páscoa, na casa de quem Jesus jantou?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "2 dias antes da celebração da Páscoa, na casa de quem Jesus jantou?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "2 dias antes da celebração da Páscoa, na casa de quem Jesus jantou?"], ["created_at", 2016-08-19 02:54:58 UTC], ["updated_at", 2016-08-19 02:54:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Simão, O Leproso"], ["question_id", 1631], ["correct", true], ["created_at", 2016-08-19 02:54:58 UTC], ["updated_at", 2016-08-19 02:54:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lázaro"], ["question_id", 1631], ["correct", false], ["created_at", 2016-08-19 02:54:58 UTC], ["updated_at", 2016-08-19 02:54:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cego Bartimeu"], ["question_id", 1631], ["correct", false], ["created_at", 2016-08-19 02:54:58 UTC], ["updated_at", 2016-08-19 02:54:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria Madalena"], ["question_id", 1631], ["correct", false], ["created_at", 2016-08-19 02:54:58 UTC], ["updated_at", 2016-08-19 02:54:58 UTC]]  (122.6ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "2 dias antes da celebração da Páscoa, Simão, o leproso, ofereceu a Jesus um:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "2 dias antes da celebração da Páscoa, Simão, o leproso, ofereceu a Jesus um:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "2 dias antes da celebração da Páscoa, Simão, o leproso, ofereceu a Jesus um:"], ["created_at", 2016-08-19 02:54:58 UTC], ["updated_at", 2016-08-19 02:54:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jantar"], ["question_id", 1632], ["correct", true], ["created_at", 2016-08-19 02:54:58 UTC], ["updated_at", 2016-08-19 02:54:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Almoço"], ["question_id", 1632], ["correct", false], ["created_at", 2016-08-19 02:54:58 UTC], ["updated_at", 2016-08-19 02:54:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jejum"], ["question_id", 1632], ["correct", false], ["created_at", 2016-08-19 02:54:58 UTC], ["updated_at", 2016-08-19 02:54:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Café da Manhã"], ["question_id", 1632], ["correct", false], ["created_at", 2016-08-19 02:54:58 UTC], ["updated_at", 2016-08-19 02:54:58 UTC]]  (106.8ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "42 mil pessoas perderam a sua vida por não saberem pronunciar qual palavra?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "42 mil pessoas perderam a sua vida por não saberem pronunciar qual palavra?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "42 mil pessoas perderam a sua vida por não saberem pronunciar qual palavra?"], ["created_at", 2016-08-19 02:54:58 UTC], ["updated_at", 2016-08-19 02:54:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Shiboleth"], ["question_id", 1633], ["correct", true], ["created_at", 2016-08-19 02:54:58 UTC], ["updated_at", 2016-08-19 02:54:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tacama-tacamâni"], ["question_id", 1633], ["correct", false], ["created_at", 2016-08-19 02:54:58 UTC], ["updated_at", 2016-08-19 02:54:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeovhá"], ["question_id", 1633], ["correct", false], ["created_at", 2016-08-19 02:54:58 UTC], ["updated_at", 2016-08-19 02:54:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Israel"], ["question_id", 1633], ["correct", false], ["created_at", 2016-08-19 02:54:58 UTC], ["updated_at", 2016-08-19 02:54:58 UTC]]  (133.5ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "5.000 pessoas foram alimentadas por Jesus através do milagre da multiplicação de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "5.000 pessoas foram alimentadas por Jesus através do milagre da multiplicação de:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "5.000 pessoas foram alimentadas por Jesus através do milagre da multiplicação de:"], ["created_at", 2016-08-19 02:54:58 UTC], ["updated_at", 2016-08-19 02:54:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5 Peixes e 2 Pães"], ["question_id", 1634], ["correct", true], ["created_at", 2016-08-19 02:54:58 UTC], ["updated_at", 2016-08-19 02:54:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5 Pães e 2 Peixes"], ["question_id", 1634], ["correct", false], ["created_at", 2016-08-19 02:54:58 UTC], ["updated_at", 2016-08-19 02:54:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Peixes e 5 Pães"], ["question_id", 1634], ["correct", false], ["created_at", 2016-08-19 02:54:58 UTC], ["updated_at", 2016-08-19 02:54:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5 Peixes e 3 Pães"], ["question_id", 1634], ["correct", false], ["created_at", 2016-08-19 02:54:58 UTC], ["updated_at", 2016-08-19 02:54:58 UTC]]  (150.0ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A bênção da primogenitura de Jacó deveria ser dada a:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A bênção da primogenitura de Jacó deveria ser dada a:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A bênção da primogenitura de Jacó deveria ser dada a:"], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 1635], ["correct", true], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 1635], ["correct", false], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 1635], ["correct", false], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 1635], ["correct", false], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]]  (133.5ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A bênçao da primogenitura era para ser dada ao:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A bênçao da primogenitura era para ser dada ao:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A bênçao da primogenitura era para ser dada ao:"], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filho Mais Velho"], ["question_id", 1636], ["correct", true], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filho Mais Novo"], ["question_id", 1636], ["correct", false], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filho Com Problemas de Saúde"], ["question_id", 1636], ["correct", false], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "À Todas As Filhas do Casal"], ["question_id", 1636], ["correct", false], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]]  (141.4ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A cesta onde Moisés foi depositado foi coberto por betume, para evitar que esta:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A cesta onde Moisés foi depositado foi coberto por betume, para evitar que esta:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A cesta onde Moisés foi depositado foi coberto por betume, para evitar que esta:"], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Afundasse No Rio Nilo"], ["question_id", 1637], ["correct", true], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ficasse Presa Nas Marges do Rio Nilo"], ["question_id", 1637], ["correct", false], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fosse Abocanhada Pelos Crocodilos do Rio Nilo"], ["question_id", 1637], ["correct", false], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Virasse Nas Corredeiras do Rio Nilo"], ["question_id", 1637], ["correct", false], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]]  (122.7ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A cesta onde Moisés foi depositado foi coberto por betume, para fazer com que:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A cesta onde Moisés foi depositado foi coberto por betume, para fazer com que:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A cesta onde Moisés foi depositado foi coberto por betume, para fazer com que:"], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todas As Alternativas Estão Corretas"], ["question_id", 1638], ["correct", true], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Afundasse"], ["question_id", 1638], ["correct", false], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Flutuasse"], ["question_id", 1638], ["correct", false], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Permitisse Que Moisés Morresse Afogado"], ["question_id", 1638], ["correct", false], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]]  (131.9ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A cidade de Jerusalém foi atacada 3 vezes pelos:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A cidade de Jerusalém foi atacada 3 vezes pelos:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A cidade de Jerusalém foi atacada 3 vezes pelos:"], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônicos"], ["question_id", 1639], ["correct", true], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egípcios"], ["question_id", 1639], ["correct", false], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assírios"], ["question_id", 1639], ["correct", false], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gregos"], ["question_id", 1639], ["correct", false], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]]  (131.5ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A escuridão que se abateu devido à Crucificação de Jesus ocorreu:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A escuridão que se abateu devido à Crucificação de Jesus ocorreu:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A escuridão que se abateu devido à Crucificação de Jesus ocorreu:"], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nas Últimas 3 Horas da Crucificação"], ["question_id", 1640], ["correct", true], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nas Primeiras 3 Horas da Crucificação"], ["question_id", 1640], ["correct", false], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Entre 9 e 12 Horas da Manhã"], ["question_id", 1640], ["correct", false], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Entre 6 e 9 Horas da Manhã"], ["question_id", 1640], ["correct", false], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]]  (133.1ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A esposa de quem tentou cometer adultério com José?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A esposa de quem tentou cometer adultério com José?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A esposa de quem tentou cometer adultério com José?"], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Potifar"], ["question_id", 1641], ["correct", true], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bate-seba"], ["question_id", 1641], ["correct", false], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elcana"], ["question_id", 1641], ["correct", false], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria Madalena"], ["question_id", 1641], ["correct", false], ["created_at", 2016-08-19 02:54:59 UTC], ["updated_at", 2016-08-19 02:54:59 UTC]]  (133.3ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A estrada de Jerusalém para Jericó foi utilizada por Jesus na parábola:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A estrada de Jerusalém para Jericó foi utilizada por Jesus na parábola:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A estrada de Jerusalém para Jericó foi utilizada por Jesus na parábola:"], ["created_at", 2016-08-19 02:55:00 UTC], ["updated_at", 2016-08-19 02:55:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Bom Samaritano"], ["question_id", 1642], ["correct", true], ["created_at", 2016-08-19 02:55:00 UTC], ["updated_at", 2016-08-19 02:55:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Das 10 Virgens"], ["question_id", 1642], ["correct", false], ["created_at", 2016-08-19 02:55:00 UTC], ["updated_at", 2016-08-19 02:55:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Da Figueira"], ["question_id", 1642], ["correct", false], ["created_at", 2016-08-19 02:55:00 UTC], ["updated_at", 2016-08-19 02:55:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Filho Pródigo"], ["question_id", 1642], ["correct", false], ["created_at", 2016-08-19 02:55:00 UTC], ["updated_at", 2016-08-19 02:55:00 UTC]]  (131.3ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A família de quem foi salva de Sodoma, antes que a mesma tivesse sido destruída por Deus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A família de quem foi salva de Sodoma, antes que a mesma tivesse sido destruída por Deus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A família de quem foi salva de Sodoma, antes que a mesma tivesse sido destruída por Deus?"], ["created_at", 2016-08-19 02:55:00 UTC], ["updated_at", 2016-08-19 02:55:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ló"], ["question_id", 1643], ["correct", true], ["created_at", 2016-08-19 02:55:00 UTC], ["updated_at", 2016-08-19 02:55:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1643], ["correct", false], ["created_at", 2016-08-19 02:55:00 UTC], ["updated_at", 2016-08-19 02:55:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 1643], ["correct", false], ["created_at", 2016-08-19 02:55:00 UTC], ["updated_at", 2016-08-19 02:55:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noé"], ["question_id", 1643], ["correct", false], ["created_at", 2016-08-19 02:55:00 UTC], ["updated_at", 2016-08-19 02:55:00 UTC]]  (140.9ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A família de quem o Faraó disse que fosse acomodada na cidade do Gósen?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A família de quem o Faraó disse que fosse acomodada na cidade do Gósen?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A família de quem o Faraó disse que fosse acomodada na cidade do Gósen?"], ["created_at", 2016-08-19 02:55:00 UTC], ["updated_at", 2016-08-19 02:55:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 1644], ["correct", true], ["created_at", 2016-08-19 02:55:00 UTC], ["updated_at", 2016-08-19 02:55:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1644], ["correct", false], ["created_at", 2016-08-19 02:55:00 UTC], ["updated_at", 2016-08-19 02:55:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1644], ["correct", false], ["created_at", 2016-08-19 02:55:00 UTC], ["updated_at", 2016-08-19 02:55:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 1644], ["correct", false], ["created_at", 2016-08-19 02:55:00 UTC], ["updated_at", 2016-08-19 02:55:00 UTC]]  (141.7ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A filha de Herodias dançou para:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A filha de Herodias dançou para:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A filha de Herodias dançou para:"], ["created_at", 2016-08-19 02:55:00 UTC], ["updated_at", 2016-08-19 02:55:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes"], ["question_id", 1645], ["correct", true], ["created_at", 2016-08-19 02:55:00 UTC], ["updated_at", 2016-08-19 02:55:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ananias"], ["question_id", 1645], ["correct", false], ["created_at", 2016-08-19 02:55:00 UTC], ["updated_at", 2016-08-19 02:55:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas Iscariotes"], ["question_id", 1645], ["correct", false], ["created_at", 2016-08-19 02:55:00 UTC], ["updated_at", 2016-08-19 02:55:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José de Arimatéia"], ["question_id", 1645], ["correct", false], ["created_at", 2016-08-19 02:55:00 UTC], ["updated_at", 2016-08-19 02:55:00 UTC]]  (141.4ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A grande maioria das porções do Antigo Testamento foi escrita em:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A grande maioria das porções do Antigo Testamento foi escrita em:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A grande maioria das porções do Antigo Testamento foi escrita em:"], ["created_at", 2016-08-19 02:55:00 UTC], ["updated_at", 2016-08-19 02:55:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hebraico"], ["question_id", 1646], ["correct", true], ["created_at", 2016-08-19 02:55:00 UTC], ["updated_at", 2016-08-19 02:55:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aramaico"], ["question_id", 1646], ["correct", false], ["created_at", 2016-08-19 02:55:00 UTC], ["updated_at", 2016-08-19 02:55:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Grego"], ["question_id", 1646], ["correct", false], ["created_at", 2016-08-19 02:55:00 UTC], ["updated_at", 2016-08-19 02:55:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Latim"], ["question_id", 1646], ["correct", false], ["created_at", 2016-08-19 02:55:00 UTC], ["updated_at", 2016-08-19 02:55:00 UTC]]  (139.5ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A imagem do que apareceu nos sonhos do rei Nabucodonosor?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A imagem do que apareceu nos sonhos do rei Nabucodonosor?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A imagem do que apareceu nos sonhos do rei Nabucodonosor?"], ["created_at", 2016-08-19 02:55:00 UTC], ["updated_at", 2016-08-19 02:55:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Estátua"], ["question_id", 1647], ["correct", true], ["created_at", 2016-08-19 02:55:00 UTC], ["updated_at", 2016-08-19 02:55:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Urso Com Asas"], ["question_id", 1647], ["correct", false], ["created_at", 2016-08-19 02:55:00 UTC], ["updated_at", 2016-08-19 02:55:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dragão Cuspindo Fogo"], ["question_id", 1647], ["correct", false], ["created_at", 2016-08-19 02:55:00 UTC], ["updated_at", 2016-08-19 02:55:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mostro Emergindo do Mar"], ["question_id", 1647], ["correct", false], ["created_at", 2016-08-19 02:55:00 UTC], ["updated_at", 2016-08-19 02:55:00 UTC]]  (139.6ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A mãe de Receba sugeriu que ela ficasse com seus parentes por mais 10 dias antes de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A mãe de Receba sugeriu que ela ficasse com seus parentes por mais 10 dias antes de:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A mãe de Receba sugeriu que ela ficasse com seus parentes por mais 10 dias antes de:"], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Casar"], ["question_id", 1648], ["correct", true], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noivar"], ["question_id", 1648], ["correct", false], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Morrer"], ["question_id", 1648], ["correct", false], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ser Presa"], ["question_id", 1648], ["correct", false], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]]  (224.8ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "À medida que o terceiro ataque de Nabucodonosor sobre Jerusalém continuava, o que ocorria dentro da cidade?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "À medida que o terceiro ataque de Nabucodonosor sobre Jerusalém continuava, o que ocorria dentro da cidade?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "À medida que o terceiro ataque de Nabucodonosor sobre Jerusalém continuava, o que ocorria dentro da cidade?"], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fome"], ["question_id", 1649], ["correct", true], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Festejos"], ["question_id", 1649], ["correct", false], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Revolta"], ["question_id", 1649], ["correct", false], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Suicídio Em Massa"], ["question_id", 1649], ["correct", false], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]]  (123.8ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A pedido do rei Jeroboão, quem precisou disfarçar-se quando foi procurar o profeta Aías?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A pedido do rei Jeroboão, quem precisou disfarçar-se quando foi procurar o profeta Aías?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A pedido do rei Jeroboão, quem precisou disfarçar-se quando foi procurar o profeta Aías?"], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Própria Esposa"], ["question_id", 1650], ["correct", true], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Próprio Filho"], ["question_id", 1650], ["correct", false], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Própria Mãe"], ["question_id", 1650], ["correct", false], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Próprio Pai"], ["question_id", 1650], ["correct", false], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]]  (114.4ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A qual partido religioso pertencia Nicodemos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A qual partido religioso pertencia Nicodemos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A qual partido religioso pertencia Nicodemos?"], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fariseu"], ["question_id", 1651], ["correct", true], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Levita"], ["question_id", 1651], ["correct", false], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escriba"], ["question_id", 1651], ["correct", false], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaritano"], ["question_id", 1651], ["correct", false], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]]  (115.6ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A qual povo Deus proveu o maná?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A qual povo Deus proveu o maná?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A qual povo Deus proveu o maná?"], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Israelitas"], ["question_id", 1652], ["correct", true], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cananeus"], ["question_id", 1652], ["correct", false], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amorreus"], ["question_id", 1652], ["correct", false], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sedonitas"], ["question_id", 1652], ["correct", false], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]]  (116.1ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A qual profeta uma jumenta comprimiu o pé contra o muro?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A qual profeta uma jumenta comprimiu o pé contra o muro?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A qual profeta uma jumenta comprimiu o pé contra o muro?"], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Balaão"], ["question_id", 1653], ["correct", true], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ezequiel"], ["question_id", 1653], ["correct", false], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jonas"], ["question_id", 1653], ["correct", false], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 1653], ["correct", false], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]]  (114.9ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A qual rei o profeta Aías deu a mensagem de que todos os homens da casa real seriam mortos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A qual rei o profeta Aías deu a mensagem de que todos os homens da casa real seriam mortos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A qual rei o profeta Aías deu a mensagem de que todos os homens da casa real seriam mortos?"], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeroboão"], ["question_id", 1654], ["correct", true], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Roboão"], ["question_id", 1654], ["correct", false], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 1654], ["correct", false], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Labão"], ["question_id", 1654], ["correct", false], ["created_at", 2016-08-19 02:55:01 UTC], ["updated_at", 2016-08-19 02:55:01 UTC]]  (132.2ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quantos discípulos Jesus instruiu para que o acompanhassem em oração no Jardim do Getsêmani?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quantos discípulos Jesus instruiu para que o acompanhassem em oração no Jardim do Getsêmani?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quantos discípulos Jesus instruiu para que o acompanhassem em oração no Jardim do Getsêmani?"], ["created_at", 2016-08-19 02:55:02 UTC], ["updated_at", 2016-08-19 02:55:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 1655], ["correct", true], ["created_at", 2016-08-19 02:55:02 UTC], ["updated_at", 2016-08-19 02:55:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 1655], ["correct", false], ["created_at", 2016-08-19 02:55:02 UTC], ["updated_at", 2016-08-19 02:55:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todos"], ["question_id", 1655], ["correct", false], ["created_at", 2016-08-19 02:55:02 UTC], ["updated_at", 2016-08-19 02:55:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "11"], ["question_id", 1655], ["correct", false], ["created_at", 2016-08-19 02:55:02 UTC], ["updated_at", 2016-08-19 02:55:02 UTC]]  (132.0ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A que animal é comparado Satanás?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A que animal é comparado Satanás?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A que animal é comparado Satanás?"], ["created_at", 2016-08-19 02:55:02 UTC], ["updated_at", 2016-08-19 02:55:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Leão"], ["question_id", 1656], ["correct", true], ["created_at", 2016-08-19 02:55:02 UTC], ["updated_at", 2016-08-19 02:55:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Urso"], ["question_id", 1656], ["correct", false], ["created_at", 2016-08-19 02:55:02 UTC], ["updated_at", 2016-08-19 02:55:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pavão"], ["question_id", 1656], ["correct", false], ["created_at", 2016-08-19 02:55:02 UTC], ["updated_at", 2016-08-19 02:55:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Coruja"], ["question_id", 1656], ["correct", false], ["created_at", 2016-08-19 02:55:02 UTC], ["updated_at", 2016-08-19 02:55:02 UTC]]  (124.1ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A que horas do dia Jesus foi levado ao sumo sacerdote e aos anciãos e foi considerado culpado de blasfêmia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A que horas do dia Jesus foi levado ao sumo sacerdote e aos anciãos e foi considerado culpado de blasfêmia?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A que horas do dia Jesus foi levado ao sumo sacerdote e aos anciãos e foi considerado culpado de blasfêmia?"], ["created_at", 2016-08-19 02:55:02 UTC], ["updated_at", 2016-08-19 02:55:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Amanhecer"], ["question_id", 1657], ["correct", true], ["created_at", 2016-08-19 02:55:02 UTC], ["updated_at", 2016-08-19 02:55:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Meio-dia"], ["question_id", 1657], ["correct", false], ["created_at", 2016-08-19 02:55:02 UTC], ["updated_at", 2016-08-19 02:55:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Anoitecer"], ["question_id", 1657], ["correct", false], ["created_at", 2016-08-19 02:55:02 UTC], ["updated_at", 2016-08-19 02:55:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Durante A Madrugada"], ["question_id", 1657], ["correct", false], ["created_at", 2016-08-19 02:55:02 UTC], ["updated_at", 2016-08-19 02:55:02 UTC]]  (192.2ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A que rei foram trazidos bugios e pavões?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A que rei foram trazidos bugios e pavões?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A que rei foram trazidos bugios e pavões?"], ["created_at", 2016-08-19 02:55:02 UTC], ["updated_at", 2016-08-19 02:55:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1658], ["correct", true], ["created_at", 2016-08-19 02:55:02 UTC], ["updated_at", 2016-08-19 02:55:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1658], ["correct", false], ["created_at", 2016-08-19 02:55:02 UTC], ["updated_at", 2016-08-19 02:55:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 1658], ["correct", false], ["created_at", 2016-08-19 02:55:02 UTC], ["updated_at", 2016-08-19 02:55:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Artaxerxes"], ["question_id", 1658], ["correct", false], ["created_at", 2016-08-19 02:55:02 UTC], ["updated_at", 2016-08-19 02:55:02 UTC]]  (147.8ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Abraão deixou todos os seus bens ao morrer?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Abraão deixou todos os seus bens ao morrer?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Abraão deixou todos os seus bens ao morrer?"], ["created_at", 2016-08-19 02:55:02 UTC], ["updated_at", 2016-08-19 02:55:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 1659], ["correct", true], ["created_at", 2016-08-19 02:55:02 UTC], ["updated_at", 2016-08-19 02:55:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sara"], ["question_id", 1659], ["correct", false], ["created_at", 2016-08-19 02:55:02 UTC], ["updated_at", 2016-08-19 02:55:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Agar"], ["question_id", 1659], ["correct", false], ["created_at", 2016-08-19 02:55:02 UTC], ["updated_at", 2016-08-19 02:55:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 1659], ["correct", false], ["created_at", 2016-08-19 02:55:02 UTC], ["updated_at", 2016-08-19 02:55:02 UTC]]  (139.5ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Absalão deu beijos políticos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Absalão deu beijos políticos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Absalão deu beijos políticos?"], ["created_at", 2016-08-19 02:55:02 UTC], ["updated_at", 2016-08-19 02:55:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Cidadãos de Israel"], ["question_id", 1660], ["correct", true], ["created_at", 2016-08-19 02:55:02 UTC], ["updated_at", 2016-08-19 02:55:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Rei Davi"], ["question_id", 1660], ["correct", false], ["created_at", 2016-08-19 02:55:02 UTC], ["updated_at", 2016-08-19 02:55:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Sacerdotes do Templo de Jerusalém"], ["question_id", 1660], ["correct", false], ["created_at", 2016-08-19 02:55:02 UTC], ["updated_at", 2016-08-19 02:55:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Inimigos de Deus"], ["question_id", 1660], ["correct", false], ["created_at", 2016-08-19 02:55:02 UTC], ["updated_at", 2016-08-19 02:55:02 UTC]]  (156.3ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Amnon, filho de Davi, estuprou?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Amnon, filho de Davi, estuprou?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Amnon, filho de Davi, estuprou?"], ["created_at", 2016-08-19 02:55:02 UTC], ["updated_at", 2016-08-19 02:55:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tamar"], ["question_id", 1661], ["correct", true], ["created_at", 2016-08-19 02:55:02 UTC], ["updated_at", 2016-08-19 02:55:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jizreel"], ["question_id", 1661], ["correct", false], ["created_at", 2016-08-19 02:55:02 UTC], ["updated_at", 2016-08-19 02:55:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 1661], ["correct", false], ["created_at", 2016-08-19 02:55:03 UTC], ["updated_at", 2016-08-19 02:55:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Agar"], ["question_id", 1661], ["correct", false], ["created_at", 2016-08-19 02:55:03 UTC], ["updated_at", 2016-08-19 02:55:03 UTC]]  (130.8ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem as esposas hetéias de Esaú trouxeram muita amargura de espírito?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem as esposas hetéias de Esaú trouxeram muita amargura de espírito?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem as esposas hetéias de Esaú trouxeram muita amargura de espírito?"], ["created_at", 2016-08-19 02:55:03 UTC], ["updated_at", 2016-08-19 02:55:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque e Rebeca"], ["question_id", 1662], ["correct", true], ["created_at", 2016-08-19 02:55:03 UTC], ["updated_at", 2016-08-19 02:55:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 1662], ["correct", false], ["created_at", 2016-08-19 02:55:03 UTC], ["updated_at", 2016-08-19 02:55:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Próprio Esaú"], ["question_id", 1662], ["correct", false], ["created_at", 2016-08-19 02:55:03 UTC], ["updated_at", 2016-08-19 02:55:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Filhos de Esaú"], ["question_id", 1662], ["correct", false], ["created_at", 2016-08-19 02:55:03 UTC], ["updated_at", 2016-08-19 02:55:03 UTC]]  (139.3ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Deus acrescentou mais 15 anos de vida, quando esta pessoa contraiu uma doença fatal?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Deus acrescentou mais 15 anos de vida, quando esta pessoa contraiu uma doença fatal?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Deus acrescentou mais 15 anos de vida, quando esta pessoa contraiu uma doença fatal?"], ["created_at", 2016-08-19 02:55:03 UTC], ["updated_at", 2016-08-19 02:55:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ezequias"], ["question_id", 1663], ["correct", true], ["created_at", 2016-08-19 02:55:03 UTC], ["updated_at", 2016-08-19 02:55:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1663], ["correct", false], ["created_at", 2016-08-19 02:55:03 UTC], ["updated_at", 2016-08-19 02:55:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mardoqueu"], ["question_id", 1663], ["correct", false], ["created_at", 2016-08-19 02:55:03 UTC], ["updated_at", 2016-08-19 02:55:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Naamã"], ["question_id", 1663], ["correct", false], ["created_at", 2016-08-19 02:55:03 UTC], ["updated_at", 2016-08-19 02:55:03 UTC]]  (139.2ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem deveria ser levado uma pessoa que possuísse manchas na pele?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem deveria ser levado uma pessoa que possuísse manchas na pele?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem deveria ser levado uma pessoa que possuísse manchas na pele?"], ["created_at", 2016-08-19 02:55:03 UTC], ["updated_at", 2016-08-19 02:55:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sacerdote"], ["question_id", 1664], ["correct", true], ["created_at", 2016-08-19 02:55:03 UTC], ["updated_at", 2016-08-19 02:55:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei"], ["question_id", 1664], ["correct", false], ["created_at", 2016-08-19 02:55:03 UTC], ["updated_at", 2016-08-19 02:55:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Profeta"], ["question_id", 1664], ["correct", false], ["created_at", 2016-08-19 02:55:03 UTC], ["updated_at", 2016-08-19 02:55:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Levita"], ["question_id", 1664], ["correct", false], ["created_at", 2016-08-19 02:55:03 UTC], ["updated_at", 2016-08-19 02:55:03 UTC]]  (174.0ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Elias desafiou no Monte Carmelo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Elias desafiou no Monte Carmelo?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Elias desafiou no Monte Carmelo?"], ["created_at", 2016-08-19 02:55:03 UTC], ["updated_at", 2016-08-19 02:55:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sacerdotes de Baal"], ["question_id", 1665], ["correct", true], ["created_at", 2016-08-19 02:55:03 UTC], ["updated_at", 2016-08-19 02:55:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rainha Jezabel"], ["question_id", 1665], ["correct", false], ["created_at", 2016-08-19 02:55:03 UTC], ["updated_at", 2016-08-19 02:55:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei Acaz"], ["question_id", 1665], ["correct", false], ["created_at", 2016-08-19 02:55:03 UTC], ["updated_at", 2016-08-19 02:55:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Povo de Israel"], ["question_id", 1665], ["correct", false], ["created_at", 2016-08-19 02:55:03 UTC], ["updated_at", 2016-08-19 02:55:03 UTC]]  (124.0ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Eliseu ajudou, enchendo várias vasilhas de azeite?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Eliseu ajudou, enchendo várias vasilhas de azeite?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Eliseu ajudou, enchendo várias vasilhas de azeite?"], ["created_at", 2016-08-19 02:55:03 UTC], ["updated_at", 2016-08-19 02:55:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Uma Viúva Pobre"], ["question_id", 1666], ["correct", true], ["created_at", 2016-08-19 02:55:03 UTC], ["updated_at", 2016-08-19 02:55:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Mãe"], ["question_id", 1666], ["correct", false], ["created_at", 2016-08-19 02:55:03 UTC], ["updated_at", 2016-08-19 02:55:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Uma Portadora de Lepra"], ["question_id", 1666], ["correct", false], ["created_at", 2016-08-19 02:55:03 UTC], ["updated_at", 2016-08-19 02:55:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Uma Cega"], ["question_id", 1666], ["correct", false], ["created_at", 2016-08-19 02:55:03 UTC], ["updated_at", 2016-08-19 02:55:03 UTC]]  (157.8ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem foi oferecido, por acidente, um caldo venenoso?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem foi oferecido, por acidente, um caldo venenoso?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem foi oferecido, por acidente, um caldo venenoso?"], ["created_at", 2016-08-19 02:55:03 UTC], ["updated_at", 2016-08-19 02:55:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 1667], ["correct", true], ["created_at", 2016-08-19 02:55:03 UTC], ["updated_at", 2016-08-19 02:55:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eli"], ["question_id", 1667], ["correct", false], ["created_at", 2016-08-19 02:55:03 UTC], ["updated_at", 2016-08-19 02:55:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 1667], ["correct", false], ["created_at", 2016-08-19 02:55:03 UTC], ["updated_at", 2016-08-19 02:55:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elismael"], ["question_id", 1667], ["correct", false], ["created_at", 2016-08-19 02:55:03 UTC], ["updated_at", 2016-08-19 02:55:03 UTC]]  (140.4ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Hamã ofereceu 10.000 talentos de prata, com o objetivo de exterminar os judeus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Hamã ofereceu 10.000 talentos de prata, com o objetivo de exterminar os judeus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Hamã ofereceu 10.000 talentos de prata, com o objetivo de exterminar os judeus?"], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Rei Assuero"], ["question_id", 1668], ["correct", true], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "À Rainha Ester"], ["question_id", 1668], ["correct", false], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "À Rainha Vasti"], ["question_id", 1668], ["correct", false], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Mardoqueu"], ["question_id", 1668], ["correct", false], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]]  (131.2ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Jacó deu um beijo enganoso?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Jacó deu um beijo enganoso?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Jacó deu um beijo enganoso?"], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 1669], ["correct", true], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 1669], ["correct", false], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 1669], ["correct", false], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 1669], ["correct", false], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]]  (139.6ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Jacó fingiu ser?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Jacó fingiu ser?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Jacó fingiu ser?"], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 1670], ["correct", true], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 1670], ["correct", false], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 1670], ["correct", false], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 1670], ["correct", false], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]]  (140.5ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Jesus disse da necessidade em nascer de novo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Jesus disse da necessidade em nascer de novo?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Jesus disse da necessidade em nascer de novo?"], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nicodemos"], ["question_id", 1671], ["correct", true], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Barbabé"], ["question_id", 1671], ["correct", false], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Áquila"], ["question_id", 1671], ["correct", false], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 1671], ["correct", false], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]]  (149.9ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Jesus pediu que fossem buscar um jumento emprestado para entrar em Jerusalém?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Jesus pediu que fossem buscar um jumento emprestado para entrar em Jerusalém?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Jesus pediu que fossem buscar um jumento emprestado para entrar em Jerusalém?"], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Discípulos"], ["question_id", 1672], ["correct", true], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José de Arimatéia"], ["question_id", 1672], ["correct", false], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anás"], ["question_id", 1672], ["correct", false], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caifás"], ["question_id", 1672], ["correct", false], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]]  (142.3ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Jesus perguntou 3 vezes se esta pessoa O amava?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Jesus perguntou 3 vezes se esta pessoa O amava?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Jesus perguntou 3 vezes se esta pessoa O amava?"], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 1673], ["correct", true], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 1673], ["correct", false], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas Iscariotes"], ["question_id", 1673], ["correct", false], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 1673], ["correct", false], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]]  (139.7ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Joabe matou para acabar com a rebelião contra o reino de Davi?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Joabe matou para acabar com a rebelião contra o reino de Davi?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Joabe matou para acabar com a rebelião contra o reino de Davi?"], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 1674], ["correct", true], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeroboão"], ["question_id", 1674], ["correct", false], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Roboão"], ["question_id", 1674], ["correct", false], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Labão"], ["question_id", 1674], ["correct", false], ["created_at", 2016-08-19 02:55:04 UTC], ["updated_at", 2016-08-19 02:55:04 UTC]]  (189.7ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem João Batista estava se dirigindo quando disse a frase: \"Raça de víboras, quem vos ensinou a fugir da ira vindoura?\""], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem João Batista estava se dirigindo quando disse a frase: \"Raça de víboras, quem vos ensinou a fugir da ira vindoura?\""], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem João Batista estava se dirigindo quando disse a frase: \"Raça de víboras, quem vos ensinou a fugir da ira vindoura?\""], ["created_at", 2016-08-19 02:55:05 UTC], ["updated_at", 2016-08-19 02:55:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fariseus"], ["question_id", 1675], ["correct", true], ["created_at", 2016-08-19 02:55:05 UTC], ["updated_at", 2016-08-19 02:55:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Líderes Religiosos"], ["question_id", 1675], ["correct", false], ["created_at", 2016-08-19 02:55:05 UTC], ["updated_at", 2016-08-19 02:55:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Soldados Romanos"], ["question_id", 1675], ["correct", false], ["created_at", 2016-08-19 02:55:05 UTC], ["updated_at", 2016-08-19 02:55:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes"], ["question_id", 1675], ["correct", false], ["created_at", 2016-08-19 02:55:05 UTC], ["updated_at", 2016-08-19 02:55:05 UTC]]  (199.2ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem José disse a frase: \"Vós sois espias\"?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem José disse a frase: \"Vós sois espias\"?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem José disse a frase: \"Vós sois espias\"?"], ["created_at", 2016-08-19 02:55:05 UTC], ["updated_at", 2016-08-19 02:55:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Seus Irmãos"], ["question_id", 1676], ["correct", true], ["created_at", 2016-08-19 02:55:05 UTC], ["updated_at", 2016-08-19 02:55:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Inimigos do Povo Egípcio"], ["question_id", 1676], ["correct", false], ["created_at", 2016-08-19 02:55:05 UTC], ["updated_at", 2016-08-19 02:55:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Povo Hebreu"], ["question_id", 1676], ["correct", false], ["created_at", 2016-08-19 02:55:05 UTC], ["updated_at", 2016-08-19 02:55:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Filhos do Faraó"], ["question_id", 1676], ["correct", false], ["created_at", 2016-08-19 02:55:05 UTC], ["updated_at", 2016-08-19 02:55:05 UTC]]  (164.3ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Labão enganou?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Labão enganou?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Labão enganou?"], ["created_at", 2016-08-19 02:55:05 UTC], ["updated_at", 2016-08-19 02:55:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 1677], ["correct", true], ["created_at", 2016-08-19 02:55:05 UTC], ["updated_at", 2016-08-19 02:55:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 1677], ["correct", false], ["created_at", 2016-08-19 02:55:05 UTC], ["updated_at", 2016-08-19 02:55:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 1677], ["correct", false], ["created_at", 2016-08-19 02:55:05 UTC], ["updated_at", 2016-08-19 02:55:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 1677], ["correct", false], ["created_at", 2016-08-19 02:55:05 UTC], ["updated_at", 2016-08-19 02:55:05 UTC]]  (181.3ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Maria, mãe de Jesus, visitou quando ela descobriu que estava grávida?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Maria, mãe de Jesus, visitou quando ela descobriu que estava grávida?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Maria, mãe de Jesus, visitou quando ela descobriu que estava grávida?"], ["created_at", 2016-08-19 02:55:05 UTC], ["updated_at", 2016-08-19 02:55:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "À Sua Prima Isabel"], ["question_id", 1678], ["correct", true], ["created_at", 2016-08-19 02:55:05 UTC], ["updated_at", 2016-08-19 02:55:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "À Sua Irmã, Marta"], ["question_id", 1678], ["correct", false], ["created_at", 2016-08-19 02:55:05 UTC], ["updated_at", 2016-08-19 02:55:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Seu Irmão, Lázaro"], ["question_id", 1678], ["correct", false], ["created_at", 2016-08-19 02:55:05 UTC], ["updated_at", 2016-08-19 02:55:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "À Sua Mãe, Joana"], ["question_id", 1678], ["correct", false], ["created_at", 2016-08-19 02:55:05 UTC], ["updated_at", 2016-08-19 02:55:05 UTC]]  (223.0ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Noemi deu um beijo de tristeza?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Noemi deu um beijo de tristeza?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Noemi deu um beijo de tristeza?"], ["created_at", 2016-08-19 02:55:05 UTC], ["updated_at", 2016-08-19 02:55:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rute e Orfa"], ["question_id", 1679], ["correct", true], ["created_at", 2016-08-19 02:55:05 UTC], ["updated_at", 2016-08-19 02:55:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Malom e Quiliom"], ["question_id", 1679], ["correct", false], ["created_at", 2016-08-19 02:55:05 UTC], ["updated_at", 2016-08-19 02:55:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Boaz e Rute"], ["question_id", 1679], ["correct", false], ["created_at", 2016-08-19 02:55:05 UTC], ["updated_at", 2016-08-19 02:55:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Boaz e Orfa"], ["question_id", 1679], ["correct", false], ["created_at", 2016-08-19 02:55:05 UTC], ["updated_at", 2016-08-19 02:55:05 UTC]]  (147.9ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o anjo Gabriel avisou que Maria foi escolhida para ser a mãe de Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o anjo Gabriel avisou que Maria foi escolhida para ser a mãe de Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem o anjo Gabriel avisou que Maria foi escolhida para ser a mãe de Jesus?"], ["created_at", 2016-08-19 02:55:06 UTC], ["updated_at", 2016-08-19 02:55:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Própria Maria"], ["question_id", 1680], ["correct", true], ["created_at", 2016-08-19 02:55:06 UTC], ["updated_at", 2016-08-19 02:55:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A José, Seu Esposo"], ["question_id", 1680], ["correct", false], ["created_at", 2016-08-19 02:55:06 UTC], ["updated_at", 2016-08-19 02:55:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A João Batista"], ["question_id", 1680], ["correct", false], ["created_at", 2016-08-19 02:55:06 UTC], ["updated_at", 2016-08-19 02:55:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Profeta Zacarias"], ["question_id", 1680], ["correct", false], ["created_at", 2016-08-19 02:55:06 UTC], ["updated_at", 2016-08-19 02:55:06 UTC]]  (147.6ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o Faraó nomeou como governador de todo o Egito?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o Faraó nomeou como governador de todo o Egito?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem o Faraó nomeou como governador de todo o Egito?"], ["created_at", 2016-08-19 02:55:06 UTC], ["updated_at", 2016-08-19 02:55:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 1681], ["correct", true], ["created_at", 2016-08-19 02:55:06 UTC], ["updated_at", 2016-08-19 02:55:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 1681], ["correct", false], ["created_at", 2016-08-19 02:55:06 UTC], ["updated_at", 2016-08-19 02:55:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 1681], ["correct", false], ["created_at", 2016-08-19 02:55:06 UTC], ["updated_at", 2016-08-19 02:55:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 1681], ["correct", false], ["created_at", 2016-08-19 02:55:06 UTC], ["updated_at", 2016-08-19 02:55:06 UTC]]  (139.6ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o povo pediu que libertassem a Barrabás do que a Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o povo pediu que libertassem a Barrabás do que a Jesus?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem o povo pediu que libertassem a Barrabás do que a Jesus?"], ["created_at", 2016-08-19 02:55:06 UTC], ["updated_at", 2016-08-19 02:55:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 1682], ["correct", true], ["created_at", 2016-08-19 02:55:06 UTC], ["updated_at", 2016-08-19 02:55:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes, O Grande"], ["question_id", 1682], ["correct", false], ["created_at", 2016-08-19 02:55:06 UTC], ["updated_at", 2016-08-19 02:55:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Sumos-sacerdotes"], ["question_id", 1682], ["correct", false], ["created_at", 2016-08-19 02:55:06 UTC], ["updated_at", 2016-08-19 02:55:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Imperador Romano"], ["question_id", 1682], ["correct", false], ["created_at", 2016-08-19 02:55:06 UTC], ["updated_at", 2016-08-19 02:55:06 UTC]]  (174.4ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o profeta Eliseu orientou lavar-se 7 vezes no rio Jordão para curar-se da lepra?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o profeta Eliseu orientou lavar-se 7 vezes no rio Jordão para curar-se da lepra?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem o profeta Eliseu orientou lavar-se 7 vezes no rio Jordão para curar-se da lepra?"], ["created_at", 2016-08-19 02:55:06 UTC], ["updated_at", 2016-08-19 02:55:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Comandante Naamã"], ["question_id", 1683], ["correct", true], ["created_at", 2016-08-19 02:55:06 UTC], ["updated_at", 2016-08-19 02:55:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cego Bartimeu"], ["question_id", 1683], ["correct", false], ["created_at", 2016-08-19 02:55:06 UTC], ["updated_at", 2016-08-19 02:55:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aleijado Lázaro"], ["question_id", 1683], ["correct", false], ["created_at", 2016-08-19 02:55:06 UTC], ["updated_at", 2016-08-19 02:55:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei Silas"], ["question_id", 1683], ["correct", false], ["created_at", 2016-08-19 02:55:06 UTC], ["updated_at", 2016-08-19 02:55:06 UTC]]  (173.1ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o rei Davi devolveu todas as propriedades pessoais de Saul?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o rei Davi devolveu todas as propriedades pessoais de Saul?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem o rei Davi devolveu todas as propriedades pessoais de Saul?"], ["created_at", 2016-08-19 02:55:06 UTC], ["updated_at", 2016-08-19 02:55:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mefibosete"], ["question_id", 1684], ["correct", true], ["created_at", 2016-08-19 02:55:06 UTC], ["updated_at", 2016-08-19 02:55:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabote"], ["question_id", 1684], ["correct", false], ["created_at", 2016-08-19 02:55:06 UTC], ["updated_at", 2016-08-19 02:55:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jônatas"], ["question_id", 1684], ["correct", false], ["created_at", 2016-08-19 02:55:06 UTC], ["updated_at", 2016-08-19 02:55:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 1684], ["correct", false], ["created_at", 2016-08-19 02:55:06 UTC], ["updated_at", 2016-08-19 02:55:06 UTC]]  (147.4ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o rei Davi, do teto de sua casa, viu banhando-se?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o rei Davi, do teto de sua casa, viu banhando-se?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem o rei Davi, do teto de sua casa, viu banhando-se?"], ["created_at", 2016-08-19 02:55:06 UTC], ["updated_at", 2016-08-19 02:55:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bate-seba"], ["question_id", 1685], ["correct", true], ["created_at", 2016-08-19 02:55:06 UTC], ["updated_at", 2016-08-19 02:55:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Agar"], ["question_id", 1685], ["correct", false], ["created_at", 2016-08-19 02:55:06 UTC], ["updated_at", 2016-08-19 02:55:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sara"], ["question_id", 1685], ["correct", false], ["created_at", 2016-08-19 02:55:06 UTC], ["updated_at", 2016-08-19 02:55:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Milquéias"], ["question_id", 1685], ["correct", false], ["created_at", 2016-08-19 02:55:06 UTC], ["updated_at", 2016-08-19 02:55:06 UTC]]  (139.7ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o rei Ezequias mostrou tolamente os tesouros do Templo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o rei Ezequias mostrou tolamente os tesouros do Templo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem o rei Ezequias mostrou tolamente os tesouros do Templo?"], ["created_at", 2016-08-19 02:55:07 UTC], ["updated_at", 2016-08-19 02:55:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Babilônios"], ["question_id", 1686], ["correct", true], ["created_at", 2016-08-19 02:55:07 UTC], ["updated_at", 2016-08-19 02:55:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Persas"], ["question_id", 1686], ["correct", false], ["created_at", 2016-08-19 02:55:07 UTC], ["updated_at", 2016-08-19 02:55:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Romanos"], ["question_id", 1686], ["correct", false], ["created_at", 2016-08-19 02:55:07 UTC], ["updated_at", 2016-08-19 02:55:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Fenícios"], ["question_id", 1686], ["correct", false], ["created_at", 2016-08-19 02:55:07 UTC], ["updated_at", 2016-08-19 02:55:07 UTC]]  (147.8ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o rei Manassés queimou em sacrifício?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o rei Manassés queimou em sacrifício?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem o rei Manassés queimou em sacrifício?"], ["created_at", 2016-08-19 02:55:07 UTC], ["updated_at", 2016-08-19 02:55:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Próprio Filho"], ["question_id", 1687], ["correct", true], ["created_at", 2016-08-19 02:55:07 UTC], ["updated_at", 2016-08-19 02:55:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Inimigos"], ["question_id", 1687], ["correct", false], ["created_at", 2016-08-19 02:55:07 UTC], ["updated_at", 2016-08-19 02:55:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Esposa"], ["question_id", 1687], ["correct", false], ["created_at", 2016-08-19 02:55:07 UTC], ["updated_at", 2016-08-19 02:55:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Mãe"], ["question_id", 1687], ["correct", false], ["created_at", 2016-08-19 02:55:07 UTC], ["updated_at", 2016-08-19 02:55:07 UTC]]  (149.1ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o servo de Abraão deu como agradecimento 1 argola de ouro e 2 pulseiras de ouro?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem o servo de Abraão deu como agradecimento 1 argola de ouro e 2 pulseiras de ouro?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem o servo de Abraão deu como agradecimento 1 argola de ouro e 2 pulseiras de ouro?"], ["created_at", 2016-08-19 02:55:07 UTC], ["updated_at", 2016-08-19 02:55:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 1688], ["correct", true], ["created_at", 2016-08-19 02:55:07 UTC], ["updated_at", 2016-08-19 02:55:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Raabe"], ["question_id", 1688], ["correct", false], ["created_at", 2016-08-19 02:55:07 UTC], ["updated_at", 2016-08-19 02:55:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sara"], ["question_id", 1688], ["correct", false], ["created_at", 2016-08-19 02:55:07 UTC], ["updated_at", 2016-08-19 02:55:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Agar"], ["question_id", 1688], ["correct", false], ["created_at", 2016-08-19 02:55:07 UTC], ["updated_at", 2016-08-19 02:55:07 UTC]]  (148.8ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem os príncipes filisteus ofereceram 1.100 moedas de prata de cada um deles?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem os príncipes filisteus ofereceram 1.100 moedas de prata de cada um deles?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem os príncipes filisteus ofereceram 1.100 moedas de prata de cada um deles?"], ["created_at", 2016-08-19 02:55:07 UTC], ["updated_at", 2016-08-19 02:55:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dalila"], ["question_id", 1689], ["correct", true], ["created_at", 2016-08-19 02:55:07 UTC], ["updated_at", 2016-08-19 02:55:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Diná"], ["question_id", 1689], ["correct", false], ["created_at", 2016-08-19 02:55:07 UTC], ["updated_at", 2016-08-19 02:55:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Débora"], ["question_id", 1689], ["correct", false], ["created_at", 2016-08-19 02:55:07 UTC], ["updated_at", 2016-08-19 02:55:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dinéia"], ["question_id", 1689], ["correct", false], ["created_at", 2016-08-19 02:55:07 UTC], ["updated_at", 2016-08-19 02:55:07 UTC]]  (149.4ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem os príncipes filisteus pediram que conseguisse descobrir o segredo da força de Sansão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem os príncipes filisteus pediram que conseguisse descobrir o segredo da força de Sansão?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem os príncipes filisteus pediram que conseguisse descobrir o segredo da força de Sansão?"], ["created_at", 2016-08-19 02:55:07 UTC], ["updated_at", 2016-08-19 02:55:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dalila"], ["question_id", 1690], ["correct", true], ["created_at", 2016-08-19 02:55:07 UTC], ["updated_at", 2016-08-19 02:55:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Prostituta de Gaza"], ["question_id", 1690], ["correct", false], ["created_at", 2016-08-19 02:55:07 UTC], ["updated_at", 2016-08-19 02:55:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Emaim"], ["question_id", 1690], ["correct", false], ["created_at", 2016-08-19 02:55:07 UTC], ["updated_at", 2016-08-19 02:55:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Líderes Religiosos"], ["question_id", 1690], ["correct", false], ["created_at", 2016-08-19 02:55:07 UTC], ["updated_at", 2016-08-19 02:55:07 UTC]]  (123.4ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem os Reis Magos estavam procurando como o menino \"Rei dos Judeus\"?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem os Reis Magos estavam procurando como o menino \"Rei dos Judeus\"?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem os Reis Magos estavam procurando como o menino \"Rei dos Judeus\"?"], ["created_at", 2016-08-19 02:55:07 UTC], ["updated_at", 2016-08-19 02:55:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 1691], ["correct", true], ["created_at", 2016-08-19 02:55:07 UTC], ["updated_at", 2016-08-19 02:55:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sumo-sacerdote Ananias"], ["question_id", 1691], ["correct", false], ["created_at", 2016-08-19 02:55:07 UTC], ["updated_at", 2016-08-19 02:55:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1691], ["correct", false], ["created_at", 2016-08-19 02:55:07 UTC], ["updated_at", 2016-08-19 02:55:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 1691], ["correct", false], ["created_at", 2016-08-19 02:55:07 UTC], ["updated_at", 2016-08-19 02:55:07 UTC]]  (150.1ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem os soldados egípcios estavam perseguindo quando o Mar Vermelho dividiu-se em dois?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem os soldados egípcios estavam perseguindo quando o Mar Vermelho dividiu-se em dois?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem os soldados egípcios estavam perseguindo quando o Mar Vermelho dividiu-se em dois?"], ["created_at", 2016-08-19 02:55:08 UTC], ["updated_at", 2016-08-19 02:55:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Povo Israelita"], ["question_id", 1692], ["correct", true], ["created_at", 2016-08-19 02:55:08 UTC], ["updated_at", 2016-08-19 02:55:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Exército Israelita"], ["question_id", 1692], ["correct", false], ["created_at", 2016-08-19 02:55:08 UTC], ["updated_at", 2016-08-19 02:55:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Líderes Religiosos do Povo Israelita"], ["question_id", 1692], ["correct", false], ["created_at", 2016-08-19 02:55:08 UTC], ["updated_at", 2016-08-19 02:55:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Escravos do Povo Israelita"], ["question_id", 1692], ["correct", false], ["created_at", 2016-08-19 02:55:08 UTC], ["updated_at", 2016-08-19 02:55:08 UTC]]  (132.6ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Rebeca ajudou a praticar uma fraude?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Rebeca ajudou a praticar uma fraude?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Rebeca ajudou a praticar uma fraude?"], ["created_at", 2016-08-19 02:55:08 UTC], ["updated_at", 2016-08-19 02:55:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Filho"], ["question_id", 1693], ["correct", true], ["created_at", 2016-08-19 02:55:08 UTC], ["updated_at", 2016-08-19 02:55:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Marido"], ["question_id", 1693], ["correct", false], ["created_at", 2016-08-19 02:55:08 UTC], ["updated_at", 2016-08-19 02:55:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Mãe"], ["question_id", 1693], ["correct", false], ["created_at", 2016-08-19 02:55:08 UTC], ["updated_at", 2016-08-19 02:55:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Empregada"], ["question_id", 1693], ["correct", false], ["created_at", 2016-08-19 02:55:08 UTC], ["updated_at", 2016-08-19 02:55:08 UTC]]  (157.7ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Rute abandonou para poder acompanhar a sogra?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Rute abandonou para poder acompanhar a sogra?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Rute abandonou para poder acompanhar a sogra?"], ["created_at", 2016-08-19 02:55:08 UTC], ["updated_at", 2016-08-19 02:55:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Família"], ["question_id", 1694], ["correct", true], ["created_at", 2016-08-19 02:55:08 UTC], ["updated_at", 2016-08-19 02:55:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Marido"], ["question_id", 1694], ["correct", false], ["created_at", 2016-08-19 02:55:08 UTC], ["updated_at", 2016-08-19 02:55:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus 2 Filhos"], ["question_id", 1694], ["correct", false], ["created_at", 2016-08-19 02:55:08 UTC], ["updated_at", 2016-08-19 02:55:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ninguém, Pois Era Sozinha No Mundo"], ["question_id", 1694], ["correct", false], ["created_at", 2016-08-19 02:55:08 UTC], ["updated_at", 2016-08-19 02:55:08 UTC]]  (181.2ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Samuel deu um beijo de coroação?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Samuel deu um beijo de coroação?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Samuel deu um beijo de coroação?"], ["created_at", 2016-08-19 02:55:08 UTC], ["updated_at", 2016-08-19 02:55:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 1695], ["correct", true], ["created_at", 2016-08-19 02:55:08 UTC], ["updated_at", 2016-08-19 02:55:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 1695], ["correct", false], ["created_at", 2016-08-19 02:55:08 UTC], ["updated_at", 2016-08-19 02:55:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 1695], ["correct", false], ["created_at", 2016-08-19 02:55:08 UTC], ["updated_at", 2016-08-19 02:55:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acaz"], ["question_id", 1695], ["correct", false], ["created_at", 2016-08-19 02:55:08 UTC], ["updated_at", 2016-08-19 02:55:08 UTC]]  (322.5ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Sansão pediu uma filha dos filisteus, quando este foi à cidade de Timnate?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Sansão pediu uma filha dos filisteus, quando este foi à cidade de Timnate?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Sansão pediu uma filha dos filisteus, quando este foi à cidade de Timnate?"], ["created_at", 2016-08-19 02:55:08 UTC], ["updated_at", 2016-08-19 02:55:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Seus Pais"], ["question_id", 1696], ["correct", true], ["created_at", 2016-08-19 02:55:08 UTC], ["updated_at", 2016-08-19 02:55:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Seus Sogros"], ["question_id", 1696], ["correct", false], ["created_at", 2016-08-19 02:55:08 UTC], ["updated_at", 2016-08-19 02:55:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Senhor"], ["question_id", 1696], ["correct", false], ["created_at", 2016-08-19 02:55:08 UTC], ["updated_at", 2016-08-19 02:55:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Seu Criado"], ["question_id", 1696], ["correct", false], ["created_at", 2016-08-19 02:55:08 UTC], ["updated_at", 2016-08-19 02:55:08 UTC]]  (172.5ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Satanás levou ao pináculo do Templo e o tentou para saltar dali?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A quem Satanás levou ao pináculo do Templo e o tentou para saltar dali?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A quem Satanás levou ao pináculo do Templo e o tentou para saltar dali?"], ["created_at", 2016-08-19 02:55:09 UTC], ["updated_at", 2016-08-19 02:55:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 1697], ["correct", true], ["created_at", 2016-08-19 02:55:09 UTC], ["updated_at", 2016-08-19 02:55:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José de Arimatéia"], ["question_id", 1697], ["correct", false], ["created_at", 2016-08-19 02:55:09 UTC], ["updated_at", 2016-08-19 02:55:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Barrabás"], ["question_id", 1697], ["correct", false], ["created_at", 2016-08-19 02:55:09 UTC], ["updated_at", 2016-08-19 02:55:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 1697], ["correct", false], ["created_at", 2016-08-19 02:55:09 UTC], ["updated_at", 2016-08-19 02:55:09 UTC]]  (282.6ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A rainha Jezabel foi casada com o rei:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A rainha Jezabel foi casada com o rei:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A rainha Jezabel foi casada com o rei:"], ["created_at", 2016-08-19 02:55:09 UTC], ["updated_at", 2016-08-19 02:55:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 1698], ["correct", true], ["created_at", 2016-08-19 02:55:09 UTC], ["updated_at", 2016-08-19 02:55:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1698], ["correct", false], ["created_at", 2016-08-19 02:55:09 UTC], ["updated_at", 2016-08-19 02:55:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1698], ["correct", false], ["created_at", 2016-08-19 02:55:09 UTC], ["updated_at", 2016-08-19 02:55:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 1698], ["correct", false], ["created_at", 2016-08-19 02:55:09 UTC], ["updated_at", 2016-08-19 02:55:09 UTC]]  (157.5ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A sogra de Pedro foi curada por Jesus na cidade de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A sogra de Pedro foi curada por Jesus na cidade de:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A sogra de Pedro foi curada por Jesus na cidade de:"], ["created_at", 2016-08-19 02:55:09 UTC], ["updated_at", 2016-08-19 02:55:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cafarnaum"], ["question_id", 1699], ["correct", true], ["created_at", 2016-08-19 02:55:09 UTC], ["updated_at", 2016-08-19 02:55:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Betânia"], ["question_id", 1699], ["correct", false], ["created_at", 2016-08-19 02:55:09 UTC], ["updated_at", 2016-08-19 02:55:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nazaré"], ["question_id", 1699], ["correct", false], ["created_at", 2016-08-19 02:55:09 UTC], ["updated_at", 2016-08-19 02:55:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belém"], ["question_id", 1699], ["correct", false], ["created_at", 2016-08-19 02:55:09 UTC], ["updated_at", 2016-08-19 02:55:09 UTC]]  (157.5ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A unção e o beijo que eram dados eram sinais de que:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A unção e o beijo que eram dados eram sinais de que:"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A unção e o beijo que eram dados eram sinais de que:"], ["created_at", 2016-08-19 02:55:09 UTC], ["updated_at", 2016-08-19 02:55:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Era O Homem Indicado Por Deus Para Ser O Novo Rei"], ["question_id", 1700], ["correct", true], ["created_at", 2016-08-19 02:55:09 UTC], ["updated_at", 2016-08-19 02:55:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Pessoas Estavam Apaixonadas"], ["question_id", 1700], ["correct", false], ["created_at", 2016-08-19 02:55:09 UTC], ["updated_at", 2016-08-19 02:55:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Pessoa Seria Executada"], ["question_id", 1700], ["correct", false], ["created_at", 2016-08-19 02:55:09 UTC], ["updated_at", 2016-08-19 02:55:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Pessoa Teria Vida Longa e Próspera"], ["question_id", 1700], ["correct", false], ["created_at", 2016-08-19 02:55:09 UTC], ["updated_at", 2016-08-19 02:55:09 UTC]]  (156.2ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A vara que brotou pertencia a:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "A vara que brotou pertencia a:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "A vara que brotou pertencia a:"], ["created_at", 2016-08-19 02:55:09 UTC], ["updated_at", 2016-08-19 02:55:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 1701], ["correct", true], ["created_at", 2016-08-19 02:55:09 UTC], ["updated_at", 2016-08-19 02:55:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1701], ["correct", false], ["created_at", 2016-08-19 02:55:09 UTC], ["updated_at", 2016-08-19 02:55:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1701], ["correct", false], ["created_at", 2016-08-19 02:55:09 UTC], ["updated_at", 2016-08-19 02:55:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noé"], ["question_id", 1701], ["correct", false], ["created_at", 2016-08-19 02:55:09 UTC], ["updated_at", 2016-08-19 02:55:09 UTC]]  (149.3ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Abel e Caim tiveram mais quantos irmãos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Abel e Caim tiveram mais quantos irmãos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Abel e Caim tiveram mais quantos irmãos?"], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Muitos Outros"], ["question_id", 1702], ["correct", true], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas Sete"], ["question_id", 1702], ["correct", false], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas 1"], ["question_id", 1702], ["correct", false], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mais Nenhum"], ["question_id", 1702], ["correct", false], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]]  (139.4ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Abraão também foi conhecido com o:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Abraão também foi conhecido com o:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Abraão também foi conhecido com o:"], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pai de Muitas Nações"], ["question_id", 1703], ["correct", true], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Homem de Deus"], ["question_id", 1703], ["correct", false], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cavaleiro do Apocalipse"], ["question_id", 1703], ["correct", false], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Discípulo Amado"], ["question_id", 1703], ["correct", false], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]]  (147.6ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Abraão teve filhos com quantas mulheres?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Abraão teve filhos com quantas mulheres?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Abraão teve filhos com quantas mulheres?"], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 1704], ["correct", true], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 1704], ["correct", false], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 1704], ["correct", false], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 1704], ["correct", false], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]]  (139.2ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Absalão era celebrado devido à:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Absalão era celebrado devido à:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Absalão era celebrado devido à:"], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Beleza"], ["question_id", 1705], ["correct", true], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Inteligência"], ["question_id", 1705], ["correct", false], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Sagacidade"], ["question_id", 1705], ["correct", false], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Capacidade de Mentir"], ["question_id", 1705], ["correct", false], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]]  (139.8ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Absalão matou Amnom pelo fato deste ter estuprado Tamar. Qual era o grau de parentesco entre Amnom e Absalão?"], ["LIMIT", 1]]  (0.2ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Absalão matou Amnom pelo fato deste ter estuprado Tamar. Qual era o grau de parentesco entre Amnom e Absalão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Absalão matou Amnom pelo fato deste ter estuprado Tamar. Qual era o grau de parentesco entre Amnom e Absalão?"], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmãos"], ["question_id", 1706], ["correct", true], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pai e Filho"], ["question_id", 1706], ["correct", false], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filho e Pai"], ["question_id", 1706], ["correct", false], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Avô e Neto"], ["question_id", 1706], ["correct", false], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]]  (147.7ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Absalão tentou tomar à força o reino de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Absalão tentou tomar à força o reino de:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Absalão tentou tomar à força o reino de:"], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1707], ["correct", true], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1707], ["correct", false], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josias"], ["question_id", 1707], ["correct", false], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zedequias"], ["question_id", 1707], ["correct", false], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]]  (149.4ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Adão e Eva moravam em qual jardim?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Adão e Eva moravam em qual jardim?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Adão e Eva moravam em qual jardim?"], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Éden"], ["question_id", 1708], ["correct", true], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paraíso"], ["question_id", 1708], ["correct", false], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Getsêmani"], ["question_id", 1708], ["correct", false], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hebrom"], ["question_id", 1708], ["correct", false], ["created_at", 2016-08-19 02:55:10 UTC], ["updated_at", 2016-08-19 02:55:10 UTC]]  (157.6ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Agar era de Sara, esposa de Abraão:"], ["LIMIT", 1]]  (0.2ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Agar era de Sara, esposa de Abraão:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Agar era de Sara, esposa de Abraão:"], ["created_at", 2016-08-19 02:55:11 UTC], ["updated_at", 2016-08-19 02:55:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Criada"], ["question_id", 1709], ["correct", true], ["created_at", 2016-08-19 02:55:11 UTC], ["updated_at", 2016-08-19 02:55:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Irmã"], ["question_id", 1709], ["correct", false], ["created_at", 2016-08-19 02:55:11 UTC], ["updated_at", 2016-08-19 02:55:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Concunhada"], ["question_id", 1709], ["correct", false], ["created_at", 2016-08-19 02:55:11 UTC], ["updated_at", 2016-08-19 02:55:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Nora"], ["question_id", 1709], ["correct", false], ["created_at", 2016-08-19 02:55:11 UTC], ["updated_at", 2016-08-19 02:55:11 UTC]]  (147.6ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Aitofel, influente conselheiro do rei Davi, desertou para o lado de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Aitofel, influente conselheiro do rei Davi, desertou para o lado de:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Aitofel, influente conselheiro do rei Davi, desertou para o lado de:"], ["created_at", 2016-08-19 02:55:11 UTC], ["updated_at", 2016-08-19 02:55:11 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 1710], ["correct", true], ["created_at", 2016-08-19 02:55:11 UTC], ["updated_at", 2016-08-19 02:55:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Labão"], ["question_id", 1710], ["correct", false], ["created_at", 2016-08-19 02:55:11 UTC], ["updated_at", 2016-08-19 02:55:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeroboão"], ["question_id", 1710], ["correct", false], ["created_at", 2016-08-19 02:55:11 UTC], ["updated_at", 2016-08-19 02:55:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Roboão"], ["question_id", 1710], ["correct", false], ["created_at", 2016-08-19 02:55:11 UTC], ["updated_at", 2016-08-19 02:55:11 UTC]]  (147.6ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além da safra de centeio, qual outra safra dos egípcios sobreviveu quando Deus enviou as pedras de fogo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além da safra de centeio, qual outra safra dos egípcios sobreviveu quando Deus enviou as pedras de fogo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além da safra de centeio, qual outra safra dos egípcios sobreviveu quando Deus enviou as pedras de fogo?"], ["created_at", 2016-08-19 02:55:11 UTC], ["updated_at", 2016-08-19 02:55:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trigo"], ["question_id", 1711], ["correct", true], ["created_at", 2016-08-19 02:55:11 UTC], ["updated_at", 2016-08-19 02:55:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Linho"], ["question_id", 1711], ["correct", false], ["created_at", 2016-08-19 02:55:11 UTC], ["updated_at", 2016-08-19 02:55:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cevada"], ["question_id", 1711], ["correct", false], ["created_at", 2016-08-19 02:55:11 UTC], ["updated_at", 2016-08-19 02:55:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Milho"], ["question_id", 1711], ["correct", false], ["created_at", 2016-08-19 02:55:11 UTC], ["updated_at", 2016-08-19 02:55:11 UTC]]  (131.0ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além da safra de cevada, qual outra safra dos egípcios foi destruída em decorrência da praga das pedras de fogo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além da safra de cevada, qual outra safra dos egípcios foi destruída em decorrência da praga das pedras de fogo?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além da safra de cevada, qual outra safra dos egípcios foi destruída em decorrência da praga das pedras de fogo?"], ["created_at", 2016-08-19 02:55:11 UTC], ["updated_at", 2016-08-19 02:55:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Linho"], ["question_id", 1712], ["correct", true], ["created_at", 2016-08-19 02:55:11 UTC], ["updated_at", 2016-08-19 02:55:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Centeio"], ["question_id", 1712], ["correct", false], ["created_at", 2016-08-19 02:55:11 UTC], ["updated_at", 2016-08-19 02:55:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trigo"], ["question_id", 1712], ["correct", false], ["created_at", 2016-08-19 02:55:11 UTC], ["updated_at", 2016-08-19 02:55:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Milho"], ["question_id", 1712], ["correct", false], ["created_at", 2016-08-19 02:55:11 UTC], ["updated_at", 2016-08-19 02:55:11 UTC]]  (124.0ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além da safra de linho, qual outra safra dos egípcios foi destruída em decorrência da praga das pedras de fogo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além da safra de linho, qual outra safra dos egípcios foi destruída em decorrência da praga das pedras de fogo?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além da safra de linho, qual outra safra dos egípcios foi destruída em decorrência da praga das pedras de fogo?"], ["created_at", 2016-08-19 02:55:11 UTC], ["updated_at", 2016-08-19 02:55:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cevada"], ["question_id", 1713], ["correct", true], ["created_at", 2016-08-19 02:55:11 UTC], ["updated_at", 2016-08-19 02:55:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trigo"], ["question_id", 1713], ["correct", false], ["created_at", 2016-08-19 02:55:11 UTC], ["updated_at", 2016-08-19 02:55:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Milho"], ["question_id", 1713], ["correct", false], ["created_at", 2016-08-19 02:55:11 UTC], ["updated_at", 2016-08-19 02:55:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Centeio"], ["question_id", 1713], ["correct", false], ["created_at", 2016-08-19 02:55:11 UTC], ["updated_at", 2016-08-19 02:55:11 UTC]]  (123.7ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além da safra de trigo, qual outra safra dos egípcios sobreviveu quando Deus enviou as pedras de fogo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além da safra de trigo, qual outra safra dos egípcios sobreviveu quando Deus enviou as pedras de fogo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além da safra de trigo, qual outra safra dos egípcios sobreviveu quando Deus enviou as pedras de fogo?"], ["created_at", 2016-08-19 02:55:11 UTC], ["updated_at", 2016-08-19 02:55:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Centeio"], ["question_id", 1714], ["correct", true], ["created_at", 2016-08-19 02:55:11 UTC], ["updated_at", 2016-08-19 02:55:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Milho"], ["question_id", 1714], ["correct", false], ["created_at", 2016-08-19 02:55:11 UTC], ["updated_at", 2016-08-19 02:55:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Linho"], ["question_id", 1714], ["correct", false], ["created_at", 2016-08-19 02:55:11 UTC], ["updated_at", 2016-08-19 02:55:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cevada"], ["question_id", 1714], ["correct", false], ["created_at", 2016-08-19 02:55:11 UTC], ["updated_at", 2016-08-19 02:55:11 UTC]]  (148.4ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Daniel, quantas pessoas mais foram nomeadas Presidentes do reino da Babilônia pelo rei Dario?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Daniel, quantas pessoas mais foram nomeadas Presidentes do reino da Babilônia pelo rei Dario?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além de Daniel, quantas pessoas mais foram nomeadas Presidentes do reino da Babilônia pelo rei Dario?"], ["created_at", 2016-08-19 02:55:12 UTC], ["updated_at", 2016-08-19 02:55:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 1715], ["correct", true], ["created_at", 2016-08-19 02:55:12 UTC], ["updated_at", 2016-08-19 02:55:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 1715], ["correct", false], ["created_at", 2016-08-19 02:55:12 UTC], ["updated_at", 2016-08-19 02:55:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "11"], ["question_id", 1715], ["correct", false], ["created_at", 2016-08-19 02:55:12 UTC], ["updated_at", 2016-08-19 02:55:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mais Nenhuma"], ["question_id", 1715], ["correct", false], ["created_at", 2016-08-19 02:55:12 UTC], ["updated_at", 2016-08-19 02:55:12 UTC]]  (147.6ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de incenso, quais os outros presentes dados ao menino Jesus pelos Reis Magos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de incenso, quais os outros presentes dados ao menino Jesus pelos Reis Magos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além de incenso, quais os outros presentes dados ao menino Jesus pelos Reis Magos?"], ["created_at", 2016-08-19 02:55:12 UTC], ["updated_at", 2016-08-19 02:55:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ouro e Mirra"], ["question_id", 1716], ["correct", true], ["created_at", 2016-08-19 02:55:12 UTC], ["updated_at", 2016-08-19 02:55:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Frutas e Especiarias"], ["question_id", 1716], ["correct", false], ["created_at", 2016-08-19 02:55:12 UTC], ["updated_at", 2016-08-19 02:55:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jóias e Prata"], ["question_id", 1716], ["correct", false], ["created_at", 2016-08-19 02:55:12 UTC], ["updated_at", 2016-08-19 02:55:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Testamento e Um Baú"], ["question_id", 1716], ["correct", false], ["created_at", 2016-08-19 02:55:12 UTC], ["updated_at", 2016-08-19 02:55:12 UTC]]  (215.6ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Jacó do Egito, quem mais foi embalsamado de acordo com a tradição egípcia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Jacó do Egito, quem mais foi embalsamado de acordo com a tradição egípcia?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além de Jacó do Egito, quem mais foi embalsamado de acordo com a tradição egípcia?"], ["created_at", 2016-08-19 02:55:12 UTC], ["updated_at", 2016-08-19 02:55:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 1717], ["correct", true], ["created_at", 2016-08-19 02:55:12 UTC], ["updated_at", 2016-08-19 02:55:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 1717], ["correct", false], ["created_at", 2016-08-19 02:55:12 UTC], ["updated_at", 2016-08-19 02:55:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rúben"], ["question_id", 1717], ["correct", false], ["created_at", 2016-08-19 02:55:12 UTC], ["updated_at", 2016-08-19 02:55:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Benjamin"], ["question_id", 1717], ["correct", false], ["created_at", 2016-08-19 02:55:12 UTC], ["updated_at", 2016-08-19 02:55:12 UTC]]  (156.0ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Jambres, como era o nome do outro mago do Faraó que conseguiu imitar 2 pragas enviadas por Deus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Jambres, como era o nome do outro mago do Faraó que conseguiu imitar 2 pragas enviadas por Deus?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além de Jambres, como era o nome do outro mago do Faraó que conseguiu imitar 2 pragas enviadas por Deus?"], ["created_at", 2016-08-19 02:55:12 UTC], ["updated_at", 2016-08-19 02:55:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Janes"], ["question_id", 1718], ["correct", true], ["created_at", 2016-08-19 02:55:12 UTC], ["updated_at", 2016-08-19 02:55:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ermafrom"], ["question_id", 1718], ["correct", false], ["created_at", 2016-08-19 02:55:12 UTC], ["updated_at", 2016-08-19 02:55:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joctã"], ["question_id", 1718], ["correct", false], ["created_at", 2016-08-19 02:55:12 UTC], ["updated_at", 2016-08-19 02:55:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacã"], ["question_id", 1718], ["correct", false], ["created_at", 2016-08-19 02:55:12 UTC], ["updated_at", 2016-08-19 02:55:12 UTC]]  (173.9ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Janes, como era o nome do outro mago do Faraó que conseguiu imitar 2 pragas enviadas por Deus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Janes, como era o nome do outro mago do Faraó que conseguiu imitar 2 pragas enviadas por Deus?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além de Janes, como era o nome do outro mago do Faraó que conseguiu imitar 2 pragas enviadas por Deus?"], ["created_at", 2016-08-19 02:55:12 UTC], ["updated_at", 2016-08-19 02:55:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jambres"], ["question_id", 1719], ["correct", true], ["created_at", 2016-08-19 02:55:12 UTC], ["updated_at", 2016-08-19 02:55:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jaser"], ["question_id", 1719], ["correct", false], ["created_at", 2016-08-19 02:55:12 UTC], ["updated_at", 2016-08-19 02:55:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacã"], ["question_id", 1719], ["correct", false], ["created_at", 2016-08-19 02:55:12 UTC], ["updated_at", 2016-08-19 02:55:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ermafrom"], ["question_id", 1719], ["correct", false], ["created_at", 2016-08-19 02:55:12 UTC], ["updated_at", 2016-08-19 02:55:12 UTC]]  (218.3ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Jesus, quantas pessoas mais foram crucificadas?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Jesus, quantas pessoas mais foram crucificadas?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além de Jesus, quantas pessoas mais foram crucificadas?"], ["created_at", 2016-08-19 02:55:12 UTC], ["updated_at", 2016-08-19 02:55:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 1720], ["correct", true], ["created_at", 2016-08-19 02:55:12 UTC], ["updated_at", 2016-08-19 02:55:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 1720], ["correct", false], ["created_at", 2016-08-19 02:55:12 UTC], ["updated_at", 2016-08-19 02:55:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 1720], ["correct", false], ["created_at", 2016-08-19 02:55:12 UTC], ["updated_at", 2016-08-19 02:55:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus Foi Crucificado Sozinho"], ["question_id", 1720], ["correct", false], ["created_at", 2016-08-19 02:55:12 UTC], ["updated_at", 2016-08-19 02:55:12 UTC]]  (156.6ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de José do Egito, quem mais foi embalsamado de acordo com a tradição egípcia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de José do Egito, quem mais foi embalsamado de acordo com a tradição egípcia?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além de José do Egito, quem mais foi embalsamado de acordo com a tradição egípcia?"], ["created_at", 2016-08-19 02:55:13 UTC], ["updated_at", 2016-08-19 02:55:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 1721], ["correct", true], ["created_at", 2016-08-19 02:55:13 UTC], ["updated_at", 2016-08-19 02:55:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 1721], ["correct", false], ["created_at", 2016-08-19 02:55:13 UTC], ["updated_at", 2016-08-19 02:55:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 1721], ["correct", false], ["created_at", 2016-08-19 02:55:13 UTC], ["updated_at", 2016-08-19 02:55:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 1721], ["correct", false], ["created_at", 2016-08-19 02:55:13 UTC], ["updated_at", 2016-08-19 02:55:13 UTC]]  (130.8ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Orfa, a quem mais Noemi deu um beijo de tristeza?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Orfa, a quem mais Noemi deu um beijo de tristeza?"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além de Orfa, a quem mais Noemi deu um beijo de tristeza?"], ["created_at", 2016-08-19 02:55:13 UTC], ["updated_at", 2016-08-19 02:55:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rute"], ["question_id", 1722], ["correct", true], ["created_at", 2016-08-19 02:55:13 UTC], ["updated_at", 2016-08-19 02:55:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ester"], ["question_id", 1722], ["correct", false], ["created_at", 2016-08-19 02:55:13 UTC], ["updated_at", 2016-08-19 02:55:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vasti"], ["question_id", 1722], ["correct", false], ["created_at", 2016-08-19 02:55:13 UTC], ["updated_at", 2016-08-19 02:55:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Boaz"], ["question_id", 1722], ["correct", false], ["created_at", 2016-08-19 02:55:13 UTC], ["updated_at", 2016-08-19 02:55:13 UTC]]  (131.1ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Pedro, quem mais estava pescando quando ambos foram chamados por Jesus para serem Seus discípulos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Pedro, quem mais estava pescando quando ambos foram chamados por Jesus para serem Seus discípulos?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além de Pedro, quem mais estava pescando quando ambos foram chamados por Jesus para serem Seus discípulos?"], ["created_at", 2016-08-19 02:55:13 UTC], ["updated_at", 2016-08-19 02:55:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "André"], ["question_id", 1723], ["correct", true], ["created_at", 2016-08-19 02:55:13 UTC], ["updated_at", 2016-08-19 02:55:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 1723], ["correct", false], ["created_at", 2016-08-19 02:55:13 UTC], ["updated_at", 2016-08-19 02:55:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 1723], ["correct", false], ["created_at", 2016-08-19 02:55:13 UTC], ["updated_at", 2016-08-19 02:55:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 1723], ["correct", false], ["created_at", 2016-08-19 02:55:13 UTC], ["updated_at", 2016-08-19 02:55:13 UTC]]  (124.7ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de profeta, Natã também foi:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de profeta, Natã também foi:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além de profeta, Natã também foi:"], ["created_at", 2016-08-19 02:55:13 UTC], ["updated_at", 2016-08-19 02:55:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Conselheiro de Davi"], ["question_id", 1724], ["correct", true], ["created_at", 2016-08-19 02:55:13 UTC], ["updated_at", 2016-08-19 02:55:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pai de Abraão"], ["question_id", 1724], ["correct", false], ["created_at", 2016-08-19 02:55:13 UTC], ["updated_at", 2016-08-19 02:55:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmão de Saul"], ["question_id", 1724], ["correct", false], ["created_at", 2016-08-19 02:55:13 UTC], ["updated_at", 2016-08-19 02:55:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filho de Absalão"], ["question_id", 1724], ["correct", false], ["created_at", 2016-08-19 02:55:13 UTC], ["updated_at", 2016-08-19 02:55:13 UTC]]  (131.7ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de rei, Melquisedeque também foi:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de rei, Melquisedeque também foi:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além de rei, Melquisedeque também foi:"], ["created_at", 2016-08-19 02:55:13 UTC], ["updated_at", 2016-08-19 02:55:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sacerdote"], ["question_id", 1725], ["correct", true], ["created_at", 2016-08-19 02:55:13 UTC], ["updated_at", 2016-08-19 02:55:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Soldado"], ["question_id", 1725], ["correct", false], ["created_at", 2016-08-19 02:55:13 UTC], ["updated_at", 2016-08-19 02:55:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Profeta"], ["question_id", 1725], ["correct", false], ["created_at", 2016-08-19 02:55:13 UTC], ["updated_at", 2016-08-19 02:55:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Juiz"], ["question_id", 1725], ["correct", false], ["created_at", 2016-08-19 02:55:13 UTC], ["updated_at", 2016-08-19 02:55:13 UTC]]  (199.1ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Rute, a quem mais Noemi deu um beijo de tristeza?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Rute, a quem mais Noemi deu um beijo de tristeza?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além de Rute, a quem mais Noemi deu um beijo de tristeza?"], ["created_at", 2016-08-19 02:55:13 UTC], ["updated_at", 2016-08-19 02:55:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Orfa"], ["question_id", 1726], ["correct", true], ["created_at", 2016-08-19 02:55:13 UTC], ["updated_at", 2016-08-19 02:55:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Boaz"], ["question_id", 1726], ["correct", false], ["created_at", 2016-08-19 02:55:13 UTC], ["updated_at", 2016-08-19 02:55:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Malom"], ["question_id", 1726], ["correct", false], ["created_at", 2016-08-19 02:55:13 UTC], ["updated_at", 2016-08-19 02:55:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quiliom"], ["question_id", 1726], ["correct", false], ["created_at", 2016-08-19 02:55:13 UTC], ["updated_at", 2016-08-19 02:55:13 UTC]]  (206.6ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de sacerdote, Melquisedeque também foi:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de sacerdote, Melquisedeque também foi:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além de sacerdote, Melquisedeque também foi:"], ["created_at", 2016-08-19 02:55:14 UTC], ["updated_at", 2016-08-19 02:55:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei"], ["question_id", 1727], ["correct", true], ["created_at", 2016-08-19 02:55:14 UTC], ["updated_at", 2016-08-19 02:55:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Profeta"], ["question_id", 1727], ["correct", false], ["created_at", 2016-08-19 02:55:14 UTC], ["updated_at", 2016-08-19 02:55:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Soldado"], ["question_id", 1727], ["correct", false], ["created_at", 2016-08-19 02:55:14 UTC], ["updated_at", 2016-08-19 02:55:14 UTC]] SQL (0.4ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Juiz"], ["question_id", 1727], ["correct", false], ["created_at", 2016-08-19 02:55:14 UTC], ["updated_at", 2016-08-19 02:55:14 UTC]]  (122.8ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de seu filho Roboão, quem mais cultuava ídolos na casa de Salomão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de seu filho Roboão, quem mais cultuava ídolos na casa de Salomão?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além de seu filho Roboão, quem mais cultuava ídolos na casa de Salomão?"], ["created_at", 2016-08-19 02:55:14 UTC], ["updated_at", 2016-08-19 02:55:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Esposa Maacá"], ["question_id", 1728], ["correct", true], ["created_at", 2016-08-19 02:55:14 UTC], ["updated_at", 2016-08-19 02:55:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Filha Lia"], ["question_id", 1728], ["correct", false], ["created_at", 2016-08-19 02:55:14 UTC], ["updated_at", 2016-08-19 02:55:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Sogra Naamá"], ["question_id", 1728], ["correct", false], ["created_at", 2016-08-19 02:55:14 UTC], ["updated_at", 2016-08-19 02:55:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Sogra Abias"], ["question_id", 1728], ["correct", false], ["created_at", 2016-08-19 02:55:14 UTC], ["updated_at", 2016-08-19 02:55:14 UTC]]  (148.6ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Sodoma, qual foi a outra cidade que também foi destruída por Deus através de fogo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além de Sodoma, qual foi a outra cidade que também foi destruída por Deus através de fogo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além de Sodoma, qual foi a outra cidade que também foi destruída por Deus através de fogo?"], ["created_at", 2016-08-19 02:55:14 UTC], ["updated_at", 2016-08-19 02:55:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gomorra"], ["question_id", 1729], ["correct", true], ["created_at", 2016-08-19 02:55:14 UTC], ["updated_at", 2016-08-19 02:55:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônia"], ["question_id", 1729], ["correct", false], ["created_at", 2016-08-19 02:55:14 UTC], ["updated_at", 2016-08-19 02:55:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiro"], ["question_id", 1729], ["correct", false], ["created_at", 2016-08-19 02:55:14 UTC], ["updated_at", 2016-08-19 02:55:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nínive"], ["question_id", 1729], ["correct", false], ["created_at", 2016-08-19 02:55:14 UTC], ["updated_at", 2016-08-19 02:55:14 UTC]]  (139.4ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além do sumo sacerdote, quem mais presenciou Jesus ter sido culpado por blasfêmia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além do sumo sacerdote, quem mais presenciou Jesus ter sido culpado por blasfêmia?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além do sumo sacerdote, quem mais presenciou Jesus ter sido culpado por blasfêmia?"], ["created_at", 2016-08-19 02:55:14 UTC], ["updated_at", 2016-08-19 02:55:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oa Anciãos"], ["question_id", 1730], ["correct", true], ["created_at", 2016-08-19 02:55:14 UTC], ["updated_at", 2016-08-19 02:55:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Soldados Romanos"], ["question_id", 1730], ["correct", false], ["created_at", 2016-08-19 02:55:14 UTC], ["updated_at", 2016-08-19 02:55:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes"], ["question_id", 1730], ["correct", false], ["created_at", 2016-08-19 02:55:14 UTC], ["updated_at", 2016-08-19 02:55:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 1730], ["correct", false], ["created_at", 2016-08-19 02:55:14 UTC], ["updated_at", 2016-08-19 02:55:14 UTC]]  (132.4ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além dos 120 Presidentes nomeados pelo rei Dario, que cargos também foram nomeados?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além dos 120 Presidentes nomeados pelo rei Dario, que cargos também foram nomeados?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além dos 120 Presidentes nomeados pelo rei Dario, que cargos também foram nomeados?"], ["created_at", 2016-08-19 02:55:14 UTC], ["updated_at", 2016-08-19 02:55:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Presidentes"], ["question_id", 1731], ["correct", true], ["created_at", 2016-08-19 02:55:14 UTC], ["updated_at", 2016-08-19 02:55:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vice-rei"], ["question_id", 1731], ["correct", false], ["created_at", 2016-08-19 02:55:14 UTC], ["updated_at", 2016-08-19 02:55:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Prefeitos"], ["question_id", 1731], ["correct", false], ["created_at", 2016-08-19 02:55:14 UTC], ["updated_at", 2016-08-19 02:55:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Juízes"], ["question_id", 1731], ["correct", false], ["created_at", 2016-08-19 02:55:14 UTC], ["updated_at", 2016-08-19 02:55:14 UTC]]  (139.2ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além dos 3 Presidentes nomeados pelo rei Dario, que outros cargos foram nomeados?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além dos 3 Presidentes nomeados pelo rei Dario, que outros cargos foram nomeados?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além dos 3 Presidentes nomeados pelo rei Dario, que outros cargos foram nomeados?"], ["created_at", 2016-08-19 02:55:14 UTC], ["updated_at", 2016-08-19 02:55:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Governadores"], ["question_id", 1732], ["correct", true], ["created_at", 2016-08-19 02:55:14 UTC], ["updated_at", 2016-08-19 02:55:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Prefeitos"], ["question_id", 1732], ["correct", false], ["created_at", 2016-08-19 02:55:14 UTC], ["updated_at", 2016-08-19 02:55:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vereadores"], ["question_id", 1732], ["correct", false], ["created_at", 2016-08-19 02:55:14 UTC], ["updated_at", 2016-08-19 02:55:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Juízes"], ["question_id", 1732], ["correct", false], ["created_at", 2016-08-19 02:55:14 UTC], ["updated_at", 2016-08-19 02:55:14 UTC]]  (122.8ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além dos anciãos, quem mais presenciou Jesus ter sido culpado por blasfêmia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além dos anciãos, quem mais presenciou Jesus ter sido culpado por blasfêmia?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além dos anciãos, quem mais presenciou Jesus ter sido culpado por blasfêmia?"], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Sumo Sacerdote"], ["question_id", 1733], ["correct", true], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Soldados Romanos"], ["question_id", 1733], ["correct", false], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 1733], ["correct", false], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes"], ["question_id", 1733], ["correct", false], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]]  (124.2ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além dos escribas, quem mais Herodes levou consigo a fim de descobrir onde Cristo iria nascer?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além dos escribas, quem mais Herodes levou consigo a fim de descobrir onde Cristo iria nascer?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além dos escribas, quem mais Herodes levou consigo a fim de descobrir onde Cristo iria nascer?"], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sacerdotes"], ["question_id", 1734], ["correct", true], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fariseus"], ["question_id", 1734], ["correct", false], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Levitas"], ["question_id", 1734], ["correct", false], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Reis Magos"], ["question_id", 1734], ["correct", false], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]]  (140.9ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além dos sacerdotes, quem mais Herodes levou consigo a fim de descobrir onde Cristo iria nascer?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Além dos sacerdotes, quem mais Herodes levou consigo a fim de descobrir onde Cristo iria nascer?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Além dos sacerdotes, quem mais Herodes levou consigo a fim de descobrir onde Cristo iria nascer?"], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escribas"], ["question_id", 1735], ["correct", true], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Levitas"], ["question_id", 1735], ["correct", false], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fariseus"], ["question_id", 1735], ["correct", false], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Reis Magos"], ["question_id", 1735], ["correct", false], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]]  (132.5ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Amnom, filho de Davi, estuprou a Tamar. Qual era o grau de parentesco entre eles?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Amnom, filho de Davi, estuprou a Tamar. Qual era o grau de parentesco entre eles?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Amnom, filho de Davi, estuprou a Tamar. Qual era o grau de parentesco entre eles?"], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Meio-irmãos"], ["question_id", 1736], ["correct", true], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Meio-primos"], ["question_id", 1736], ["correct", false], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tio e Sobrinha"], ["question_id", 1736], ["correct", false], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sobrinho e Tia"], ["question_id", 1736], ["correct", false], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]]  (139.6ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Amnon e Sefatias foram filhos do rei:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Amnon e Sefatias foram filhos do rei:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Amnon e Sefatias foram filhos do rei:"], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1737], ["correct", true], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josias"], ["question_id", 1737], ["correct", false], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amom"], ["question_id", 1737], ["correct", false], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Manassés"], ["question_id", 1737], ["correct", false], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]]  (149.3ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ana emprestou seu filho a:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ana emprestou seu filho a:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Ana emprestou seu filho a:"], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deus"], ["question_id", 1738], ["correct", true], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sacerdote"], ["question_id", 1738], ["correct", false], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Parentes"], ["question_id", 1738], ["correct", false], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Credores"], ["question_id", 1738], ["correct", false], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]]  (157.3ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Anake foi o pai de uma raça de gigantes conhecida como os:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Anake foi o pai de uma raça de gigantes conhecida como os:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Anake foi o pai de uma raça de gigantes conhecida como os:"], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anakins"], ["question_id", 1739], ["correct", true], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anakens"], ["question_id", 1739], ["correct", false], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anakakins"], ["question_id", 1739], ["correct", false], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anakakens"], ["question_id", 1739], ["correct", false], ["created_at", 2016-08-19 02:55:15 UTC], ["updated_at", 2016-08-19 02:55:15 UTC]]  (148.1ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "André, apóstolo de Jesus, tinha um irmão pescador que também aceitou o chamado de Jesus. Seu nome era:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "André, apóstolo de Jesus, tinha um irmão pescador que também aceitou o chamado de Jesus. Seu nome era:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "André, apóstolo de Jesus, tinha um irmão pescador que também aceitou o chamado de Jesus. Seu nome era:"], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 1740], ["correct", true], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 1740], ["correct", false], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 1740], ["correct", false], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas"], ["question_id", 1740], ["correct", false], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]]  (131.0ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Anrão teve como filhos:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Anrão teve como filhos:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Anrão teve como filhos:"], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todas As Alternativas Estão Corretas"], ["question_id", 1741], ["correct", true], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1741], ["correct", false], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 1741], ["correct", false], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 1741], ["correct", false], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]]  (124.0ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes da Páscoa dos judeus, por que os judeus estavam saindo do país e indo para Jerusalém?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes da Páscoa dos judeus, por que os judeus estavam saindo do país e indo para Jerusalém?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Antes da Páscoa dos judeus, por que os judeus estavam saindo do país e indo para Jerusalém?"], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Purificação"], ["question_id", 1742], ["correct", true], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Orar Fora do Templo"], ["question_id", 1742], ["correct", false], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Ouvir Jesus Falar"], ["question_id", 1742], ["correct", false], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Haviam Ouvido Falar Sobre Um Tal de Jesus"], ["question_id", 1742], ["correct", false], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]]  (123.7ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de casar-se com o rei Assuero, Ester foi criada pelo seu primo:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de casar-se com o rei Assuero, Ester foi criada pelo seu primo:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Antes de casar-se com o rei Assuero, Ester foi criada pelo seu primo:"], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mardoqueu"], ["question_id", 1743], ["correct", true], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hamã"], ["question_id", 1743], ["correct", false], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Natã"], ["question_id", 1743], ["correct", false], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 1743], ["correct", false], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]]  (132.5ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de desertar para o lado de Absalão, a quem o influente Aitofel servia como conselheiro?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de desertar para o lado de Absalão, a quem o influente Aitofel servia como conselheiro?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Antes de desertar para o lado de Absalão, a quem o influente Aitofel servia como conselheiro?"], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1744], ["correct", true], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1744], ["correct", false], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zedequias"], ["question_id", 1744], ["correct", false], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josias"], ["question_id", 1744], ["correct", false], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]]  (117.2ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de Paulo ir da cidade de Filipos à cidade de Trôade, qual festividade foi celebrada?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de Paulo ir da cidade de Filipos à cidade de Trôade, qual festividade foi celebrada?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Antes de Paulo ir da cidade de Filipos à cidade de Trôade, qual festividade foi celebrada?"], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dia dos Pães Asmos"], ["question_id", 1745], ["correct", true], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Festividades das Tendas"], ["question_id", 1745], ["correct", false], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dia da Ressureição de Jesus"], ["question_id", 1745], ["correct", false], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Festividade da Libertação da Escravidão"], ["question_id", 1745], ["correct", false], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]]  (133.5ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de ser curado de sua cegueira, o que Bartimeu estava fazendo na estrada próximo a Jericó?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de ser curado de sua cegueira, o que Bartimeu estava fazendo na estrada próximo a Jericó?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Antes de ser curado de sua cegueira, o que Bartimeu estava fazendo na estrada próximo a Jericó?"], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedia Esmolas"], ["question_id", 1746], ["correct", true], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dava Água Aos Cansados"], ["question_id", 1746], ["correct", false], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dormia"], ["question_id", 1746], ["correct", false], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ensinava Os Viajantes O Caminho Para Jericó"], ["question_id", 1746], ["correct", false], ["created_at", 2016-08-19 02:55:16 UTC], ["updated_at", 2016-08-19 02:55:16 UTC]]  (132.7ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de tentar tirar um argueiro do olho ne nosso irmão, o que devemos tirar de nosso próprio olho?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de tentar tirar um argueiro do olho ne nosso irmão, o que devemos tirar de nosso próprio olho?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Antes de tentar tirar um argueiro do olho ne nosso irmão, o que devemos tirar de nosso próprio olho?"], ["created_at", 2016-08-19 02:55:17 UTC], ["updated_at", 2016-08-19 02:55:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Trava"], ["question_id", 1747], ["correct", true], ["created_at", 2016-08-19 02:55:17 UTC], ["updated_at", 2016-08-19 02:55:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Poeira"], ["question_id", 1747], ["correct", false], ["created_at", 2016-08-19 02:55:17 UTC], ["updated_at", 2016-08-19 02:55:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Pedaço de Vidro"], ["question_id", 1747], ["correct", false], ["created_at", 2016-08-19 02:55:17 UTC], ["updated_at", 2016-08-19 02:55:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Catarata"], ["question_id", 1747], ["correct", false], ["created_at", 2016-08-19 02:55:17 UTC], ["updated_at", 2016-08-19 02:55:17 UTC]]  (139.5ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de ungir os pés de Jesus, o que a mulher pecadora fez com os seus pés?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes de ungir os pés de Jesus, o que a mulher pecadora fez com os seus pés?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Antes de ungir os pés de Jesus, o que a mulher pecadora fez com os seus pés?"], ["created_at", 2016-08-19 02:55:17 UTC], ["updated_at", 2016-08-19 02:55:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Beijou-os"], ["question_id", 1748], ["correct", true], ["created_at", 2016-08-19 02:55:17 UTC], ["updated_at", 2016-08-19 02:55:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lavou-os"], ["question_id", 1748], ["correct", false], ["created_at", 2016-08-19 02:55:17 UTC], ["updated_at", 2016-08-19 02:55:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esfregou-os"], ["question_id", 1748], ["correct", false], ["created_at", 2016-08-19 02:55:17 UTC], ["updated_at", 2016-08-19 02:55:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esbofeteou-os"], ["question_id", 1748], ["correct", false], ["created_at", 2016-08-19 02:55:17 UTC], ["updated_at", 2016-08-19 02:55:17 UTC]]  (132.6ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes do povo de Israel gritar para que os muros da cidade de Jericó caíssem, qual instrumento eles tocaram?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Antes do povo de Israel gritar para que os muros da cidade de Jericó caíssem, qual instrumento eles tocaram?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Antes do povo de Israel gritar para que os muros da cidade de Jericó caíssem, qual instrumento eles tocaram?"], ["created_at", 2016-08-19 02:55:17 UTC], ["updated_at", 2016-08-19 02:55:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trombetas"], ["question_id", 1749], ["correct", true], ["created_at", 2016-08-19 02:55:17 UTC], ["updated_at", 2016-08-19 02:55:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cítaras"], ["question_id", 1749], ["correct", false], ["created_at", 2016-08-19 02:55:17 UTC], ["updated_at", 2016-08-19 02:55:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tambores de Guerra"], ["question_id", 1749], ["correct", false], ["created_at", 2016-08-19 02:55:17 UTC], ["updated_at", 2016-08-19 02:55:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Flautas"], ["question_id", 1749], ["correct", false], ["created_at", 2016-08-19 02:55:17 UTC], ["updated_at", 2016-08-19 02:55:17 UTC]]  (132.5ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Anualmente, Pôncio Pilatos:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Anualmente, Pôncio Pilatos:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Anualmente, Pôncio Pilatos:"], ["created_at", 2016-08-19 02:55:17 UTC], ["updated_at", 2016-08-19 02:55:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Libertava Um Prisioneiro"], ["question_id", 1750], ["correct", true], ["created_at", 2016-08-19 02:55:17 UTC], ["updated_at", 2016-08-19 02:55:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dava Uma Festa Em Comemoração Ao Seu Aniversário"], ["question_id", 1750], ["correct", false], ["created_at", 2016-08-19 02:55:17 UTC], ["updated_at", 2016-08-19 02:55:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matava Um Agitador"], ["question_id", 1750], ["correct", false], ["created_at", 2016-08-19 02:55:17 UTC], ["updated_at", 2016-08-19 02:55:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Casava-se Com Uma Nova Esposa"], ["question_id", 1750], ["correct", false], ["created_at", 2016-08-19 02:55:17 UTC], ["updated_at", 2016-08-19 02:55:17 UTC]]  (182.0ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ao final dos 10 dias que durou o perído de testes da alimentação de Daniel e seus amigos, como eles estavam?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ao final dos 10 dias que durou o perído de testes da alimentação de Daniel e seus amigos, como eles estavam?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Ao final dos 10 dias que durou o perído de testes da alimentação de Daniel e seus amigos, como eles estavam?"], ["created_at", 2016-08-19 02:55:17 UTC], ["updated_at", 2016-08-19 02:55:17 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mais Saudáveis e Robustos"], ["question_id", 1751], ["correct", true], ["created_at", 2016-08-19 02:55:17 UTC], ["updated_at", 2016-08-19 02:55:17 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obesos"], ["question_id", 1751], ["correct", false], ["created_at", 2016-08-19 02:55:17 UTC], ["updated_at", 2016-08-19 02:55:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anêmicos"], ["question_id", 1751], ["correct", false], ["created_at", 2016-08-19 02:55:17 UTC], ["updated_at", 2016-08-19 02:55:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Doentes"], ["question_id", 1751], ["correct", false], ["created_at", 2016-08-19 02:55:17 UTC], ["updated_at", 2016-08-19 02:55:17 UTC]]  (172.0ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ao receber a visão de um lençol cheio de animais, o que Deus disse a Pedro?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ao receber a visão de um lençol cheio de animais, o que Deus disse a Pedro?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Ao receber a visão de um lençol cheio de animais, o que Deus disse a Pedro?"], ["created_at", 2016-08-19 02:55:17 UTC], ["updated_at", 2016-08-19 02:55:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Levanta-te, Pedro, Mata e Come!"], ["question_id", 1752], ["correct", true], ["created_at", 2016-08-19 02:55:17 UTC], ["updated_at", 2016-08-19 02:55:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cuidado, Pedro, Com Estes Animais!"], ["question_id", 1752], ["correct", false], ["created_at", 2016-08-19 02:55:17 UTC], ["updated_at", 2016-08-19 02:55:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Toma, Pedro, e Leve-os Aos Seus Donos."], ["question_id", 1752], ["correct", false], ["created_at", 2016-08-19 02:55:17 UTC], ["updated_at", 2016-08-19 02:55:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pastoreie Estes Animais Como As Ovelhas!"], ["question_id", 1752], ["correct", false], ["created_at", 2016-08-19 02:55:17 UTC], ["updated_at", 2016-08-19 02:55:17 UTC]]  (164.1ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ao ver Jesus ser levado preso à presença de Pôncio Pilatos, como Judas se sentiu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ao ver Jesus ser levado preso à presença de Pôncio Pilatos, como Judas se sentiu?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Ao ver Jesus ser levado preso à presença de Pôncio Pilatos, como Judas se sentiu?"], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arrependido"], ["question_id", 1753], ["correct", true], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amedrontado"], ["question_id", 1753], ["correct", false], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vingado"], ["question_id", 1753], ["correct", false], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eufórico"], ["question_id", 1753], ["correct", false], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]]  (172.3ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Aonde a rainha de Sabá foi visitar o rei Salomão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Aonde a rainha de Sabá foi visitar o rei Salomão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Aonde a rainha de Sabá foi visitar o rei Salomão?"], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 1754], ["correct", true], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nínive"], ["question_id", 1754], ["correct", false], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ur dos Caldeus"], ["question_id", 1754], ["correct", false], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Canaã"], ["question_id", 1754], ["correct", false], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]]  (147.5ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Aos cidadãos de Israel Absalão deu:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Aos cidadãos de Israel Absalão deu:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Aos cidadãos de Israel Absalão deu:"], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Beijos Políticos"], ["question_id", 1755], ["correct", true], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dinheiro"], ["question_id", 1755], ["correct", false], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Propriedades"], ["question_id", 1755], ["correct", false], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Água"], ["question_id", 1755], ["correct", false], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]]  (122.8ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Apesar de Elias ter sido um profeta de Deus, quem ainda assim tentou matá-lo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Apesar de Elias ter sido um profeta de Deus, quem ainda assim tentou matá-lo?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Apesar de Elias ter sido um profeta de Deus, quem ainda assim tentou matá-lo?"], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rainha Jezabel"], ["question_id", 1756], ["correct", true], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Baal"], ["question_id", 1756], ["correct", false], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Natã"], ["question_id", 1756], ["correct", false], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei Nabucodonosor"], ["question_id", 1756], ["correct", false], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]]  (141.0ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Apesar de ter sido ressuscitado por Jesus, quem estava pretendendo matar Lázaro novamente?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Apesar de ter sido ressuscitado por Jesus, quem estava pretendendo matar Lázaro novamente?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Apesar de ter sido ressuscitado por Jesus, quem estava pretendendo matar Lázaro novamente?"], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sumos Sacerdotes"], ["question_id", 1757], ["correct", true], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas Iscariotes"], ["question_id", 1757], ["correct", false], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 1757], ["correct", false], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "César Augusto"], ["question_id", 1757], ["correct", false], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]]  (124.7ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a água virar sangue, como os egípcios conseguiram água fresca?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a água virar sangue, como os egípcios conseguiram água fresca?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após a água virar sangue, como os egípcios conseguiram água fresca?"], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cavando Junto Ao Rio Nilo"], ["question_id", 1758], ["correct", true], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fervendo O Sangue"], ["question_id", 1758], ["correct", false], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Havia Água Fresca"], ["question_id", 1758], ["correct", false], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cavando Poços Longe do Rio Nilo"], ["question_id", 1758], ["correct", false], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]]  (132.5ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a Arca da Aliança ter sido colocada no Templo de Jerusalém, o mesmo encheu-se de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a Arca da Aliança ter sido colocada no Templo de Jerusalém, o mesmo encheu-se de:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após a Arca da Aliança ter sido colocada no Templo de Jerusalém, o mesmo encheu-se de:"], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Nuvem"], ["question_id", 1759], ["correct", true], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Fumaça"], ["question_id", 1759], ["correct", false], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Labaredas de Fogo"], ["question_id", 1759], ["correct", false], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Música"], ["question_id", 1759], ["correct", false], ["created_at", 2016-08-19 02:55:18 UTC], ["updated_at", 2016-08-19 02:55:18 UTC]]  (114.7ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a destruição dos rebeldes, como o povo israelita reagiu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a destruição dos rebeldes, como o povo israelita reagiu?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após a destruição dos rebeldes, como o povo israelita reagiu?"], ["created_at", 2016-08-19 02:55:19 UTC], ["updated_at", 2016-08-19 02:55:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Resmungaram"], ["question_id", 1760], ["correct", true], ["created_at", 2016-08-19 02:55:19 UTC], ["updated_at", 2016-08-19 02:55:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ficaram Satisfeitos"], ["question_id", 1760], ["correct", false], ["created_at", 2016-08-19 02:55:19 UTC], ["updated_at", 2016-08-19 02:55:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ficaram Amedrontados"], ["question_id", 1760], ["correct", false], ["created_at", 2016-08-19 02:55:19 UTC], ["updated_at", 2016-08-19 02:55:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amaldiçoaram Moisés"], ["question_id", 1760], ["correct", false], ["created_at", 2016-08-19 02:55:19 UTC], ["updated_at", 2016-08-19 02:55:19 UTC]]  (123.1ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a divisão do reino, em qual cidade Jeroboão, Rei das tribos do norte, fez sua morada?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a divisão do reino, em qual cidade Jeroboão, Rei das tribos do norte, fez sua morada?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após a divisão do reino, em qual cidade Jeroboão, Rei das tribos do norte, fez sua morada?"], ["created_at", 2016-08-19 02:55:19 UTC], ["updated_at", 2016-08-19 02:55:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Siquém"], ["question_id", 1761], ["correct", true], ["created_at", 2016-08-19 02:55:19 UTC], ["updated_at", 2016-08-19 02:55:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Damasco"], ["question_id", 1761], ["correct", false], ["created_at", 2016-08-19 02:55:19 UTC], ["updated_at", 2016-08-19 02:55:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jericó"], ["question_id", 1761], ["correct", false], ["created_at", 2016-08-19 02:55:19 UTC], ["updated_at", 2016-08-19 02:55:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cades"], ["question_id", 1761], ["correct", false], ["created_at", 2016-08-19 02:55:19 UTC], ["updated_at", 2016-08-19 02:55:19 UTC]]  (130.6ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a interpretação dos seus sonhos, o rei Nabucodonosor deu a Daniel qual cargo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a interpretação dos seus sonhos, o rei Nabucodonosor deu a Daniel qual cargo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após a interpretação dos seus sonhos, o rei Nabucodonosor deu a Daniel qual cargo?"], ["created_at", 2016-08-19 02:55:19 UTC], ["updated_at", 2016-08-19 02:55:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Governador da Babilônia"], ["question_id", 1762], ["correct", true], ["created_at", 2016-08-19 02:55:19 UTC], ["updated_at", 2016-08-19 02:55:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Governador dos Eunucos"], ["question_id", 1762], ["correct", false], ["created_at", 2016-08-19 02:55:19 UTC], ["updated_at", 2016-08-19 02:55:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Governador dos Escravos de Todas As Nações"], ["question_id", 1762], ["correct", false], ["created_at", 2016-08-19 02:55:19 UTC], ["updated_at", 2016-08-19 02:55:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Governador Apenas dos Escravos Hebreus"], ["question_id", 1762], ["correct", false], ["created_at", 2016-08-19 02:55:19 UTC], ["updated_at", 2016-08-19 02:55:19 UTC]]  (264.5ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a luta com Deus, Jacó passou a se chamar:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a luta com Deus, Jacó passou a se chamar:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após a luta com Deus, Jacó passou a se chamar:"], ["created_at", 2016-08-19 02:55:19 UTC], ["updated_at", 2016-08-19 02:55:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Israel"], ["question_id", 1763], ["correct", true], ["created_at", 2016-08-19 02:55:19 UTC], ["updated_at", 2016-08-19 02:55:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 1763], ["correct", false], ["created_at", 2016-08-19 02:55:19 UTC], ["updated_at", 2016-08-19 02:55:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 1763], ["correct", false], ["created_at", 2016-08-19 02:55:19 UTC], ["updated_at", 2016-08-19 02:55:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1763], ["correct", false], ["created_at", 2016-08-19 02:55:19 UTC], ["updated_at", 2016-08-19 02:55:19 UTC]]  (156.0ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a luta com Deus, o que o anjo deu a Jacó?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a luta com Deus, o que o anjo deu a Jacó?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após a luta com Deus, o que o anjo deu a Jacó?"], ["created_at", 2016-08-19 02:55:19 UTC], ["updated_at", 2016-08-19 02:55:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Novo Nome"], ["question_id", 1764], ["correct", true], ["created_at", 2016-08-19 02:55:19 UTC], ["updated_at", 2016-08-19 02:55:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Nova Capa"], ["question_id", 1764], ["correct", false], ["created_at", 2016-08-19 02:55:19 UTC], ["updated_at", 2016-08-19 02:55:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Novo Cabelo"], ["question_id", 1764], ["correct", false], ["created_at", 2016-08-19 02:55:19 UTC], ["updated_at", 2016-08-19 02:55:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Un Novo Corpo"], ["question_id", 1764], ["correct", false], ["created_at", 2016-08-19 02:55:19 UTC], ["updated_at", 2016-08-19 02:55:19 UTC]]  (157.1ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a morte de Herodes, para onde José levou Maria e Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a morte de Herodes, para onde José levou Maria e Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após a morte de Herodes, para onde José levou Maria e Jesus?"], ["created_at", 2016-08-19 02:55:19 UTC], ["updated_at", 2016-08-19 02:55:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nazaré"], ["question_id", 1765], ["correct", true], ["created_at", 2016-08-19 02:55:19 UTC], ["updated_at", 2016-08-19 02:55:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 1765], ["correct", false], ["created_at", 2016-08-19 02:55:19 UTC], ["updated_at", 2016-08-19 02:55:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belém"], ["question_id", 1765], ["correct", false], ["created_at", 2016-08-19 02:55:19 UTC], ["updated_at", 2016-08-19 02:55:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cafarnaum"], ["question_id", 1765], ["correct", false], ["created_at", 2016-08-19 02:55:19 UTC], ["updated_at", 2016-08-19 02:55:19 UTC]]  (165.0ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a morte de quem o rei Davi finalmente teve seu trono restituído?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a morte de quem o rei Davi finalmente teve seu trono restituído?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após a morte de quem o rei Davi finalmente teve seu trono restituído?"], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 1766], ["correct", true], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Labão"], ["question_id", 1766], ["correct", false], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Roboão"], ["question_id", 1766], ["correct", false], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeroboão"], ["question_id", 1766], ["correct", false], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]]  (140.0ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a ressureição de Jesus, durante 40 dias ele:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a ressureição de Jesus, durante 40 dias ele:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após a ressureição de Jesus, durante 40 dias ele:"], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apresentou-se Vivo"], ["question_id", 1767], ["correct", true], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Festejou"], ["question_id", 1767], ["correct", false], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Visitou Os Fariseus"], ["question_id", 1767], ["correct", false], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Tentado No Deserto"], ["question_id", 1767], ["correct", false], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]]  (123.3ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a ressurreição de Jesus, quem foi subornado para dizer que o seu corpo havia sido levado embora?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a ressurreição de Jesus, quem foi subornado para dizer que o seu corpo havia sido levado embora?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após a ressurreição de Jesus, quem foi subornado para dizer que o seu corpo havia sido levado embora?"], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Soldados"], ["question_id", 1768], ["correct", true], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fariseus"], ["question_id", 1768], ["correct", false], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Discípulos"], ["question_id", 1768], ["correct", false], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Família de Jesus"], ["question_id", 1768], ["correct", false], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]]  (147.1ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a ressurreição de Jesus, quem subornou os guardas para dizer que o Seu corpo havia sido levado embora?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após a ressurreição de Jesus, quem subornou os guardas para dizer que o Seu corpo havia sido levado embora?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após a ressurreição de Jesus, quem subornou os guardas para dizer que o Seu corpo havia sido levado embora?"], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Líderes Judeus"], ["question_id", 1769], ["correct", true], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Levitas"], ["question_id", 1769], ["correct", false], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Discípulos"], ["question_id", 1769], ["correct", false], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Família de Jesus"], ["question_id", 1769], ["correct", false], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]]  (149.0ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Absalão, quem foi o próximo rebelde a se revoltar contra o governo do rei Davi?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Absalão, quem foi o próximo rebelde a se revoltar contra o governo do rei Davi?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após Absalão, quem foi o próximo rebelde a se revoltar contra o governo do rei Davi?"], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sebá"], ["question_id", 1770], ["correct", true], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joabe"], ["question_id", 1770], ["correct", false], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amsa"], ["question_id", 1770], ["correct", false], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samua"], ["question_id", 1770], ["correct", false], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]]  (130.9ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Amnom, filho de Davi, ter fingido estar doente, o que aconteceu a Tamar ao visitá-lo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Amnom, filho de Davi, ter fingido estar doente, o que aconteceu a Tamar ao visitá-lo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após Amnom, filho de Davi, ter fingido estar doente, o que aconteceu a Tamar ao visitá-lo?"], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Estuprada"], ["question_id", 1771], ["correct", true], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Recebeu Uma Proposta de Casamento"], ["question_id", 1771], ["correct", false], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Recebeu Uma Herança"], ["question_id", 1771], ["correct", false], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Morta"], ["question_id", 1771], ["correct", false], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]]  (123.8ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após deixar Raabe, onde os espias enviados por Josué se refugiaram?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após deixar Raabe, onde os espias enviados por Josué se refugiaram?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após deixar Raabe, onde os espias enviados por Josué se refugiaram?"], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Monte"], ["question_id", 1772], ["correct", true], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Mar"], ["question_id", 1772], ["correct", false], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Cidade"], ["question_id", 1772], ["correct", false], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Campo"], ["question_id", 1772], ["correct", false], ["created_at", 2016-08-19 02:55:20 UTC], ["updated_at", 2016-08-19 02:55:20 UTC]]  (132.5ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Deus ter descido ao Templo de Jerusalém, o que Salomão fez ao povo que estava presente?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Deus ter descido ao Templo de Jerusalém, o que Salomão fez ao povo que estava presente?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após Deus ter descido ao Templo de Jerusalém, o que Salomão fez ao povo que estava presente?"], ["created_at", 2016-08-19 02:55:21 UTC], ["updated_at", 2016-08-19 02:55:21 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abençoou-os"], ["question_id", 1773], ["correct", true], ["created_at", 2016-08-19 02:55:21 UTC], ["updated_at", 2016-08-19 02:55:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Expulsou-os"], ["question_id", 1773], ["correct", false], ["created_at", 2016-08-19 02:55:21 UTC], ["updated_at", 2016-08-19 02:55:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Festejou Com Eles"], ["question_id", 1773], ["correct", false], ["created_at", 2016-08-19 02:55:21 UTC], ["updated_at", 2016-08-19 02:55:21 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irou-se Contra Eles"], ["question_id", 1773], ["correct", false], ["created_at", 2016-08-19 02:55:21 UTC], ["updated_at", 2016-08-19 02:55:21 UTC]]  (130.9ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Eliseu ter morrido e sepultado, o que aconteceu ao morto que foi jogado em seu túmulo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Eliseu ter morrido e sepultado, o que aconteceu ao morto que foi jogado em seu túmulo?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após Eliseu ter morrido e sepultado, o que aconteceu ao morto que foi jogado em seu túmulo?"], ["created_at", 2016-08-19 02:55:21 UTC], ["updated_at", 2016-08-19 02:55:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Reviveu"], ["question_id", 1774], ["correct", true], ["created_at", 2016-08-19 02:55:21 UTC], ["updated_at", 2016-08-19 02:55:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Foi Consumido Pelo Fogo"], ["question_id", 1774], ["correct", false], ["created_at", 2016-08-19 02:55:21 UTC], ["updated_at", 2016-08-19 02:55:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Desapareceu"], ["question_id", 1774], ["correct", false], ["created_at", 2016-08-19 02:55:21 UTC], ["updated_at", 2016-08-19 02:55:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Foi Comido Pelos Vermes"], ["question_id", 1774], ["correct", false], ["created_at", 2016-08-19 02:55:21 UTC], ["updated_at", 2016-08-19 02:55:21 UTC]]  (133.0ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Êutico ter morrido devido à queda de uma janela ao ter adormecido, o que Paulo fêz com ele?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Êutico ter morrido devido à queda de uma janela ao ter adormecido, o que Paulo fêz com ele?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após Êutico ter morrido devido à queda de uma janela ao ter adormecido, o que Paulo fêz com ele?"], ["created_at", 2016-08-19 02:55:21 UTC], ["updated_at", 2016-08-19 02:55:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ressuscitou-o"], ["question_id", 1775], ["correct", true], ["created_at", 2016-08-19 02:55:21 UTC], ["updated_at", 2016-08-19 02:55:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mandou Enterrar"], ["question_id", 1775], ["correct", false], ["created_at", 2016-08-19 02:55:21 UTC], ["updated_at", 2016-08-19 02:55:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mandou Ser Examinado Pelos Sacerdotes"], ["question_id", 1775], ["correct", false], ["created_at", 2016-08-19 02:55:21 UTC], ["updated_at", 2016-08-19 02:55:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mandou Lavá-lo, Pois Estava Sujo"], ["question_id", 1775], ["correct", false], ["created_at", 2016-08-19 02:55:21 UTC], ["updated_at", 2016-08-19 02:55:21 UTC]]  (116.3ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Jael ter acolhido seu inimigo, o que ela fez a ele?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Jael ter acolhido seu inimigo, o que ela fez a ele?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após Jael ter acolhido seu inimigo, o que ela fez a ele?"], ["created_at", 2016-08-19 02:55:21 UTC], ["updated_at", 2016-08-19 02:55:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matou-o"], ["question_id", 1776], ["correct", true], ["created_at", 2016-08-19 02:55:21 UTC], ["updated_at", 2016-08-19 02:55:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Casou-se Com Ele"], ["question_id", 1776], ["correct", false], ["created_at", 2016-08-19 02:55:21 UTC], ["updated_at", 2016-08-19 02:55:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apaixonou-se"], ["question_id", 1776], ["correct", false], ["created_at", 2016-08-19 02:55:21 UTC], ["updated_at", 2016-08-19 02:55:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Expulsou-o de Casa"], ["question_id", 1776], ["correct", false], ["created_at", 2016-08-19 02:55:21 UTC], ["updated_at", 2016-08-19 02:55:21 UTC]]  (123.5ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Jesus ter montado no jumento, o que os discípulos colocaram à Sua frente na estrada?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Jesus ter montado no jumento, o que os discípulos colocaram à Sua frente na estrada?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após Jesus ter montado no jumento, o que os discípulos colocaram à Sua frente na estrada?"], ["created_at", 2016-08-19 02:55:21 UTC], ["updated_at", 2016-08-19 02:55:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Suas Capas"], ["question_id", 1777], ["correct", true], ["created_at", 2016-08-19 02:55:21 UTC], ["updated_at", 2016-08-19 02:55:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Folhas de Palma"], ["question_id", 1777], ["correct", false], ["created_at", 2016-08-19 02:55:21 UTC], ["updated_at", 2016-08-19 02:55:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Flores"], ["question_id", 1777], ["correct", false], ["created_at", 2016-08-19 02:55:21 UTC], ["updated_at", 2016-08-19 02:55:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Folhas de Palmeira"], ["question_id", 1777], ["correct", false], ["created_at", 2016-08-19 02:55:21 UTC], ["updated_at", 2016-08-19 02:55:21 UTC]]  (139.9ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Jesus ter ressucitado, durante quanto tempo Ele apresentou-se vivo às pessoas?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Jesus ter ressucitado, durante quanto tempo Ele apresentou-se vivo às pessoas?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após Jesus ter ressucitado, durante quanto tempo Ele apresentou-se vivo às pessoas?"], ["created_at", 2016-08-19 02:55:21 UTC], ["updated_at", 2016-08-19 02:55:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "40 Dias"], ["question_id", 1778], ["correct", true], ["created_at", 2016-08-19 02:55:21 UTC], ["updated_at", 2016-08-19 02:55:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4 Dias"], ["question_id", 1778], ["correct", false], ["created_at", 2016-08-19 02:55:21 UTC], ["updated_at", 2016-08-19 02:55:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Semanas"], ["question_id", 1778], ["correct", false], ["created_at", 2016-08-19 02:55:21 UTC], ["updated_at", 2016-08-19 02:55:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7 Dias"], ["question_id", 1778], ["correct", false], ["created_at", 2016-08-19 02:55:21 UTC], ["updated_at", 2016-08-19 02:55:21 UTC]]  (164.6ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Noé ter entrado na arca, quanto tempo ainda levou para começar a chover?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Noé ter entrado na arca, quanto tempo ainda levou para começar a chover?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após Noé ter entrado na arca, quanto tempo ainda levou para começar a chover?"], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7 Dias"], ["question_id", 1779], ["correct", true], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Noite"], ["question_id", 1779], ["correct", false], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Horas"], ["question_id", 1779], ["correct", false], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5 Minutos"], ["question_id", 1779], ["correct", false], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]]  (155.4ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após o final do Dilúvio, quanto tempo ainda demorou para a arca de Noé finalmente encostar em terra seca?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após o final do Dilúvio, quanto tempo ainda demorou para a arca de Noé finalmente encostar em terra seca?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após o final do Dilúvio, quanto tempo ainda demorou para a arca de Noé finalmente encostar em terra seca?"], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Muitos Meses"], ["question_id", 1780], ["correct", true], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7 Dias"], ["question_id", 1780], ["correct", false], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "14 Dias"], ["question_id", 1780], ["correct", false], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "40 Dias"], ["question_id", 1780], ["correct", false], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]]  (122.5ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após o rei Davi ter jejuado e orado por 7 dias pela vida do seu filho, o que aconteceu a este?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após o rei Davi ter jejuado e orado por 7 dias pela vida do seu filho, o que aconteceu a este?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após o rei Davi ter jejuado e orado por 7 dias pela vida do seu filho, o que aconteceu a este?"], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Morreu"], ["question_id", 1781], ["correct", true], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tornou A Viver"], ["question_id", 1781], ["correct", false], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Ressuscitado"], ["question_id", 1781], ["correct", false], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sarou da Enfermidade"], ["question_id", 1781], ["correct", false], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]]  (107.2ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após o retorno do cativeiro da Babilônia, os idosos do povo judeu choraram após terem visto a reconstrução:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após o retorno do cativeiro da Babilônia, os idosos do povo judeu choraram após terem visto a reconstrução:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após o retorno do cativeiro da Babilônia, os idosos do povo judeu choraram após terem visto a reconstrução:"], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Alicerce do Templo"], ["question_id", 1782], ["correct", true], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Muro da Cidade de Jerusalém"], ["question_id", 1782], ["correct", false], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Da Ponte Sobre O Rio Jordão"], ["question_id", 1782], ["correct", false], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Palácio Real"], ["question_id", 1782], ["correct", false], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]]  (147.8ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após o Sinédrio ter considerado Jesus culpado por blasfêmia, para onde o levaram?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após o Sinédrio ter considerado Jesus culpado por blasfêmia, para onde o levaram?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após o Sinédrio ter considerado Jesus culpado por blasfêmia, para onde o levaram?"], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Diante de Pôncio Pilatos"], ["question_id", 1783], ["correct", true], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Diante de Herodes"], ["question_id", 1783], ["correct", false], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Ser Surrado Pelos Soldados Romanos"], ["question_id", 1783], ["correct", false], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Ser Crucificado"], ["question_id", 1783], ["correct", false], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]]  (172.2ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após os filisteus terem aprisionado Sansão, o que obrigaram-no a fazer?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após os filisteus terem aprisionado Sansão, o que obrigaram-no a fazer?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após os filisteus terem aprisionado Sansão, o que obrigaram-no a fazer?"], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Girar O Moinho"], ["question_id", 1784], ["correct", true], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Curtir Couro"], ["question_id", 1784], ["correct", false], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fabricar Tijolos"], ["question_id", 1784], ["correct", false], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Construir Casas"], ["question_id", 1784], ["correct", false], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]]  (121.6ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Pedro ter sido libertado da prisão por um anjo, Pedro foi para a casa de Maria. Ela era de João Marco:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Pedro ter sido libertado da prisão por um anjo, Pedro foi para a casa de Maria. Ela era de João Marco:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após Pedro ter sido libertado da prisão por um anjo, Pedro foi para a casa de Maria. Ela era de João Marco:"], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]] SQL (0.4ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmã"], ["question_id", 1785], ["correct", true], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Prima"], ["question_id", 1785], ["correct", false], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vizinha"], ["question_id", 1785], ["correct", false], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tia"], ["question_id", 1785], ["correct", false], ["created_at", 2016-08-19 02:55:22 UTC], ["updated_at", 2016-08-19 02:55:22 UTC]]  (155.6ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Pedro ter sido libertado da prisão por um anjo, Pedro foi para a casa de Maria:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após Pedro ter sido libertado da prisão por um anjo, Pedro foi para a casa de Maria:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após Pedro ter sido libertado da prisão por um anjo, Pedro foi para a casa de Maria:"], ["created_at", 2016-08-19 02:55:23 UTC], ["updated_at", 2016-08-19 02:55:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmã de João Marco"], ["question_id", 1786], ["correct", true], ["created_at", 2016-08-19 02:55:23 UTC], ["updated_at", 2016-08-19 02:55:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmã de Marta"], ["question_id", 1786], ["correct", false], ["created_at", 2016-08-19 02:55:23 UTC], ["updated_at", 2016-08-19 02:55:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Madalena"], ["question_id", 1786], ["correct", false], ["created_at", 2016-08-19 02:55:23 UTC], ["updated_at", 2016-08-19 02:55:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mãe de Jesus"], ["question_id", 1786], ["correct", false], ["created_at", 2016-08-19 02:55:23 UTC], ["updated_at", 2016-08-19 02:55:23 UTC]]  (218.7ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter arrancado as portas de entrada da cidade de Gaza, para onde Sansão as levou?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter arrancado as portas de entrada da cidade de Gaza, para onde Sansão as levou?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após ter arrancado as portas de entrada da cidade de Gaza, para onde Sansão as levou?"], ["created_at", 2016-08-19 02:55:23 UTC], ["updated_at", 2016-08-19 02:55:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para O Cume de Um Monte"], ["question_id", 1787], ["correct", true], ["created_at", 2016-08-19 02:55:23 UTC], ["updated_at", 2016-08-19 02:55:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para O Templo Pagão"], ["question_id", 1787], ["correct", false], ["created_at", 2016-08-19 02:55:23 UTC], ["updated_at", 2016-08-19 02:55:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Uma Plantação de Milho"], ["question_id", 1787], ["correct", false], ["created_at", 2016-08-19 02:55:23 UTC], ["updated_at", 2016-08-19 02:55:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para O Mar"], ["question_id", 1787], ["correct", false], ["created_at", 2016-08-19 02:55:23 UTC], ["updated_at", 2016-08-19 02:55:23 UTC]]  (114.6ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter brotado, a vara de Arão produziu:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter brotado, a vara de Arão produziu:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após ter brotado, a vara de Arão produziu:"], ["created_at", 2016-08-19 02:55:23 UTC], ["updated_at", 2016-08-19 02:55:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amêndoas"], ["question_id", 1788], ["correct", true], ["created_at", 2016-08-19 02:55:23 UTC], ["updated_at", 2016-08-19 02:55:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Figos"], ["question_id", 1788], ["correct", false], ["created_at", 2016-08-19 02:55:23 UTC], ["updated_at", 2016-08-19 02:55:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Limões"], ["question_id", 1788], ["correct", false], ["created_at", 2016-08-19 02:55:23 UTC], ["updated_at", 2016-08-19 02:55:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Damascos"], ["question_id", 1788], ["correct", false], ["created_at", 2016-08-19 02:55:23 UTC], ["updated_at", 2016-08-19 02:55:23 UTC]]  (131.1ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter conversado com Jesus, o que Pôncio Pilatos quis fazer com Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter conversado com Jesus, o que Pôncio Pilatos quis fazer com Jesus?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após ter conversado com Jesus, o que Pôncio Pilatos quis fazer com Jesus?"], ["created_at", 2016-08-19 02:55:23 UTC], ["updated_at", 2016-08-19 02:55:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Libertá-lo"], ["question_id", 1789], ["correct", true], ["created_at", 2016-08-19 02:55:23 UTC], ["updated_at", 2016-08-19 02:55:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aprisioná-lo"], ["question_id", 1789], ["correct", false], ["created_at", 2016-08-19 02:55:23 UTC], ["updated_at", 2016-08-19 02:55:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matá-lo"], ["question_id", 1789], ["correct", false], ["created_at", 2016-08-19 02:55:23 UTC], ["updated_at", 2016-08-19 02:55:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Açoitá-lo"], ["question_id", 1789], ["correct", false], ["created_at", 2016-08-19 02:55:23 UTC], ["updated_at", 2016-08-19 02:55:23 UTC]]  (141.3ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter matado a Amnom, para qual cidade Absalão fugiu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter matado a Amnom, para qual cidade Absalão fugiu?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após ter matado a Amnom, para qual cidade Absalão fugiu?"], ["created_at", 2016-08-19 02:55:23 UTC], ["updated_at", 2016-08-19 02:55:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gesur"], ["question_id", 1790], ["correct", true], ["created_at", 2016-08-19 02:55:23 UTC], ["updated_at", 2016-08-19 02:55:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gomorra"], ["question_id", 1790], ["correct", false], ["created_at", 2016-08-19 02:55:23 UTC], ["updated_at", 2016-08-19 02:55:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nínive"], ["question_id", 1790], ["correct", false], ["created_at", 2016-08-19 02:55:23 UTC], ["updated_at", 2016-08-19 02:55:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jericó"], ["question_id", 1790], ["correct", false], ["created_at", 2016-08-19 02:55:23 UTC], ["updated_at", 2016-08-19 02:55:23 UTC]]  (174.8ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter passado pela Macedônia e ido à Grécia, qual era o próximo destino que Paulo planejava ir?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter passado pela Macedônia e ido à Grécia, qual era o próximo destino que Paulo planejava ir?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após ter passado pela Macedônia e ido à Grécia, qual era o próximo destino que Paulo planejava ir?"], ["created_at", 2016-08-19 02:55:23 UTC], ["updated_at", 2016-08-19 02:55:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Síria"], ["question_id", 1791], ["correct", true], ["created_at", 2016-08-19 02:55:23 UTC], ["updated_at", 2016-08-19 02:55:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filipos"], ["question_id", 1791], ["correct", false], ["created_at", 2016-08-19 02:55:23 UTC], ["updated_at", 2016-08-19 02:55:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trôade"], ["question_id", 1791], ["correct", false], ["created_at", 2016-08-19 02:55:23 UTC], ["updated_at", 2016-08-19 02:55:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tessalônica"], ["question_id", 1791], ["correct", false], ["created_at", 2016-08-19 02:55:23 UTC], ["updated_at", 2016-08-19 02:55:23 UTC]]  (141.4ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter passado pela Macedônia, qual apóstolo ficou 3 meses na Grécia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter passado pela Macedônia, qual apóstolo ficou 3 meses na Grécia?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após ter passado pela Macedônia, qual apóstolo ficou 3 meses na Grécia?"], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 1792], ["correct", true], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 1792], ["correct", false], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 1792], ["correct", false], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 1792], ["correct", false], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]]  (157.5ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter passado pela Macedônia, qual foi o próximo destino de Paulo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter passado pela Macedônia, qual foi o próximo destino de Paulo?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após ter passado pela Macedônia, qual foi o próximo destino de Paulo?"], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Grécia"], ["question_id", 1793], ["correct", true], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Roma"], ["question_id", 1793], ["correct", false], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ilha de Patmos"], ["question_id", 1793], ["correct", false], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tessalônica"], ["question_id", 1793], ["correct", false], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]]  (133.0ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter sido cercado pelo exército babilônico pela 3ª vez, o que o rei Zedequias tentou fazer?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter sido cercado pelo exército babilônico pela 3ª vez, o que o rei Zedequias tentou fazer?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após ter sido cercado pelo exército babilônico pela 3ª vez, o que o rei Zedequias tentou fazer?"], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escapar"], ["question_id", 1794], ["correct", true], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Acordo Com Nabucodonosor"], ["question_id", 1794], ["correct", false], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Suicidar"], ["question_id", 1794], ["correct", false], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oferecer Toda A Família Real Como Escravo"], ["question_id", 1794], ["correct", false], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]]  (149.4ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter sido construída, que ordens o rei Nabucodonosor deu ao seu povo com relação à estátua?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter sido construída, que ordens o rei Nabucodonosor deu ao seu povo com relação à estátua?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após ter sido construída, que ordens o rei Nabucodonosor deu ao seu povo com relação à estátua?"], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Devia Ser Louvada"], ["question_id", 1795], ["correct", true], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Devia Ser Lavada"], ["question_id", 1795], ["correct", false], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Devia Ser Derretida"], ["question_id", 1795], ["correct", false], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Devia Ser Transportada Pelos Escravos"], ["question_id", 1795], ["correct", false], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]]  (164.3ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter sido curado da cegueira, qual foi o novo nome de Saulo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter sido curado da cegueira, qual foi o novo nome de Saulo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após ter sido curado da cegueira, qual foi o novo nome de Saulo?"], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 1796], ["correct", true], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "André"], ["question_id", 1796], ["correct", false], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 1796], ["correct", false], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 1796], ["correct", false], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]]  (122.7ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter sido nomeado governador do Egito, José possuia um cargo de alto-escalão, apenas abaixo do:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter sido nomeado governador do Egito, José possuia um cargo de alto-escalão, apenas abaixo do:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após ter sido nomeado governador do Egito, José possuia um cargo de alto-escalão, apenas abaixo do:"], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Próprio Faraó"], ["question_id", 1797], ["correct", true], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Presidente do Egito"], ["question_id", 1797], ["correct", false], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Primeiro-ministro do Egito"], ["question_id", 1797], ["correct", false], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rainha do Egito"], ["question_id", 1797], ["correct", false], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]]  (115.4ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter soltado a pomba pela 3ª vez e ela não ter retornado à arca, o que Noé concluiu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter soltado a pomba pela 3ª vez e ela não ter retornado à arca, o que Noé concluiu?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após ter soltado a pomba pela 3ª vez e ela não ter retornado à arca, o que Noé concluiu?"], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Já Havia Terra Seca"], ["question_id", 1798], ["correct", true], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Ela Morreu Afogada No Mar"], ["question_id", 1798], ["correct", false], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Ela Se Perdeu"], ["question_id", 1798], ["correct", false], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Ela Foi Devorada Por Um Grande Peixe"], ["question_id", 1798], ["correct", false], ["created_at", 2016-08-19 02:55:24 UTC], ["updated_at", 2016-08-19 02:55:24 UTC]]  (124.3ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter traído Jesus por dinheiro e ter-se arrependido, a quem Judas tentou devolver o dinheiro?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter traído Jesus por dinheiro e ter-se arrependido, a quem Judas tentou devolver o dinheiro?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após ter traído Jesus por dinheiro e ter-se arrependido, a quem Judas tentou devolver o dinheiro?"], ["created_at", 2016-08-19 02:55:25 UTC], ["updated_at", 2016-08-19 02:55:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Sumos-sacerdotes"], ["question_id", 1799], ["correct", true], ["created_at", 2016-08-19 02:55:25 UTC], ["updated_at", 2016-08-19 02:55:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Fariseus"], ["question_id", 1799], ["correct", false], ["created_at", 2016-08-19 02:55:25 UTC], ["updated_at", 2016-08-19 02:55:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Soldados Romanos"], ["question_id", 1799], ["correct", false], ["created_at", 2016-08-19 02:55:25 UTC], ["updated_at", 2016-08-19 02:55:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Imperador Romano"], ["question_id", 1799], ["correct", false], ["created_at", 2016-08-19 02:55:25 UTC], ["updated_at", 2016-08-19 02:55:25 UTC]]  (149.4ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter traído Jesus, Judas Iscariotes arrependeu-se e suicidou-se:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter traído Jesus, Judas Iscariotes arrependeu-se e suicidou-se:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após ter traído Jesus, Judas Iscariotes arrependeu-se e suicidou-se:"], ["created_at", 2016-08-19 02:55:25 UTC], ["updated_at", 2016-08-19 02:55:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Enforcando-se"], ["question_id", 1800], ["correct", true], ["created_at", 2016-08-19 02:55:25 UTC], ["updated_at", 2016-08-19 02:55:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Degolando-se"], ["question_id", 1800], ["correct", false], ["created_at", 2016-08-19 02:55:25 UTC], ["updated_at", 2016-08-19 02:55:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Atirando-se do Monte Carmelo"], ["question_id", 1800], ["correct", false], ["created_at", 2016-08-19 02:55:25 UTC], ["updated_at", 2016-08-19 02:55:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Morrendo Afogado No Mar Morto"], ["question_id", 1800], ["correct", false], ["created_at", 2016-08-19 02:55:25 UTC], ["updated_at", 2016-08-19 02:55:25 UTC]]  (164.5ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter vestido os panos de saco, o rei Nínive sentou sobre:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter vestido os panos de saco, o rei Nínive sentou sobre:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após ter vestido os panos de saco, o rei Nínive sentou sobre:"], ["created_at", 2016-08-19 02:55:25 UTC], ["updated_at", 2016-08-19 02:55:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cinzas"], ["question_id", 1801], ["correct", true], ["created_at", 2016-08-19 02:55:25 UTC], ["updated_at", 2016-08-19 02:55:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lombo de Mula"], ["question_id", 1801], ["correct", false], ["created_at", 2016-08-19 02:55:25 UTC], ["updated_at", 2016-08-19 02:55:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esterco de Porco"], ["question_id", 1801], ["correct", false], ["created_at", 2016-08-19 02:55:25 UTC], ["updated_at", 2016-08-19 02:55:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Espinhos"], ["question_id", 1801], ["correct", false], ["created_at", 2016-08-19 02:55:25 UTC], ["updated_at", 2016-08-19 02:55:25 UTC]]  (131.8ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter visitado a Macedônia e a Grécia, Paulo desejava ir para a Síria. Qual motivo levou Paulo a retornar à Macedônia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após ter visitado a Macedônia e a Grécia, Paulo desejava ir para a Síria. Qual motivo levou Paulo a retornar à Macedônia?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após ter visitado a Macedônia e a Grécia, Paulo desejava ir para a Síria. Qual motivo levou Paulo a retornar à Macedônia?"], ["created_at", 2016-08-19 02:55:25 UTC], ["updated_at", 2016-08-19 02:55:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Cilada Contra Sua Vida"], ["question_id", 1802], ["correct", true], ["created_at", 2016-08-19 02:55:25 UTC], ["updated_at", 2016-08-19 02:55:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Silas Estava Na Macedônia"], ["question_id", 1802], ["correct", false], ["created_at", 2016-08-19 02:55:25 UTC], ["updated_at", 2016-08-19 02:55:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mandaram Chamá-lo"], ["question_id", 1802], ["correct", false], ["created_at", 2016-08-19 02:55:25 UTC], ["updated_at", 2016-08-19 02:55:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Problemas de Doença"], ["question_id", 1802], ["correct", false], ["created_at", 2016-08-19 02:55:25 UTC], ["updated_at", 2016-08-19 02:55:25 UTC]]  (130.7ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após terem cruzado o rio Jordão, em que local os israelitas pararam pela 1ª vez?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após terem cruzado o rio Jordão, em que local os israelitas pararam pela 1ª vez?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após terem cruzado o rio Jordão, em que local os israelitas pararam pela 1ª vez?"], ["created_at", 2016-08-19 02:55:25 UTC], ["updated_at", 2016-08-19 02:55:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gilgal"], ["question_id", 1803], ["correct", true], ["created_at", 2016-08-19 02:55:25 UTC], ["updated_at", 2016-08-19 02:55:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Qumram"], ["question_id", 1803], ["correct", false], ["created_at", 2016-08-19 02:55:25 UTC], ["updated_at", 2016-08-19 02:55:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Efraim"], ["question_id", 1803], ["correct", false], ["created_at", 2016-08-19 02:55:25 UTC], ["updated_at", 2016-08-19 02:55:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jericó"], ["question_id", 1803], ["correct", false], ["created_at", 2016-08-19 02:55:25 UTC], ["updated_at", 2016-08-19 02:55:25 UTC]]  (139.4ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após terem espancado Jesus, o que os soldados romanos fizeram com a cana que haviam colocado em Suas mãos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após terem espancado Jesus, o que os soldados romanos fizeram com a cana que haviam colocado em Suas mãos?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após terem espancado Jesus, o que os soldados romanos fizeram com a cana que haviam colocado em Suas mãos?"], ["created_at", 2016-08-19 02:55:25 UTC], ["updated_at", 2016-08-19 02:55:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bateram Em Sua Cabeça"], ["question_id", 1804], ["correct", true], ["created_at", 2016-08-19 02:55:25 UTC], ["updated_at", 2016-08-19 02:55:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quebraram Seu Braço"], ["question_id", 1804], ["correct", false], ["created_at", 2016-08-19 02:55:25 UTC], ["updated_at", 2016-08-19 02:55:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esmagaram Seus Dedos"], ["question_id", 1804], ["correct", false], ["created_at", 2016-08-19 02:55:25 UTC], ["updated_at", 2016-08-19 02:55:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quebraram Sua Perna"], ["question_id", 1804], ["correct", false], ["created_at", 2016-08-19 02:55:25 UTC], ["updated_at", 2016-08-19 02:55:25 UTC]]  (123.5ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após terem visitado o menino Jesus, como eles foram alertados para que não voltassem a Herodes?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após terem visitado o menino Jesus, como eles foram alertados para que não voltassem a Herodes?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após terem visitado o menino Jesus, como eles foram alertados para que não voltassem a Herodes?"], ["created_at", 2016-08-19 02:55:25 UTC], ["updated_at", 2016-08-19 02:55:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiveram Um Sonho"], ["question_id", 1805], ["correct", true], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José Os Advertiu"], ["question_id", 1805], ["correct", false], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Receberam Uma Carta"], ["question_id", 1805], ["correct", false], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Receberam Um Mensageiro"], ["question_id", 1805], ["correct", false], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]]  (133.1ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após terem visitado o menino Jesus, quem foi advertido para que não fossem novamente a Herodes?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Após terem visitado o menino Jesus, quem foi advertido para que não fossem novamente a Herodes?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Após terem visitado o menino Jesus, quem foi advertido para que não fossem novamente a Herodes?"], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Reis Magos"], ["question_id", 1806], ["correct", true], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Pastores de Ovelhas"], ["question_id", 1806], ["correct", false], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José e Maria"], ["question_id", 1806], ["correct", false], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Anjos Celestes"], ["question_id", 1806], ["correct", false], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]]  (142.1ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Arão, chefe de uma das tribos de Israel, era o líder de qual tribo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.1ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Arão, chefe de uma das tribos de Israel, era o líder de qual tribo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Arão, chefe de uma das tribos de Israel, era o líder de qual tribo?"], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Levi"], ["question_id", 1807], ["correct", true], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judá"], ["question_id", 1807], ["correct", false], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Benjamim"], ["question_id", 1807], ["correct", false], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rúben"], ["question_id", 1807], ["correct", false], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]]  (115.8ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "As cinzas do forno foram utilizadas por Moisés e Arão para enviar contra os egípcios a praga dos:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "As cinzas do forno foram utilizadas por Moisés e Arão para enviar contra os egípcios a praga dos:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "As cinzas do forno foram utilizadas por Moisés e Arão para enviar contra os egípcios a praga dos:"], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tumores"], ["question_id", 1808], ["correct", true], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gafanhotos"], ["question_id", 1808], ["correct", false], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Morte do Primogênito"], ["question_id", 1808], ["correct", false], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moscas"], ["question_id", 1808], ["correct", false], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]]  (114.3ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "As doze tribos de Israel nasceram através do casamento da linhagem de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "As doze tribos de Israel nasceram através do casamento da linhagem de:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "As doze tribos de Israel nasceram através do casamento da linhagem de:"], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 1809], ["correct", true], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 1809], ["correct", false], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mefibosete"], ["question_id", 1809], ["correct", false], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1809], ["correct", false], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]]  (140.1ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "As portas de qual cidade Sansão arrancou e levou para o cume de um monte?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "As portas de qual cidade Sansão arrancou e levou para o cume de um monte?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "As portas de qual cidade Sansão arrancou e levou para o cume de um monte?"], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gaza"], ["question_id", 1810], ["correct", true], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Efraim"], ["question_id", 1810], ["correct", false], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jafé"], ["question_id", 1810], ["correct", false], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jericó"], ["question_id", 1810], ["correct", false], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]]  (139.1ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "As roupas confeccionadas com pêlo de camelo foram usadas por:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "As roupas confeccionadas com pêlo de camelo foram usadas por:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "As roupas confeccionadas com pêlo de camelo foram usadas por:"], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 1811], ["correct", true], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 1811], ["correct", false], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes"], ["question_id", 1811], ["correct", false], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 1811], ["correct", false], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]]  (131.1ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Assim que Moisés desceu do Monte Sinai pela 1ª vez e viu que o povo estava adorando um ídolo, o que Moisés fez?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Assim que Moisés desceu do Monte Sinai pela 1ª vez e viu que o povo estava adorando um ídolo, o que Moisés fez?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Assim que Moisés desceu do Monte Sinai pela 1ª vez e viu que o povo estava adorando um ídolo, o que Moisés fez?"], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quebrou As Tábuas da Lei de Deus"], ["question_id", 1812], ["correct", true], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mandou Matar Quem Construiu O Ídolo"], ["question_id", 1812], ["correct", false], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mandou Derreter O Ídolo"], ["question_id", 1812], ["correct", false], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fugiu do Acampamento Para Nunca Mais Voltar"], ["question_id", 1812], ["correct", false], ["created_at", 2016-08-19 02:55:26 UTC], ["updated_at", 2016-08-19 02:55:26 UTC]]  (132.7ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Atalia tentou destruir o rei Jeoás. Qual era o grau de parentesco entre eles?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Atalia tentou destruir o rei Jeoás. Qual era o grau de parentesco entre eles?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Atalia tentou destruir o rei Jeoás. Qual era o grau de parentesco entre eles?"], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Avó e Neto"], ["question_id", 1813], ["correct", true], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tia e Sobrinho"], ["question_id", 1813], ["correct", false], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mãe e Filho"], ["question_id", 1813], ["correct", false], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filha e Pai"], ["question_id", 1813], ["correct", false], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]]  (122.5ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Através de uma estrela, os Reis Magos foram levados até:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Através de uma estrela, os Reis Magos foram levados até:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Através de uma estrela, os Reis Magos foram levados até:"], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Menino Jesus"], ["question_id", 1814], ["correct", true], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arca de Noé"], ["question_id", 1814], ["correct", false], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Palácio do Faraó"], ["question_id", 1814], ["correct", false], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ilha de Patmos"], ["question_id", 1814], ["correct", false], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]]  (133.8ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Baal era um deus cultuado pelo povo da terra de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Baal era um deus cultuado pelo povo da terra de:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Baal era um deus cultuado pelo povo da terra de:"], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Canaã"], ["question_id", 1815], ["correct", true], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egito"], ["question_id", 1815], ["correct", false], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônia"], ["question_id", 1815], ["correct", false], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Grécia"], ["question_id", 1815], ["correct", false], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]]  (133.1ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Balaão estava sentado em uma jumenta quando lhe apareceu:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Balaão estava sentado em uma jumenta quando lhe apareceu:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Balaão estava sentado em uma jumenta quando lhe apareceu:"], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Anjo Com A Espada Desembainhada"], ["question_id", 1816], ["correct", true], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Pelotão de Soldados"], ["question_id", 1816], ["correct", false], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Rei Inimigo"], ["question_id", 1816], ["correct", false], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Profeta de Deus"], ["question_id", 1816], ["correct", false], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]]  (140.6ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Balaão tinha um burro que chegou a falar após ter visto:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Balaão tinha um burro que chegou a falar após ter visto:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Balaão tinha um burro que chegou a falar após ter visto:"], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Anjo de Deus"], ["question_id", 1817], ["correct", true], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Próprio Deus"], ["question_id", 1817], ["correct", false], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Satanás"], ["question_id", 1817], ["correct", false], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Balaão Dormindo"], ["question_id", 1817], ["correct", false], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]]  (124.1ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Baraque, comandante de Israel, disse que só iria à batalha se fosse acompanhado por:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Baraque, comandante de Israel, disse que só iria à batalha se fosse acompanhado por:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Baraque, comandante de Israel, disse que só iria à batalha se fosse acompanhado por:"], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Mulher"], ["question_id", 1818], ["correct", true], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Rei"], ["question_id", 1818], ["correct", false], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deus"], ["question_id", 1818], ["correct", false], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anjos"], ["question_id", 1818], ["correct", false], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]]  (132.9ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Bate-Seba foi casada com o oficial:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Bate-Seba foi casada com o oficial:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Bate-Seba foi casada com o oficial:"], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Urias"], ["question_id", 1819], ["correct", true], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Naamã"], ["question_id", 1819], ["correct", false], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Natã"], ["question_id", 1819], ["correct", false], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiglete-pileser"], ["question_id", 1819], ["correct", false], ["created_at", 2016-08-19 02:55:27 UTC], ["updated_at", 2016-08-19 02:55:27 UTC]]  (131.2ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Bate-Seba pediu ao rei Davi para que escolhesse qual filho para lhe suceder no trono real?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Bate-Seba pediu ao rei Davi para que escolhesse qual filho para lhe suceder no trono real?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Bate-Seba pediu ao rei Davi para que escolhesse qual filho para lhe suceder no trono real?"], ["created_at", 2016-08-19 02:55:28 UTC], ["updated_at", 2016-08-19 02:55:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1820], ["correct", true], ["created_at", 2016-08-19 02:55:28 UTC], ["updated_at", 2016-08-19 02:55:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sobabe"], ["question_id", 1820], ["correct", false], ["created_at", 2016-08-19 02:55:28 UTC], ["updated_at", 2016-08-19 02:55:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adonias"], ["question_id", 1820], ["correct", false], ["created_at", 2016-08-19 02:55:28 UTC], ["updated_at", 2016-08-19 02:55:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samua"], ["question_id", 1820], ["correct", false], ["created_at", 2016-08-19 02:55:28 UTC], ["updated_at", 2016-08-19 02:55:28 UTC]]  (406.1ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Betuel foi o pai de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Betuel foi o pai de:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Betuel foi o pai de:"], ["created_at", 2016-08-19 02:55:28 UTC], ["updated_at", 2016-08-19 02:55:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 1821], ["correct", true], ["created_at", 2016-08-19 02:55:28 UTC], ["updated_at", 2016-08-19 02:55:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sara"], ["question_id", 1821], ["correct", false], ["created_at", 2016-08-19 02:55:28 UTC], ["updated_at", 2016-08-19 02:55:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Raabe"], ["question_id", 1821], ["correct", false], ["created_at", 2016-08-19 02:55:28 UTC], ["updated_at", 2016-08-19 02:55:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jezabel"], ["question_id", 1821], ["correct", false], ["created_at", 2016-08-19 02:55:28 UTC], ["updated_at", 2016-08-19 02:55:28 UTC]]  (130.8ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Cafarnaum era a cidade natal dos discípulos:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Cafarnaum era a cidade natal dos discípulos:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Cafarnaum era a cidade natal dos discípulos:"], ["created_at", 2016-08-19 02:55:28 UTC], ["updated_at", 2016-08-19 02:55:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro e André"], ["question_id", 1822], ["correct", true], ["created_at", 2016-08-19 02:55:28 UTC], ["updated_at", 2016-08-19 02:55:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 1822], ["correct", false], ["created_at", 2016-08-19 02:55:28 UTC], ["updated_at", 2016-08-19 02:55:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas"], ["question_id", 1822], ["correct", false], ["created_at", 2016-08-19 02:55:28 UTC], ["updated_at", 2016-08-19 02:55:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 1822], ["correct", false], ["created_at", 2016-08-19 02:55:28 UTC], ["updated_at", 2016-08-19 02:55:28 UTC]]  (164.8ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Cão, Sem e Jafé são filhos de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Cão, Sem e Jafé são filhos de:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Cão, Sem e Jafé são filhos de:"], ["created_at", 2016-08-19 02:55:28 UTC], ["updated_at", 2016-08-19 02:55:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noé"], ["question_id", 1823], ["correct", true], ["created_at", 2016-08-19 02:55:28 UTC], ["updated_at", 2016-08-19 02:55:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adão"], ["question_id", 1823], ["correct", false], ["created_at", 2016-08-19 02:55:28 UTC], ["updated_at", 2016-08-19 02:55:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 1823], ["correct", false], ["created_at", 2016-08-19 02:55:28 UTC], ["updated_at", 2016-08-19 02:55:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 1823], ["correct", false], ["created_at", 2016-08-19 02:55:28 UTC], ["updated_at", 2016-08-19 02:55:28 UTC]]  (150.3ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Certa noite, em uma caverna, Jacó lutou contra:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Certa noite, em uma caverna, Jacó lutou contra:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Certa noite, em uma caverna, Jacó lutou contra:"], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deus"], ["question_id", 1824], ["correct", true], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 1824], ["correct", false], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1824], ["correct", false], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Satanás"], ["question_id", 1824], ["correct", false], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]]  (131.3ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Certa vez, o ferro de um machado caiu acidentalmente em um lago. Quem orou que fez com que o ferro voltasse à tona?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Certa vez, o ferro de um machado caiu acidentalmente em um lago. Quem orou que fez com que o ferro voltasse à tona?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Certa vez, o ferro de um machado caiu acidentalmente em um lago. Quem orou que fez com que o ferro voltasse à tona?"], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 1825], ["correct", true], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 1825], ["correct", false], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 1825], ["correct", false], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Enoque"], ["question_id", 1825], ["correct", false], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]]  (123.1ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com o que a cesta onde Moisés foi depositado era coberto, para que a esta não afundasse?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com o que a cesta onde Moisés foi depositado era coberto, para que a esta não afundasse?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Com o que a cesta onde Moisés foi depositado era coberto, para que a esta não afundasse?"], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Betume"], ["question_id", 1826], ["correct", true], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Argila"], ["question_id", 1826], ["correct", false], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Prata"], ["question_id", 1826], ["correct", false], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Madeira"], ["question_id", 1826], ["correct", false], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]]  (132.3ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com o que Maria envolveu o menino Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com o que Maria envolveu o menino Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Com o que Maria envolveu o menino Jesus?"], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Com Faixas"], ["question_id", 1827], ["correct", true], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Com Manto"], ["question_id", 1827], ["correct", false], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Com Uma Túnica"], ["question_id", 1827], ["correct", false], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Com Palhas"], ["question_id", 1827], ["correct", false], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]]  (131.0ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com o que os soldados romanos bateram na cabeça de Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com o que os soldados romanos bateram na cabeça de Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Com o que os soldados romanos bateram na cabeça de Jesus?"], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cana"], ["question_id", 1828], ["correct", true], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Madeira"], ["question_id", 1828], ["correct", false], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porrete"], ["question_id", 1828], ["correct", false], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ferro"], ["question_id", 1828], ["correct", false], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]]  (131.0ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com o que Sansão matou 1.000 filisteus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com o que Sansão matou 1.000 filisteus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Com o que Sansão matou 1.000 filisteus?"], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Queixada de Jumento"], ["question_id", 1829], ["correct", true], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arco e Flecha"], ["question_id", 1829], ["correct", false], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Água Fervente"], ["question_id", 1829], ["correct", false], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bolas de Fogo"], ["question_id", 1829], ["correct", false], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]]  (182.5ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com o seu exército, Nabucodonosor derrubou os muros de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com o seu exército, Nabucodonosor derrubou os muros de:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Com o seu exército, Nabucodonosor derrubou os muros de:"], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 1830], ["correct", true], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jericó"], ["question_id", 1830], ["correct", false], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Atenas"], ["question_id", 1830], ["correct", false], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ur"], ["question_id", 1830], ["correct", false], ["created_at", 2016-08-19 02:55:29 UTC], ["updated_at", 2016-08-19 02:55:29 UTC]]  (164.3ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com qual deus grego Barnabé foi confundido, enquanto estava com Paulo na cidade de Listra?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com qual deus grego Barnabé foi confundido, enquanto estava com Paulo na cidade de Listra?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Com qual deus grego Barnabé foi confundido, enquanto estava com Paulo na cidade de Listra?"], ["created_at", 2016-08-19 02:55:30 UTC], ["updated_at", 2016-08-19 02:55:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Júpiter"], ["question_id", 1831], ["correct", true], ["created_at", 2016-08-19 02:55:30 UTC], ["updated_at", 2016-08-19 02:55:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mercúrio"], ["question_id", 1831], ["correct", false], ["created_at", 2016-08-19 02:55:30 UTC], ["updated_at", 2016-08-19 02:55:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zeus"], ["question_id", 1831], ["correct", false], ["created_at", 2016-08-19 02:55:30 UTC], ["updated_at", 2016-08-19 02:55:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Baco"], ["question_id", 1831], ["correct", false], ["created_at", 2016-08-19 02:55:30 UTC], ["updated_at", 2016-08-19 02:55:30 UTC]]  (122.7ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com qual deus grego Paulo foi confundido quanto encontrava-se na cidade de Listra?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com qual deus grego Paulo foi confundido quanto encontrava-se na cidade de Listra?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Com qual deus grego Paulo foi confundido quanto encontrava-se na cidade de Listra?"], ["created_at", 2016-08-19 02:55:30 UTC], ["updated_at", 2016-08-19 02:55:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mercúrio"], ["question_id", 1832], ["correct", true], ["created_at", 2016-08-19 02:55:30 UTC], ["updated_at", 2016-08-19 02:55:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Poseidon"], ["question_id", 1832], ["correct", false], ["created_at", 2016-08-19 02:55:30 UTC], ["updated_at", 2016-08-19 02:55:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zeus"], ["question_id", 1832], ["correct", false], ["created_at", 2016-08-19 02:55:30 UTC], ["updated_at", 2016-08-19 02:55:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Agatha"], ["question_id", 1832], ["correct", false], ["created_at", 2016-08-19 02:55:30 UTC], ["updated_at", 2016-08-19 02:55:30 UTC]]  (248.8ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com qual idade Jeoás passou a reinar sobre a nação israelita?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com qual idade Jeoás passou a reinar sobre a nação israelita?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Com qual idade Jeoás passou a reinar sobre a nação israelita?"], ["created_at", 2016-08-19 02:55:30 UTC], ["updated_at", 2016-08-19 02:55:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7 Anos"], ["question_id", 1833], ["correct", true], ["created_at", 2016-08-19 02:55:30 UTC], ["updated_at", 2016-08-19 02:55:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12 Anos"], ["question_id", 1833], ["correct", false], ["created_at", 2016-08-19 02:55:30 UTC], ["updated_at", 2016-08-19 02:55:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "25 Anos"], ["question_id", 1833], ["correct", false], ["created_at", 2016-08-19 02:55:30 UTC], ["updated_at", 2016-08-19 02:55:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10 Anos"], ["question_id", 1833], ["correct", false], ["created_at", 2016-08-19 02:55:30 UTC], ["updated_at", 2016-08-19 02:55:30 UTC]]  (189.2ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com quantos dias de vida Jesus foi circuncidado?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com quantos dias de vida Jesus foi circuncidado?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Com quantos dias de vida Jesus foi circuncidado?"], ["created_at", 2016-08-19 02:55:30 UTC], ["updated_at", 2016-08-19 02:55:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "8"], ["question_id", 1834], ["correct", true], ["created_at", 2016-08-19 02:55:30 UTC], ["updated_at", 2016-08-19 02:55:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "14"], ["question_id", 1834], ["correct", false], ["created_at", 2016-08-19 02:55:30 UTC], ["updated_at", 2016-08-19 02:55:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 1834], ["correct", false], ["created_at", 2016-08-19 02:55:30 UTC], ["updated_at", 2016-08-19 02:55:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "30"], ["question_id", 1834], ["correct", false], ["created_at", 2016-08-19 02:55:30 UTC], ["updated_at", 2016-08-19 02:55:30 UTC]]  (156.4ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com quantos dias deveria ser circuncidado um menino recém nascido?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com quantos dias deveria ser circuncidado um menino recém nascido?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Com quantos dias deveria ser circuncidado um menino recém nascido?"], ["created_at", 2016-08-19 02:55:30 UTC], ["updated_at", 2016-08-19 02:55:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "8"], ["question_id", 1835], ["correct", true], ["created_at", 2016-08-19 02:55:30 UTC], ["updated_at", 2016-08-19 02:55:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 1835], ["correct", false], ["created_at", 2016-08-19 02:55:30 UTC], ["updated_at", 2016-08-19 02:55:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "15"], ["question_id", 1835], ["correct", false], ["created_at", 2016-08-19 02:55:30 UTC], ["updated_at", 2016-08-19 02:55:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "35"], ["question_id", 1835], ["correct", false], ["created_at", 2016-08-19 02:55:30 UTC], ["updated_at", 2016-08-19 02:55:30 UTC]]  (172.4ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com que espécie de madeira foi construída a arca?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com que espécie de madeira foi construída a arca?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Com que espécie de madeira foi construída a arca?"], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cipreste"], ["question_id", 1836], ["correct", true], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zimbro"], ["question_id", 1836], ["correct", false], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cedro do Líbano"], ["question_id", 1836], ["correct", false], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salgueiro"], ["question_id", 1836], ["correct", false], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]]  (173.0ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com que material Noé revestiu a arca, tanto internamente quanto externamente?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com que material Noé revestiu a arca, tanto internamente quanto externamente?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Com que material Noé revestiu a arca, tanto internamente quanto externamente?"], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Betume"], ["question_id", 1837], ["correct", true], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Barro"], ["question_id", 1837], ["correct", false], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gordura"], ["question_id", 1837], ["correct", false], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Óleo Vegetal"], ["question_id", 1837], ["correct", false], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]]  (148.1ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com quem a rainha Vasti era casada?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com quem a rainha Vasti era casada?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Com quem a rainha Vasti era casada?"], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assuero"], ["question_id", 1838], ["correct", true], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 1838], ["correct", false], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 1838], ["correct", false], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belsazar"], ["question_id", 1838], ["correct", false], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]]  (114.8ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com quem Zípora e Jetro tinham um grau de parentesco em comum?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com quem Zípora e Jetro tinham um grau de parentesco em comum?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Com quem Zípora e Jetro tinham um grau de parentesco em comum?"], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1839], ["correct", true], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 1839], ["correct", false], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 1839], ["correct", false], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Levi"], ["question_id", 1839], ["correct", false], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]]  (131.8ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com relação a Jesus, ao invés de quebrar as Suas pernas, o que os soldados romanos fizeram?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com relação a Jesus, ao invés de quebrar as Suas pernas, o que os soldados romanos fizeram?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Com relação a Jesus, ao invés de quebrar as Suas pernas, o que os soldados romanos fizeram?"], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Perfuraram-no Com Uma Lança"], ["question_id", 1840], ["correct", true], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Furaram Seus Olhos"], ["question_id", 1840], ["correct", false], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Disseram: \"este É Realmente O Filho de Deus!\""], ["question_id", 1840], ["correct", false], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Despiram-no"], ["question_id", 1840], ["correct", false], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]]  (115.6ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com relação à rebelião de Corá, Datã e Abirão, que fez com que o chão os engolisse?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Com relação à rebelião de Corá, Datã e Abirão, que fez com que o chão os engolisse?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Com relação à rebelião de Corá, Datã e Abirão, que fez com que o chão os engolisse?"], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deus"], ["question_id", 1841], ["correct", true], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1841], ["correct", false], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 1841], ["correct", false], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 1841], ["correct", false], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]]  (132.8ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como as árvores utilizadas na construção do Templo de Salomão foram transportadas do Líbano para a Palestina?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como as árvores utilizadas na construção do Templo de Salomão foram transportadas do Líbano para a Palestina?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como as árvores utilizadas na construção do Templo de Salomão foram transportadas do Líbano para a Palestina?"], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Através de Jangadas"], ["question_id", 1842], ["correct", true], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Através de Navios"], ["question_id", 1842], ["correct", false], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Através de Carros de Boi"], ["question_id", 1842], ["correct", false], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Através de Trabalho Escravo"], ["question_id", 1842], ["correct", false], ["created_at", 2016-08-19 02:55:31 UTC], ["updated_at", 2016-08-19 02:55:31 UTC]]  (141.4ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como Bate-Seba respondeu à notícia de que seu marido Urias havia morrido em batalha?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como Bate-Seba respondeu à notícia de que seu marido Urias havia morrido em batalha?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como Bate-Seba respondeu à notícia de que seu marido Urias havia morrido em batalha?"], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ela Enlutou-se"], ["question_id", 1843], ["correct", true], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ela Festejou"], ["question_id", 1843], ["correct", false], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ela Ficou Aliviada"], ["question_id", 1843], ["correct", false], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ela Se Suicidou"], ["question_id", 1843], ["correct", false], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]]  (123.0ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como Deus lidou com a rebelião de Corá, Datã e Abirão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como Deus lidou com a rebelião de Corá, Datã e Abirão?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como Deus lidou com a rebelião de Corá, Datã e Abirão?"], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fez O Chão Engoli-los"], ["question_id", 1844], ["correct", true], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lesou-os Com Lepra"], ["question_id", 1844], ["correct", false], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Expulsou-os do Acampamento"], ["question_id", 1844], ["correct", false], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arrancou-lhes Suas Línguas"], ["question_id", 1844], ["correct", false], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]]  (166.8ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como é conhecido o dia de descanso dos judeus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como é conhecido o dia de descanso dos judeus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como é conhecido o dia de descanso dos judeus?"], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sábado"], ["question_id", 1845], ["correct", true], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Sétima Lua Nova"], ["question_id", 1845], ["correct", false], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Dia da Expiação"], ["question_id", 1845], ["correct", false], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1º Dia da Semana"], ["question_id", 1845], ["correct", false], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]]  (172.5ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como era o nome da esposa de Áquila, que auxiliou no ministério de Paulo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como era o nome da esposa de Áquila, que auxiliou no ministério de Paulo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como era o nome da esposa de Áquila, que auxiliou no ministério de Paulo?"], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Priscila"], ["question_id", 1846], ["correct", true], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 1846], ["correct", false], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jezabel"], ["question_id", 1846], ["correct", false], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria Madalena"], ["question_id", 1846], ["correct", false], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]]  (114.4ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como era o nome da esposa do rei Acazias, que desejava matar a Elias?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como era o nome da esposa do rei Acazias, que desejava matar a Elias?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como era o nome da esposa do rei Acazias, que desejava matar a Elias?"], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jezabel"], ["question_id", 1847], ["correct", true], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hilquina"], ["question_id", 1847], ["correct", false], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ezequiela"], ["question_id", 1847], ["correct", false], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josiana"], ["question_id", 1847], ["correct", false], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]]  (122.9ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como Israel comemorou a passagem pelo Mar Vermelho?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como Israel comemorou a passagem pelo Mar Vermelho?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como Israel comemorou a passagem pelo Mar Vermelho?"], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Com Cânticos"], ["question_id", 1848], ["correct", true], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Com Jejum"], ["question_id", 1848], ["correct", false], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Com Sacrifício de Animais"], ["question_id", 1848], ["correct", false], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Com Ceia de Páscoa"], ["question_id", 1848], ["correct", false], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]]  (115.9ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como João Batista morreu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como João Batista morreu?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como João Batista morreu?"], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Decapitado"], ["question_id", 1849], ["correct", true], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Enforcado"], ["question_id", 1849], ["correct", false], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Queimado"], ["question_id", 1849], ["correct", false], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Enterrado Vivo"], ["question_id", 1849], ["correct", false], ["created_at", 2016-08-19 02:55:32 UTC], ["updated_at", 2016-08-19 02:55:32 UTC]]  (148.4ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como o rei Davi foi punido pelo fato de ter cometido adultério e assassinato?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como o rei Davi foi punido pelo fato de ter cometido adultério e assassinato?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como o rei Davi foi punido pelo fato de ter cometido adultério e assassinato?"], ["created_at", 2016-08-19 02:55:33 UTC], ["updated_at", 2016-08-19 02:55:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Filho Morreu"], ["question_id", 1850], ["correct", true], ["created_at", 2016-08-19 02:55:33 UTC], ["updated_at", 2016-08-19 02:55:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Amante Morreu"], ["question_id", 1850], ["correct", false], ["created_at", 2016-08-19 02:55:33 UTC], ["updated_at", 2016-08-19 02:55:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Pai Morreu"], ["question_id", 1850], ["correct", false], ["created_at", 2016-08-19 02:55:33 UTC], ["updated_at", 2016-08-19 02:55:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Mãe Morreu"], ["question_id", 1850], ["correct", false], ["created_at", 2016-08-19 02:55:33 UTC], ["updated_at", 2016-08-19 02:55:33 UTC]]  (308.1ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como o rei Davi respondeu às acusações do profeta Namã?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como o rei Davi respondeu às acusações do profeta Namã?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como o rei Davi respondeu às acusações do profeta Namã?"], ["created_at", 2016-08-19 02:55:33 UTC], ["updated_at", 2016-08-19 02:55:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arrependeu-se"], ["question_id", 1851], ["correct", true], ["created_at", 2016-08-19 02:55:33 UTC], ["updated_at", 2016-08-19 02:55:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irou-se"], ["question_id", 1851], ["correct", false], ["created_at", 2016-08-19 02:55:33 UTC], ["updated_at", 2016-08-19 02:55:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matou O Profeta"], ["question_id", 1851], ["correct", false], ["created_at", 2016-08-19 02:55:33 UTC], ["updated_at", 2016-08-19 02:55:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Festejou"], ["question_id", 1851], ["correct", false], ["created_at", 2016-08-19 02:55:33 UTC], ["updated_at", 2016-08-19 02:55:33 UTC]]  (131.3ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como o rei Nabucodonosor reagiu após Deus ter dado a Daniel a interpretação correta dos sonhos do rei?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como o rei Nabucodonosor reagiu após Deus ter dado a Daniel a interpretação correta dos sonhos do rei?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como o rei Nabucodonosor reagiu após Deus ter dado a Daniel a interpretação correta dos sonhos do rei?"], ["created_at", 2016-08-19 02:55:33 UTC], ["updated_at", 2016-08-19 02:55:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Abaixou-se A Louvou A Daniel"], ["question_id", 1852], ["correct", true], ["created_at", 2016-08-19 02:55:33 UTC], ["updated_at", 2016-08-19 02:55:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Ficou Irado Contra Daniel"], ["question_id", 1852], ["correct", false], ["created_at", 2016-08-19 02:55:33 UTC], ["updated_at", 2016-08-19 02:55:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Mandou Jogar Daniel Na Cova dos Leões"], ["question_id", 1852], ["correct", false], ["created_at", 2016-08-19 02:55:33 UTC], ["updated_at", 2016-08-19 02:55:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mandou Construir Uma Enorme Estátua"], ["question_id", 1852], ["correct", false], ["created_at", 2016-08-19 02:55:33 UTC], ["updated_at", 2016-08-19 02:55:33 UTC]]  (122.7ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como os judeus fizeram a dedicação do Templo, quando o processo de reconstrução foi concluído?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como os judeus fizeram a dedicação do Templo, quando o processo de reconstrução foi concluído?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como os judeus fizeram a dedicação do Templo, quando o processo de reconstrução foi concluído?"], ["created_at", 2016-08-19 02:55:33 UTC], ["updated_at", 2016-08-19 02:55:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Com Sacrifícios"], ["question_id", 1853], ["correct", true], ["created_at", 2016-08-19 02:55:33 UTC], ["updated_at", 2016-08-19 02:55:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Com Jejum"], ["question_id", 1853], ["correct", false], ["created_at", 2016-08-19 02:55:33 UTC], ["updated_at", 2016-08-19 02:55:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Comemorando Com Danças e Músicas"], ["question_id", 1853], ["correct", false], ["created_at", 2016-08-19 02:55:33 UTC], ["updated_at", 2016-08-19 02:55:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oferecendo Um Banquete"], ["question_id", 1853], ["correct", false], ["created_at", 2016-08-19 02:55:33 UTC], ["updated_at", 2016-08-19 02:55:33 UTC]]  (139.3ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como Potifar respondeu à acusação de sua esposa contra José?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como Potifar respondeu à acusação de sua esposa contra José?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como Potifar respondeu à acusação de sua esposa contra José?"], ["created_at", 2016-08-19 02:55:33 UTC], ["updated_at", 2016-08-19 02:55:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Colocou-o Na Prisão"], ["question_id", 1854], ["correct", true], ["created_at", 2016-08-19 02:55:33 UTC], ["updated_at", 2016-08-19 02:55:33 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matou-o"], ["question_id", 1854], ["correct", false], ["created_at", 2016-08-19 02:55:33 UTC], ["updated_at", 2016-08-19 02:55:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Expulsou-o"], ["question_id", 1854], ["correct", false], ["created_at", 2016-08-19 02:55:33 UTC], ["updated_at", 2016-08-19 02:55:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Surrou-o"], ["question_id", 1854], ["correct", false], ["created_at", 2016-08-19 02:55:33 UTC], ["updated_at", 2016-08-19 02:55:33 UTC]]  (139.2ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como Sansão deveria ser criado por sua mãe?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como Sansão deveria ser criado por sua mãe?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como Sansão deveria ser criado por sua mãe?"], ["created_at", 2016-08-19 02:55:33 UTC], ["updated_at", 2016-08-19 02:55:33 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Como Nazireu"], ["question_id", 1855], ["correct", true], ["created_at", 2016-08-19 02:55:33 UTC], ["updated_at", 2016-08-19 02:55:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Como Sábio"], ["question_id", 1855], ["correct", false], ["created_at", 2016-08-19 02:55:33 UTC], ["updated_at", 2016-08-19 02:55:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Com Rigor e Disciplina"], ["question_id", 1855], ["correct", false], ["created_at", 2016-08-19 02:55:33 UTC], ["updated_at", 2016-08-19 02:55:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Com Muita Educação"], ["question_id", 1855], ["correct", false], ["created_at", 2016-08-19 02:55:33 UTC], ["updated_at", 2016-08-19 02:55:33 UTC]]  (122.7ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava a esposa de Isaque?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava a esposa de Isaque?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como se chamava a esposa de Isaque?"], ["created_at", 2016-08-19 02:55:34 UTC], ["updated_at", 2016-08-19 02:55:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 1856], ["correct", true], ["created_at", 2016-08-19 02:55:34 UTC], ["updated_at", 2016-08-19 02:55:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sara"], ["question_id", 1856], ["correct", false], ["created_at", 2016-08-19 02:55:34 UTC], ["updated_at", 2016-08-19 02:55:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 1856], ["correct", false], ["created_at", 2016-08-19 02:55:34 UTC], ["updated_at", 2016-08-19 02:55:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Asenate"], ["question_id", 1856], ["correct", false], ["created_at", 2016-08-19 02:55:34 UTC], ["updated_at", 2016-08-19 02:55:34 UTC]]  (189.3ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava a filha de Jacó?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava a filha de Jacó?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como se chamava a filha de Jacó?"], ["created_at", 2016-08-19 02:55:34 UTC], ["updated_at", 2016-08-19 02:55:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Diná"], ["question_id", 1857], ["correct", true], ["created_at", 2016-08-19 02:55:34 UTC], ["updated_at", 2016-08-19 02:55:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mefibosete"], ["question_id", 1857], ["correct", false], ["created_at", 2016-08-19 02:55:34 UTC], ["updated_at", 2016-08-19 02:55:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliana"], ["question_id", 1857], ["correct", false], ["created_at", 2016-08-19 02:55:34 UTC], ["updated_at", 2016-08-19 02:55:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jezabel"], ["question_id", 1857], ["correct", false], ["created_at", 2016-08-19 02:55:34 UTC], ["updated_at", 2016-08-19 02:55:34 UTC]]  (197.7ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava a irmã de Moisés?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava a irmã de Moisés?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como se chamava a irmã de Moisés?"], ["created_at", 2016-08-19 02:55:34 UTC], ["updated_at", 2016-08-19 02:55:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 1858], ["correct", true], ["created_at", 2016-08-19 02:55:34 UTC], ["updated_at", 2016-08-19 02:55:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mirian"], ["question_id", 1858], ["correct", false], ["created_at", 2016-08-19 02:55:34 UTC], ["updated_at", 2016-08-19 02:55:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria"], ["question_id", 1858], ["correct", false], ["created_at", 2016-08-19 02:55:34 UTC], ["updated_at", 2016-08-19 02:55:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 1858], ["correct", false], ["created_at", 2016-08-19 02:55:34 UTC], ["updated_at", 2016-08-19 02:55:34 UTC]]  (133.4ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava a mãe de Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava a mãe de Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como se chamava a mãe de Jesus?"], ["created_at", 2016-08-19 02:55:34 UTC], ["updated_at", 2016-08-19 02:55:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria"], ["question_id", 1859], ["correct", true], ["created_at", 2016-08-19 02:55:34 UTC], ["updated_at", 2016-08-19 02:55:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 1859], ["correct", false], ["created_at", 2016-08-19 02:55:34 UTC], ["updated_at", 2016-08-19 02:55:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Teresa"], ["question_id", 1859], ["correct", false], ["created_at", 2016-08-19 02:55:34 UTC], ["updated_at", 2016-08-19 02:55:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isabel"], ["question_id", 1859], ["correct", false], ["created_at", 2016-08-19 02:55:34 UTC], ["updated_at", 2016-08-19 02:55:34 UTC]]  (214.6ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o 1º filho de Abraão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o 1º filho de Abraão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como se chamava o 1º filho de Abraão?"], ["created_at", 2016-08-19 02:55:34 UTC], ["updated_at", 2016-08-19 02:55:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 1860], ["correct", true], ["created_at", 2016-08-19 02:55:34 UTC], ["updated_at", 2016-08-19 02:55:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 1860], ["correct", false], ["created_at", 2016-08-19 02:55:34 UTC], ["updated_at", 2016-08-19 02:55:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel"], ["question_id", 1860], ["correct", false], ["created_at", 2016-08-19 02:55:34 UTC], ["updated_at", 2016-08-19 02:55:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mesaque"], ["question_id", 1860], ["correct", false], ["created_at", 2016-08-19 02:55:34 UTC], ["updated_at", 2016-08-19 02:55:34 UTC]]  (122.7ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o irmão de Abraão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o irmão de Abraão?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como se chamava o irmão de Abraão?"], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Harã"], ["question_id", 1861], ["correct", true], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anrão"], ["question_id", 1861], ["correct", false], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Labão"], ["question_id", 1861], ["correct", false], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeroboão"], ["question_id", 1861], ["correct", false], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]]  (115.9ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o irmão de Ismael?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o irmão de Ismael?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como se chamava o irmão de Ismael?"], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 1862], ["correct", true], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sadraque"], ["question_id", 1862], ["correct", false], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mesaque"], ["question_id", 1862], ["correct", false], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abede-nego"], ["question_id", 1862], ["correct", false], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]]  (149.1ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o irmão do gigante Golias?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o irmão do gigante Golias?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como se chamava o irmão do gigante Golias?"], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lami"], ["question_id", 1863], ["correct", true], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Laade"], ["question_id", 1863], ["correct", false], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lameque"], ["question_id", 1863], ["correct", false], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Larasa"], ["question_id", 1863], ["correct", false], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]]  (139.1ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o irmão gêmeo de Esaú?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o irmão gêmeo de Esaú?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como se chamava o irmão gêmeo de Esaú?"], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 1864], ["correct", true], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 1864], ["correct", false], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1864], ["correct", false], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 1864], ["correct", false], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]]  (132.2ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o nome do pai de Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o nome do pai de Jesus?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como se chamava o nome do pai de Jesus?"], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 1865], ["correct", true], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 1865], ["correct", false], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 1865], ["correct", false], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 1865], ["correct", false], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]]  (157.6ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o primeiro filho de Moisés?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o primeiro filho de Moisés?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como se chamava o primeiro filho de Moisés?"], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gérson"], ["question_id", 1866], ["correct", true], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gersem"], ["question_id", 1866], ["correct", false], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gesã"], ["question_id", 1866], ["correct", false], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gilboa"], ["question_id", 1866], ["correct", false], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]]  (181.9ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o principal deus da agricultura dos filisteus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o principal deus da agricultura dos filisteus?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como se chamava o principal deus da agricultura dos filisteus?"], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dago"], ["question_id", 1867], ["correct", true], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rimnon"], ["question_id", 1867], ["correct", false], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bel"], ["question_id", 1867], ["correct", false], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Baal"], ["question_id", 1867], ["correct", false], ["created_at", 2016-08-19 02:55:35 UTC], ["updated_at", 2016-08-19 02:55:35 UTC]]  (140.7ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o sogro de Moisés?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como se chamava o sogro de Moisés?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como se chamava o sogro de Moisés?"], ["created_at", 2016-08-19 02:55:36 UTC], ["updated_at", 2016-08-19 02:55:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jetro"], ["question_id", 1868], ["correct", true], ["created_at", 2016-08-19 02:55:36 UTC], ["updated_at", 2016-08-19 02:55:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeter"], ["question_id", 1868], ["correct", false], ["created_at", 2016-08-19 02:55:36 UTC], ["updated_at", 2016-08-19 02:55:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jetete"], ["question_id", 1868], ["correct", false], ["created_at", 2016-08-19 02:55:36 UTC], ["updated_at", 2016-08-19 02:55:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeloel"], ["question_id", 1868], ["correct", false], ["created_at", 2016-08-19 02:55:36 UTC], ["updated_at", 2016-08-19 02:55:36 UTC]]  (181.3ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como terminou a rebelião entre Davi e Absalão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Como terminou a rebelião entre Davi e Absalão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Como terminou a rebelião entre Davi e Absalão?"], ["created_at", 2016-08-19 02:55:36 UTC], ["updated_at", 2016-08-19 02:55:36 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão Morreu"], ["question_id", 1869], ["correct", true], ["created_at", 2016-08-19 02:55:36 UTC], ["updated_at", 2016-08-19 02:55:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi Morreu"], ["question_id", 1869], ["correct", false], ["created_at", 2016-08-19 02:55:36 UTC], ["updated_at", 2016-08-19 02:55:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão Foi Preso"], ["question_id", 1869], ["correct", false], ["created_at", 2016-08-19 02:55:36 UTC], ["updated_at", 2016-08-19 02:55:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi Foi Preso"], ["question_id", 1869], ["correct", false], ["created_at", 2016-08-19 02:55:36 UTC], ["updated_at", 2016-08-19 02:55:36 UTC]]  (265.1ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Contra quem Absalão, filho de Davi, vingou o estupro que foi cometido contra Tamar?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Contra quem Absalão, filho de Davi, vingou o estupro que foi cometido contra Tamar?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Contra quem Absalão, filho de Davi, vingou o estupro que foi cometido contra Tamar?"], ["created_at", 2016-08-19 02:55:36 UTC], ["updated_at", 2016-08-19 02:55:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Próprio Irmão"], ["question_id", 1870], ["correct", true], ["created_at", 2016-08-19 02:55:36 UTC], ["updated_at", 2016-08-19 02:55:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Próprio Tio"], ["question_id", 1870], ["correct", false], ["created_at", 2016-08-19 02:55:36 UTC], ["updated_at", 2016-08-19 02:55:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Próprio Pai"], ["question_id", 1870], ["correct", false], ["created_at", 2016-08-19 02:55:36 UTC], ["updated_at", 2016-08-19 02:55:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Próprio Sobrinho"], ["question_id", 1870], ["correct", false], ["created_at", 2016-08-19 02:55:36 UTC], ["updated_at", 2016-08-19 02:55:36 UTC]]  (182.0ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Cornélio, uma pessoa honrada e temente a Deus, era:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Cornélio, uma pessoa honrada e temente a Deus, era:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Cornélio, uma pessoa honrada e temente a Deus, era:"], ["created_at", 2016-08-19 02:55:36 UTC], ["updated_at", 2016-08-19 02:55:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Centurião Romano"], ["question_id", 1871], ["correct", true], ["created_at", 2016-08-19 02:55:36 UTC], ["updated_at", 2016-08-19 02:55:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Soldado Egípcio"], ["question_id", 1871], ["correct", false], ["created_at", 2016-08-19 02:55:36 UTC], ["updated_at", 2016-08-19 02:55:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Capitão Grego"], ["question_id", 1871], ["correct", false], ["created_at", 2016-08-19 02:55:36 UTC], ["updated_at", 2016-08-19 02:55:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "General Babilônico"], ["question_id", 1871], ["correct", false], ["created_at", 2016-08-19 02:55:36 UTC], ["updated_at", 2016-08-19 02:55:36 UTC]]  (131.4ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Da família de Moisés, quem era o caçula?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Da família de Moisés, quem era o caçula?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Da família de Moisés, quem era o caçula?"], ["created_at", 2016-08-19 02:55:36 UTC], ["updated_at", 2016-08-19 02:55:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 1872], ["correct", true], ["created_at", 2016-08-19 02:55:36 UTC], ["updated_at", 2016-08-19 02:55:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 1872], ["correct", false], ["created_at", 2016-08-19 02:55:36 UTC], ["updated_at", 2016-08-19 02:55:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 1872], ["correct", false], ["created_at", 2016-08-19 02:55:36 UTC], ["updated_at", 2016-08-19 02:55:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todos, Pois Eram Gêmeos"], ["question_id", 1872], ["correct", false], ["created_at", 2016-08-19 02:55:36 UTC], ["updated_at", 2016-08-19 02:55:36 UTC]]  (175.0ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dalila traiu Sansão por causa de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dalila traiu Sansão por causa de:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dalila traiu Sansão por causa de:"], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dinheiro"], ["question_id", 1873], ["correct", true], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Orgulho"], ["question_id", 1873], ["correct", false], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ciúmes"], ["question_id", 1873], ["correct", false], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ódio"], ["question_id", 1873], ["correct", false], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]]  (156.6ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Daniel foi levado cativo para o reino da Babilônia quando a mesma era governada por:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Daniel foi levado cativo para o reino da Babilônia quando a mesma era governada por:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Daniel foi levado cativo para o reino da Babilônia quando a mesma era governada por:"], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 1874], ["correct", true], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 1874], ["correct", false], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiro"], ["question_id", 1874], ["correct", false], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Alexandre, O Grande"], ["question_id", 1874], ["correct", false], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]]  (132.0ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das 10 pragas que Deus enviou ao Egito, quantas os magos do Faraó puderam imitar?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das 10 pragas que Deus enviou ao Egito, quantas os magos do Faraó puderam imitar?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Das 10 pragas que Deus enviou ao Egito, quantas os magos do Faraó puderam imitar?"], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 1875], ["correct", true], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 1875], ["correct", false], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "6"], ["question_id", 1875], ["correct", false], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 1875], ["correct", false], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]]  (114.5ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das alternativas abaixo, qual delas não era uma das regiões da Palestina na época em que Jesus viveu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das alternativas abaixo, qual delas não era uma das regiões da Palestina na época em que Jesus viveu?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Das alternativas abaixo, qual delas não era uma das regiões da Palestina na época em que Jesus viveu?"], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Iduméia"], ["question_id", 1876], ["correct", true], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samária"], ["question_id", 1876], ["correct", false], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judéia"], ["question_id", 1876], ["correct", false], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Galiléia"], ["question_id", 1876], ["correct", false], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]]  (123.1ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das alternativas abaixo, qual é o companheiro de Paulo que não o estava aguardando na cidade de Trôade?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das alternativas abaixo, qual é o companheiro de Paulo que não o estava aguardando na cidade de Trôade?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Das alternativas abaixo, qual é o companheiro de Paulo que não o estava aguardando na cidade de Trôade?"], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 1877], ["correct", true], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sópatro"], ["question_id", 1877], ["correct", false], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aristarco"], ["question_id", 1877], ["correct", false], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gaio"], ["question_id", 1877], ["correct", false], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]]  (115.5ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das alternativas abaixo, quem não foi filho de Davi?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das alternativas abaixo, quem não foi filho de Davi?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Das alternativas abaixo, quem não foi filho de Davi?"], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eli"], ["question_id", 1878], ["correct", true], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amnon"], ["question_id", 1878], ["correct", false], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quileabe"], ["question_id", 1878], ["correct", false], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adonias"], ["question_id", 1878], ["correct", false], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]]  (124.8ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das Montanhas do Líbano foram extraídas cedro e cipreste utilizadas na construção:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das Montanhas do Líbano foram extraídas cedro e cipreste utilizadas na construção:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Das Montanhas do Líbano foram extraídas cedro e cipreste utilizadas na construção:"], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Templo de Salomão"], ["question_id", 1879], ["correct", true], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Palácio Real de Salomão"], ["question_id", 1879], ["correct", false], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Da Cidade de Babilônia"], ["question_id", 1879], ["correct", false], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Da Cidade de Jerusalém"], ["question_id", 1879], ["correct", false], ["created_at", 2016-08-19 02:55:37 UTC], ["updated_at", 2016-08-19 02:55:37 UTC]]  (149.9ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das mulheres abaixo, qual delas não teve filhos com Abraão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das mulheres abaixo, qual delas não teve filhos com Abraão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Das mulheres abaixo, qual delas não teve filhos com Abraão?"], ["created_at", 2016-08-19 02:55:38 UTC], ["updated_at", 2016-08-19 02:55:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Admá"], ["question_id", 1880], ["correct", true], ["created_at", 2016-08-19 02:55:38 UTC], ["updated_at", 2016-08-19 02:55:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quetura"], ["question_id", 1880], ["correct", false], ["created_at", 2016-08-19 02:55:38 UTC], ["updated_at", 2016-08-19 02:55:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sara"], ["question_id", 1880], ["correct", false], ["created_at", 2016-08-19 02:55:38 UTC], ["updated_at", 2016-08-19 02:55:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hagar"], ["question_id", 1880], ["correct", false], ["created_at", 2016-08-19 02:55:38 UTC], ["updated_at", 2016-08-19 02:55:38 UTC]]  (239.8ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das mulheres abaixo, qual delas teve flhos com Abraão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das mulheres abaixo, qual delas teve flhos com Abraão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Das mulheres abaixo, qual delas teve flhos com Abraão?"], ["created_at", 2016-08-19 02:55:38 UTC], ["updated_at", 2016-08-19 02:55:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quetura"], ["question_id", 1881], ["correct", true], ["created_at", 2016-08-19 02:55:38 UTC], ["updated_at", 2016-08-19 02:55:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Admá"], ["question_id", 1881], ["correct", false], ["created_at", 2016-08-19 02:55:38 UTC], ["updated_at", 2016-08-19 02:55:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joquebede"], ["question_id", 1881], ["correct", false], ["created_at", 2016-08-19 02:55:38 UTC], ["updated_at", 2016-08-19 02:55:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jael"], ["question_id", 1881], ["correct", false], ["created_at", 2016-08-19 02:55:38 UTC], ["updated_at", 2016-08-19 02:55:38 UTC]]  (115.3ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das opções abaixo, qual delas não foi utilizada na placa que foi pregada na cruz de Cristo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das opções abaixo, qual delas não foi utilizada na placa que foi pregada na cruz de Cristo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Das opções abaixo, qual delas não foi utilizada na placa que foi pregada na cruz de Cristo?"], ["created_at", 2016-08-19 02:55:38 UTC], ["updated_at", 2016-08-19 02:55:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aramaico"], ["question_id", 1882], ["correct", true], ["created_at", 2016-08-19 02:55:38 UTC], ["updated_at", 2016-08-19 02:55:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hebreu"], ["question_id", 1882], ["correct", false], ["created_at", 2016-08-19 02:55:38 UTC], ["updated_at", 2016-08-19 02:55:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Latim"], ["question_id", 1882], ["correct", false], ["created_at", 2016-08-19 02:55:38 UTC], ["updated_at", 2016-08-19 02:55:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Grego"], ["question_id", 1882], ["correct", false], ["created_at", 2016-08-19 02:55:38 UTC], ["updated_at", 2016-08-19 02:55:38 UTC]]  (132.2ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das vezes que Noé soltou uma pomba para verificar se havia terra seca, em qual delas a pomba trouxe um ramo de oliveira?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Das vezes que Noé soltou uma pomba para verificar se havia terra seca, em qual delas a pomba trouxe um ramo de oliveira?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Das vezes que Noé soltou uma pomba para verificar se havia terra seca, em qual delas a pomba trouxe um ramo de oliveira?"], ["created_at", 2016-08-19 02:55:38 UTC], ["updated_at", 2016-08-19 02:55:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2ª"], ["question_id", 1883], ["correct", true], ["created_at", 2016-08-19 02:55:38 UTC], ["updated_at", 2016-08-19 02:55:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1ª"], ["question_id", 1883], ["correct", false], ["created_at", 2016-08-19 02:55:38 UTC], ["updated_at", 2016-08-19 02:55:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3ª"], ["question_id", 1883], ["correct", false], ["created_at", 2016-08-19 02:55:38 UTC], ["updated_at", 2016-08-19 02:55:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4ª"], ["question_id", 1883], ["correct", false], ["created_at", 2016-08-19 02:55:38 UTC], ["updated_at", 2016-08-19 02:55:38 UTC]]  (132.6ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Davi apanhou 5 pedras no chão para matar o gigante Golias. Quantas ele usou para matá-lo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Davi apanhou 5 pedras no chão para matar o gigante Golias. Quantas ele usou para matá-lo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Davi apanhou 5 pedras no chão para matar o gigante Golias. Quantas ele usou para matá-lo?"], ["created_at", 2016-08-19 02:55:38 UTC], ["updated_at", 2016-08-19 02:55:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 1884], ["correct", true], ["created_at", 2016-08-19 02:55:38 UTC], ["updated_at", 2016-08-19 02:55:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todas"], ["question_id", 1884], ["correct", false], ["created_at", 2016-08-19 02:55:38 UTC], ["updated_at", 2016-08-19 02:55:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 1884], ["correct", false], ["created_at", 2016-08-19 02:55:38 UTC], ["updated_at", 2016-08-19 02:55:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhuma"], ["question_id", 1884], ["correct", false], ["created_at", 2016-08-19 02:55:38 UTC], ["updated_at", 2016-08-19 02:55:38 UTC]]  (165.4ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Davi foi o:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Davi foi o:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Davi foi o:"], ["created_at", 2016-08-19 02:55:38 UTC], ["updated_at", 2016-08-19 02:55:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2º Rei de Israel"], ["question_id", 1885], ["correct", true], ["created_at", 2016-08-19 02:55:38 UTC], ["updated_at", 2016-08-19 02:55:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1º Rei de Israel"], ["question_id", 1885], ["correct", false], ["created_at", 2016-08-19 02:55:38 UTC], ["updated_at", 2016-08-19 02:55:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3º Rei de Israel"], ["question_id", 1885], ["correct", false], ["created_at", 2016-08-19 02:55:38 UTC], ["updated_at", 2016-08-19 02:55:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jamais Governou Israel, e Sim Judá"], ["question_id", 1885], ["correct", false], ["created_at", 2016-08-19 02:55:38 UTC], ["updated_at", 2016-08-19 02:55:38 UTC]]  (158.2ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Davi teve como cunhado:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Davi teve como cunhado:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Davi teve como cunhado:"], ["created_at", 2016-08-19 02:55:39 UTC], ["updated_at", 2016-08-19 02:55:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jônatas"], ["question_id", 1886], ["correct", true], ["created_at", 2016-08-19 02:55:39 UTC], ["updated_at", 2016-08-19 02:55:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 1886], ["correct", false], ["created_at", 2016-08-19 02:55:39 UTC], ["updated_at", 2016-08-19 02:55:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mefibosete"], ["question_id", 1886], ["correct", false], ["created_at", 2016-08-19 02:55:39 UTC], ["updated_at", 2016-08-19 02:55:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Urias"], ["question_id", 1886], ["correct", false], ["created_at", 2016-08-19 02:55:39 UTC], ["updated_at", 2016-08-19 02:55:39 UTC]]  (141.8ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com os Dez Mandamentos, a quem devemos honrar?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com os Dez Mandamentos, a quem devemos honrar?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De acordo com os Dez Mandamentos, a quem devemos honrar?"], ["created_at", 2016-08-19 02:55:39 UTC], ["updated_at", 2016-08-19 02:55:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nossos Pais"], ["question_id", 1887], ["correct", true], ["created_at", 2016-08-19 02:55:39 UTC], ["updated_at", 2016-08-19 02:55:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nossos Irmãos"], ["question_id", 1887], ["correct", false], ["created_at", 2016-08-19 02:55:39 UTC], ["updated_at", 2016-08-19 02:55:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nossos Avós"], ["question_id", 1887], ["correct", false], ["created_at", 2016-08-19 02:55:39 UTC], ["updated_at", 2016-08-19 02:55:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nossos Professores"], ["question_id", 1887], ["correct", false], ["created_at", 2016-08-19 02:55:39 UTC], ["updated_at", 2016-08-19 02:55:39 UTC]]  (198.9ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 2:10, quando a sabedoria adentra o coração, o que se tornará agradável para sua alma?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 2:10, quando a sabedoria adentra o coração, o que se tornará agradável para sua alma?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De acordo com Provérbios 2:10, quando a sabedoria adentra o coração, o que se tornará agradável para sua alma?"], ["created_at", 2016-08-19 02:55:39 UTC], ["updated_at", 2016-08-19 02:55:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Conhecimento"], ["question_id", 1888], ["correct", true], ["created_at", 2016-08-19 02:55:39 UTC], ["updated_at", 2016-08-19 02:55:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paz"], ["question_id", 1888], ["correct", false], ["created_at", 2016-08-19 02:55:39 UTC], ["updated_at", 2016-08-19 02:55:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amor"], ["question_id", 1888], ["correct", false], ["created_at", 2016-08-19 02:55:39 UTC], ["updated_at", 2016-08-19 02:55:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saúde"], ["question_id", 1888], ["correct", false], ["created_at", 2016-08-19 02:55:39 UTC], ["updated_at", 2016-08-19 02:55:39 UTC]]  (155.8ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 2:11-12, o que uma pessoa de discrição e conhecimento será desviada?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 2:11-12, o que uma pessoa de discrição e conhecimento será desviada?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De acordo com Provérbios 2:11-12, o que uma pessoa de discrição e conhecimento será desviada?"], ["created_at", 2016-08-19 02:55:39 UTC], ["updated_at", 2016-08-19 02:55:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Mau Caminho"], ["question_id", 1889], ["correct", true], ["created_at", 2016-08-19 02:55:39 UTC], ["updated_at", 2016-08-19 02:55:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Tédio"], ["question_id", 1889], ["correct", false], ["created_at", 2016-08-19 02:55:39 UTC], ["updated_at", 2016-08-19 02:55:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Das Mentiras"], ["question_id", 1889], ["correct", false], ["created_at", 2016-08-19 02:55:39 UTC], ["updated_at", 2016-08-19 02:55:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Das Tempestades"], ["question_id", 1889], ["correct", false], ["created_at", 2016-08-19 02:55:39 UTC], ["updated_at", 2016-08-19 02:55:39 UTC]]  (139.1ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 2:7, o que é o Senhor para aqueles que andam em integridade?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 2:7, o que é o Senhor para aqueles que andam em integridade?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De acordo com Provérbios 2:7, o que é o Senhor para aqueles que andam em integridade?"], ["created_at", 2016-08-19 02:55:39 UTC], ["updated_at", 2016-08-19 02:55:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Escudo"], ["question_id", 1890], ["correct", true], ["created_at", 2016-08-19 02:55:39 UTC], ["updated_at", 2016-08-19 02:55:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Guia"], ["question_id", 1890], ["correct", false], ["created_at", 2016-08-19 02:55:39 UTC], ["updated_at", 2016-08-19 02:55:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Segurança"], ["question_id", 1890], ["correct", false], ["created_at", 2016-08-19 02:55:39 UTC], ["updated_at", 2016-08-19 02:55:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mestre"], ["question_id", 1890], ["correct", false], ["created_at", 2016-08-19 02:55:39 UTC], ["updated_at", 2016-08-19 02:55:39 UTC]]  (206.8ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 2:8, o Senhor guarda o caminho da justiça e faz o que para os devotos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 2:8, o Senhor guarda o caminho da justiça e faz o que para os devotos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De acordo com Provérbios 2:8, o Senhor guarda o caminho da justiça e faz o que para os devotos?"], ["created_at", 2016-08-19 02:55:39 UTC], ["updated_at", 2016-08-19 02:55:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Preserva O Caminho"], ["question_id", 1891], ["correct", true], ["created_at", 2016-08-19 02:55:40 UTC], ["updated_at", 2016-08-19 02:55:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ensina"], ["question_id", 1891], ["correct", false], ["created_at", 2016-08-19 02:55:40 UTC], ["updated_at", 2016-08-19 02:55:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Protege Suas Famílias"], ["question_id", 1891], ["correct", false], ["created_at", 2016-08-19 02:55:40 UTC], ["updated_at", 2016-08-19 02:55:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Guia-os"], ["question_id", 1891], ["correct", false], ["created_at", 2016-08-19 02:55:40 UTC], ["updated_at", 2016-08-19 02:55:40 UTC]]  (148.0ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 29:11, o que o tolo sempre perde e o sábio retém?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 29:11, o que o tolo sempre perde e o sábio retém?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De acordo com Provérbios 29:11, o que o tolo sempre perde e o sábio retém?"], ["created_at", 2016-08-19 02:55:40 UTC], ["updated_at", 2016-08-19 02:55:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Ira"], ["question_id", 1892], ["correct", true], ["created_at", 2016-08-19 02:55:40 UTC], ["updated_at", 2016-08-19 02:55:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Dinheiro"], ["question_id", 1892], ["correct", false], ["created_at", 2016-08-19 02:55:40 UTC], ["updated_at", 2016-08-19 02:55:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Alimento"], ["question_id", 1892], ["correct", false], ["created_at", 2016-08-19 02:55:40 UTC], ["updated_at", 2016-08-19 02:55:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Língua"], ["question_id", 1892], ["correct", false], ["created_at", 2016-08-19 02:55:40 UTC], ["updated_at", 2016-08-19 02:55:40 UTC]]  (123.4ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 3:3, o que deverá ser atado ao redor da garganta e escrito nas tábuas do coração?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 3:3, o que deverá ser atado ao redor da garganta e escrito nas tábuas do coração?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De acordo com Provérbios 3:3, o que deverá ser atado ao redor da garganta e escrito nas tábuas do coração?"], ["created_at", 2016-08-19 02:55:40 UTC], ["updated_at", 2016-08-19 02:55:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bondade e Fidelidade"], ["question_id", 1893], ["correct", true], ["created_at", 2016-08-19 02:55:40 UTC], ["updated_at", 2016-08-19 02:55:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Verdade e Amor"], ["question_id", 1893], ["correct", false], ["created_at", 2016-08-19 02:55:40 UTC], ["updated_at", 2016-08-19 02:55:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Devoção e Humildade"], ["question_id", 1893], ["correct", false], ["created_at", 2016-08-19 02:55:40 UTC], ["updated_at", 2016-08-19 02:55:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Lei de Deus"], ["question_id", 1893], ["correct", false], ["created_at", 2016-08-19 02:55:40 UTC], ["updated_at", 2016-08-19 02:55:40 UTC]]  (157.2ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 30:20, a mulher adúltera come, limpa sua boca e diz o quê?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 30:20, a mulher adúltera come, limpa sua boca e diz o quê?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De acordo com Provérbios 30:20, a mulher adúltera come, limpa sua boca e diz o quê?"], ["created_at", 2016-08-19 02:55:40 UTC], ["updated_at", 2016-08-19 02:55:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Cometi Nenhum Agravo"], ["question_id", 1894], ["correct", true], ["created_at", 2016-08-19 02:55:40 UTC], ["updated_at", 2016-08-19 02:55:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obrigada"], ["question_id", 1894], ["correct", false], ["created_at", 2016-08-19 02:55:40 UTC], ["updated_at", 2016-08-19 02:55:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Estou Satisfeita"], ["question_id", 1894], ["correct", false], ["created_at", 2016-08-19 02:55:40 UTC], ["updated_at", 2016-08-19 02:55:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ainda Estou Com Fome"], ["question_id", 1894], ["correct", false], ["created_at", 2016-08-19 02:55:40 UTC], ["updated_at", 2016-08-19 02:55:40 UTC]]  (291.0ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 30:33, bater o leite produz manteiga, premer o nariz produz sangue e premer a ira produz?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 30:33, bater o leite produz manteiga, premer o nariz produz sangue e premer a ira produz?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De acordo com Provérbios 30:33, bater o leite produz manteiga, premer o nariz produz sangue e premer a ira produz?"], ["created_at", 2016-08-19 02:55:40 UTC], ["updated_at", 2016-08-19 02:55:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Contendas"], ["question_id", 1895], ["correct", true], ["created_at", 2016-08-19 02:55:40 UTC], ["updated_at", 2016-08-19 02:55:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Insônia"], ["question_id", 1895], ["correct", false], ["created_at", 2016-08-19 02:55:40 UTC], ["updated_at", 2016-08-19 02:55:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tranqüilidade"], ["question_id", 1895], ["correct", false], ["created_at", 2016-08-19 02:55:40 UTC], ["updated_at", 2016-08-19 02:55:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Estressa"], ["question_id", 1895], ["correct", false], ["created_at", 2016-08-19 02:55:40 UTC], ["updated_at", 2016-08-19 02:55:40 UTC]]  (231.9ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 30:5, Deus é o escudo para aqueles que se refugiam nEle porque todo o Seu trabalho é:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 30:5, Deus é o escudo para aqueles que se refugiam nEle porque todo o Seu trabalho é:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De acordo com Provérbios 30:5, Deus é o escudo para aqueles que se refugiam nEle porque todo o Seu trabalho é:"], ["created_at", 2016-08-19 02:55:41 UTC], ["updated_at", 2016-08-19 02:55:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Refinado"], ["question_id", 1896], ["correct", true], ["created_at", 2016-08-19 02:55:41 UTC], ["updated_at", 2016-08-19 02:55:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Documentado"], ["question_id", 1896], ["correct", false], ["created_at", 2016-08-19 02:55:41 UTC], ["updated_at", 2016-08-19 02:55:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Puro"], ["question_id", 1896], ["correct", false], ["created_at", 2016-08-19 02:55:41 UTC], ["updated_at", 2016-08-19 02:55:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Exaltado"], ["question_id", 1896], ["correct", false], ["created_at", 2016-08-19 02:55:41 UTC], ["updated_at", 2016-08-19 02:55:41 UTC]]  (180.8ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 31:9, para quem você deveria abrir sua boca?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De acordo com Provérbios 31:9, para quem você deveria abrir sua boca?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De acordo com Provérbios 31:9, para quem você deveria abrir sua boca?"], ["created_at", 2016-08-19 02:55:41 UTC], ["updated_at", 2016-08-19 02:55:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Pobres e Necessitados"], ["question_id", 1897], ["correct", true], ["created_at", 2016-08-19 02:55:41 UTC], ["updated_at", 2016-08-19 02:55:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Analfabetos"], ["question_id", 1897], ["correct", false], ["created_at", 2016-08-19 02:55:41 UTC], ["updated_at", 2016-08-19 02:55:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Surdos"], ["question_id", 1897], ["correct", false], ["created_at", 2016-08-19 02:55:41 UTC], ["updated_at", 2016-08-19 02:55:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aos Mudos"], ["question_id", 1897], ["correct", false], ["created_at", 2016-08-19 02:55:41 UTC], ["updated_at", 2016-08-19 02:55:41 UTC]]  (165.1ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De qual madeira era feita a Arca da Aliança?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De qual madeira era feita a Arca da Aliança?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De qual madeira era feita a Arca da Aliança?"], ["created_at", 2016-08-19 02:55:41 UTC], ["updated_at", 2016-08-19 02:55:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acácia"], ["question_id", 1898], ["correct", true], ["created_at", 2016-08-19 02:55:41 UTC], ["updated_at", 2016-08-19 02:55:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gôfer"], ["question_id", 1898], ["correct", false], ["created_at", 2016-08-19 02:55:41 UTC], ["updated_at", 2016-08-19 02:55:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bálsamo"], ["question_id", 1898], ["correct", false], ["created_at", 2016-08-19 02:55:41 UTC], ["updated_at", 2016-08-19 02:55:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cipreste"], ["question_id", 1898], ["correct", false], ["created_at", 2016-08-19 02:55:41 UTC], ["updated_at", 2016-08-19 02:55:41 UTC]]  (141.4ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De qual nação Deus matou 185.000 quando estes estavam tentando tomar Jerusalém?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De qual nação Deus matou 185.000 quando estes estavam tentando tomar Jerusalém?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De qual nação Deus matou 185.000 quando estes estavam tentando tomar Jerusalém?"], ["created_at", 2016-08-19 02:55:41 UTC], ["updated_at", 2016-08-19 02:55:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assíria"], ["question_id", 1899], ["correct", true], ["created_at", 2016-08-19 02:55:41 UTC], ["updated_at", 2016-08-19 02:55:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônia"], ["question_id", 1899], ["correct", false], ["created_at", 2016-08-19 02:55:41 UTC], ["updated_at", 2016-08-19 02:55:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenícia"], ["question_id", 1899], ["correct", false], ["created_at", 2016-08-19 02:55:41 UTC], ["updated_at", 2016-08-19 02:55:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egito"], ["question_id", 1899], ["correct", false], ["created_at", 2016-08-19 02:55:41 UTC], ["updated_at", 2016-08-19 02:55:41 UTC]]  (147.2ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De qual profeta Hilquias era filho?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De qual profeta Hilquias era filho?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De qual profeta Hilquias era filho?"], ["created_at", 2016-08-19 02:55:41 UTC], ["updated_at", 2016-08-19 02:55:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeremias"], ["question_id", 1900], ["correct", true], ["created_at", 2016-08-19 02:55:41 UTC], ["updated_at", 2016-08-19 02:55:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 1900], ["correct", false], ["created_at", 2016-08-19 02:55:41 UTC], ["updated_at", 2016-08-19 02:55:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 1900], ["correct", false], ["created_at", 2016-08-19 02:55:41 UTC], ["updated_at", 2016-08-19 02:55:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obadias"], ["question_id", 1900], ["correct", false], ["created_at", 2016-08-19 02:55:41 UTC], ["updated_at", 2016-08-19 02:55:41 UTC]]  (174.8ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que direção vieram os Reis Magos quando foram ver o menino Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que direção vieram os Reis Magos quando foram ver o menino Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De que direção vieram os Reis Magos quando foram ver o menino Jesus?"], ["created_at", 2016-08-19 02:55:41 UTC], ["updated_at", 2016-08-19 02:55:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Leste"], ["question_id", 1901], ["correct", true], ["created_at", 2016-08-19 02:55:41 UTC], ["updated_at", 2016-08-19 02:55:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Oeste"], ["question_id", 1901], ["correct", false], ["created_at", 2016-08-19 02:55:41 UTC], ["updated_at", 2016-08-19 02:55:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Sul"], ["question_id", 1901], ["correct", false], ["created_at", 2016-08-19 02:55:41 UTC], ["updated_at", 2016-08-19 02:55:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Norte"], ["question_id", 1901], ["correct", false], ["created_at", 2016-08-19 02:55:41 UTC], ["updated_at", 2016-08-19 02:55:41 UTC]]  (181.3ms) commit transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que era feito o propiciatório da Arca da Aliança?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que era feito o propiciatório da Arca da Aliança?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De que era feito o propiciatório da Arca da Aliança?"], ["created_at", 2016-08-19 02:55:42 UTC], ["updated_at", 2016-08-19 02:55:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ouro"], ["question_id", 1902], ["correct", true], ["created_at", 2016-08-19 02:55:42 UTC], ["updated_at", 2016-08-19 02:55:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bronze"], ["question_id", 1902], ["correct", false], ["created_at", 2016-08-19 02:55:42 UTC], ["updated_at", 2016-08-19 02:55:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Prata"], ["question_id", 1902], ["correct", false], ["created_at", 2016-08-19 02:55:42 UTC], ["updated_at", 2016-08-19 02:55:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cobre"], ["question_id", 1902], ["correct", false], ["created_at", 2016-08-19 02:55:42 UTC], ["updated_at", 2016-08-19 02:55:42 UTC]]  (331.6ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que forma foram transportadas as árvores de cedro compradas por Salomão para a construção do Templo de Jerusalém?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que forma foram transportadas as árvores de cedro compradas por Salomão para a construção do Templo de Jerusalém?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De que forma foram transportadas as árvores de cedro compradas por Salomão para a construção do Templo de Jerusalém?"], ["created_at", 2016-08-19 02:55:42 UTC], ["updated_at", 2016-08-19 02:55:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Através de Balsas"], ["question_id", 1903], ["correct", true], ["created_at", 2016-08-19 02:55:42 UTC], ["updated_at", 2016-08-19 02:55:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Através de Carros-de-boi"], ["question_id", 1903], ["correct", false], ["created_at", 2016-08-19 02:55:42 UTC], ["updated_at", 2016-08-19 02:55:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Através de Escravos"], ["question_id", 1903], ["correct", false], ["created_at", 2016-08-19 02:55:42 UTC], ["updated_at", 2016-08-19 02:55:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Foram Usadas Árvores de Cedro"], ["question_id", 1903], ["correct", false], ["created_at", 2016-08-19 02:55:42 UTC], ["updated_at", 2016-08-19 02:55:42 UTC]]  (843.5ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que forma Jesus morreu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que forma Jesus morreu?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De que forma Jesus morreu?"], ["created_at", 2016-08-19 02:55:43 UTC], ["updated_at", 2016-08-19 02:55:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Crucificado"], ["question_id", 1904], ["correct", true], ["created_at", 2016-08-19 02:55:43 UTC], ["updated_at", 2016-08-19 02:55:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Enforcado"], ["question_id", 1904], ["correct", false], ["created_at", 2016-08-19 02:55:43 UTC], ["updated_at", 2016-08-19 02:55:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Apedrejado"], ["question_id", 1904], ["correct", false], ["created_at", 2016-08-19 02:55:43 UTC], ["updated_at", 2016-08-19 02:55:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Decapitado"], ["question_id", 1904], ["correct", false], ["created_at", 2016-08-19 02:55:43 UTC], ["updated_at", 2016-08-19 02:55:43 UTC]]  (138.9ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que forma Raquel morreu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que forma Raquel morreu?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De que forma Raquel morreu?"], ["created_at", 2016-08-19 02:55:43 UTC], ["updated_at", 2016-08-19 02:55:43 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Parto"], ["question_id", 1905], ["correct", true], ["created_at", 2016-08-19 02:55:43 UTC], ["updated_at", 2016-08-19 02:55:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Cair da Árvore"], ["question_id", 1905], ["correct", false], ["created_at", 2016-08-19 02:55:43 UTC], ["updated_at", 2016-08-19 02:55:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Dilúvio"], ["question_id", 1905], ["correct", false], ["created_at", 2016-08-19 02:55:43 UTC], ["updated_at", 2016-08-19 02:55:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trespassada Por Uma Espada do Faraó"], ["question_id", 1905], ["correct", false], ["created_at", 2016-08-19 02:55:43 UTC], ["updated_at", 2016-08-19 02:55:43 UTC]]  (147.9ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que lado do barco Jesus havia dito para que os discípulos jogassem suas redes, após uma noite inteira sem pescar nada?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De que lado do barco Jesus havia dito para que os discípulos jogassem suas redes, após uma noite inteira sem pescar nada?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De que lado do barco Jesus havia dito para que os discípulos jogassem suas redes, após uma noite inteira sem pescar nada?"], ["created_at", 2016-08-19 02:55:43 UTC], ["updated_at", 2016-08-19 02:55:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Direito"], ["question_id", 1906], ["correct", true], ["created_at", 2016-08-19 02:55:43 UTC], ["updated_at", 2016-08-19 02:55:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esquerdo"], ["question_id", 1906], ["correct", false], ["created_at", 2016-08-19 02:55:43 UTC], ["updated_at", 2016-08-19 02:55:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Proa"], ["question_id", 1906], ["correct", false], ["created_at", 2016-08-19 02:55:43 UTC], ["updated_at", 2016-08-19 02:55:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Popa"], ["question_id", 1906], ["correct", false], ["created_at", 2016-08-19 02:55:43 UTC], ["updated_at", 2016-08-19 02:55:43 UTC]]  (182.4ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem era o sepulcro onde Jesus foi colocado depois de crucificado?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem era o sepulcro onde Jesus foi colocado depois de crucificado?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De quem era o sepulcro onde Jesus foi colocado depois de crucificado?"], ["created_at", 2016-08-19 02:55:43 UTC], ["updated_at", 2016-08-19 02:55:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José de Arimatéia"], ["question_id", 1907], ["correct", true], ["created_at", 2016-08-19 02:55:43 UTC], ["updated_at", 2016-08-19 02:55:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Simão de Cirene"], ["question_id", 1907], ["correct", false], ["created_at", 2016-08-19 02:55:43 UTC], ["updated_at", 2016-08-19 02:55:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sacerdote Ananias"], ["question_id", 1907], ["correct", false], ["created_at", 2016-08-19 02:55:43 UTC], ["updated_at", 2016-08-19 02:55:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lázaro"], ["question_id", 1907], ["correct", false], ["created_at", 2016-08-19 02:55:43 UTC], ["updated_at", 2016-08-19 02:55:43 UTC]]  (147.4ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem eram as mesas que Jesus virou no Templo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem eram as mesas que Jesus virou no Templo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De quem eram as mesas que Jesus virou no Templo?"], ["created_at", 2016-08-19 02:55:43 UTC], ["updated_at", 2016-08-19 02:55:43 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cambistas"], ["question_id", 1908], ["correct", true], ["created_at", 2016-08-19 02:55:43 UTC], ["updated_at", 2016-08-19 02:55:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escribas"], ["question_id", 1908], ["correct", false], ["created_at", 2016-08-19 02:55:43 UTC], ["updated_at", 2016-08-19 02:55:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oleiros"], ["question_id", 1908], ["correct", false], ["created_at", 2016-08-19 02:55:43 UTC], ["updated_at", 2016-08-19 02:55:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Criadores de Animais"], ["question_id", 1908], ["correct", false], ["created_at", 2016-08-19 02:55:43 UTC], ["updated_at", 2016-08-19 02:55:43 UTC]]  (247.3ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem Husai era amigo, e que fingiu estar apoiando Absalão apenas para ficar informado sobre os planos da rebelião?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem Husai era amigo, e que fingiu estar apoiando Absalão apenas para ficar informado sobre os planos da rebelião?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De quem Husai era amigo, e que fingiu estar apoiando Absalão apenas para ficar informado sobre os planos da rebelião?"], ["created_at", 2016-08-19 02:55:44 UTC], ["updated_at", 2016-08-19 02:55:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 1909], ["correct", true], ["created_at", 2016-08-19 02:55:44 UTC], ["updated_at", 2016-08-19 02:55:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1909], ["correct", false], ["created_at", 2016-08-19 02:55:44 UTC], ["updated_at", 2016-08-19 02:55:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Urias"], ["question_id", 1909], ["correct", false], ["created_at", 2016-08-19 02:55:44 UTC], ["updated_at", 2016-08-19 02:55:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 1909], ["correct", false], ["created_at", 2016-08-19 02:55:44 UTC], ["updated_at", 2016-08-19 02:55:44 UTC]]  (130.8ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem Jesus expulsou 7 demônios?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem Jesus expulsou 7 demônios?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De quem Jesus expulsou 7 demônios?"], ["created_at", 2016-08-19 02:55:44 UTC], ["updated_at", 2016-08-19 02:55:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria Madalena"], ["question_id", 1910], ["correct", true], ["created_at", 2016-08-19 02:55:44 UTC], ["updated_at", 2016-08-19 02:55:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria, Sua Mãe"], ["question_id", 1910], ["correct", false], ["created_at", 2016-08-19 02:55:44 UTC], ["updated_at", 2016-08-19 02:55:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria, Irmã de Marta"], ["question_id", 1910], ["correct", false], ["created_at", 2016-08-19 02:55:44 UTC], ["updated_at", 2016-08-19 02:55:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria, A Peraplégica"], ["question_id", 1910], ["correct", false], ["created_at", 2016-08-19 02:55:44 UTC], ["updated_at", 2016-08-19 02:55:44 UTC]]  (130.6ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem José, filho de Jacó, interpretou os sonhos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem José, filho de Jacó, interpretou os sonhos?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De quem José, filho de Jacó, interpretou os sonhos?"], ["created_at", 2016-08-19 02:55:44 UTC], ["updated_at", 2016-08-19 02:55:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Faraó do Egito"], ["question_id", 1911], ["correct", true], ["created_at", 2016-08-19 02:55:44 UTC], ["updated_at", 2016-08-19 02:55:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Seu Pai"], ["question_id", 1911], ["correct", false], ["created_at", 2016-08-19 02:55:44 UTC], ["updated_at", 2016-08-19 02:55:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dos Seus Irmãos"], ["question_id", 1911], ["correct", false], ["created_at", 2016-08-19 02:55:44 UTC], ["updated_at", 2016-08-19 02:55:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Seu Patrão Potifar"], ["question_id", 1911], ["correct", false], ["created_at", 2016-08-19 02:55:44 UTC], ["updated_at", 2016-08-19 02:55:44 UTC]]  (140.2ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem o rei Acaz queria comprar uma vinha?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "De quem o rei Acaz queria comprar uma vinha?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "De quem o rei Acaz queria comprar uma vinha?"], ["created_at", 2016-08-19 02:55:44 UTC], ["updated_at", 2016-08-19 02:55:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabote"], ["question_id", 1912], ["correct", true], ["created_at", 2016-08-19 02:55:44 UTC], ["updated_at", 2016-08-19 02:55:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Naor"], ["question_id", 1912], ["correct", false], ["created_at", 2016-08-19 02:55:44 UTC], ["updated_at", 2016-08-19 02:55:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nebo"], ["question_id", 1912], ["correct", false], ["created_at", 2016-08-19 02:55:44 UTC], ["updated_at", 2016-08-19 02:55:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noé"], ["question_id", 1912], ["correct", false], ["created_at", 2016-08-19 02:55:44 UTC], ["updated_at", 2016-08-19 02:55:44 UTC]]  (131.1ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Debaixo de que árvore Elias se sentou desanimado?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Debaixo de que árvore Elias se sentou desanimado?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Debaixo de que árvore Elias se sentou desanimado?"], ["created_at", 2016-08-19 02:55:44 UTC], ["updated_at", 2016-08-19 02:55:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zimbro"], ["question_id", 1913], ["correct", true], ["created_at", 2016-08-19 02:55:44 UTC], ["updated_at", 2016-08-19 02:55:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cipreste"], ["question_id", 1913], ["correct", false], ["created_at", 2016-08-19 02:55:44 UTC], ["updated_at", 2016-08-19 02:55:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cedro do Líbano"], ["question_id", 1913], ["correct", false], ["created_at", 2016-08-19 02:55:44 UTC], ["updated_at", 2016-08-19 02:55:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Figueira"], ["question_id", 1913], ["correct", false], ["created_at", 2016-08-19 02:55:44 UTC], ["updated_at", 2016-08-19 02:55:44 UTC]]  (131.3ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Débora foi a babá de quem?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Débora foi a babá de quem?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Débora foi a babá de quem?"], ["created_at", 2016-08-19 02:55:44 UTC], ["updated_at", 2016-08-19 02:55:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 1914], ["correct", true], ["created_at", 2016-08-19 02:55:44 UTC], ["updated_at", 2016-08-19 02:55:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 1914], ["correct", false], ["created_at", 2016-08-19 02:55:44 UTC], ["updated_at", 2016-08-19 02:55:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 1914], ["correct", false], ["created_at", 2016-08-19 02:55:44 UTC], ["updated_at", 2016-08-19 02:55:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 1914], ["correct", false], ["created_at", 2016-08-19 02:55:44 UTC], ["updated_at", 2016-08-19 02:55:44 UTC]]  (145.2ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Débora, a profetisa, certa vez chegou a liderar:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Débora, a profetisa, certa vez chegou a liderar:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Débora, a profetisa, certa vez chegou a liderar:"], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Exército"], ["question_id", 1915], ["correct", true], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Revolução Popular"], ["question_id", 1915], ["correct", false], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Templo"], ["question_id", 1915], ["correct", false], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Serviço Sacrifical"], ["question_id", 1915], ["correct", false], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]]  (132.6ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Débora, a profetisa, também foi:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Débora, a profetisa, também foi:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Débora, a profetisa, também foi:"], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Juíza"], ["question_id", 1916], ["correct", true], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Advogada"], ["question_id", 1916], ["correct", false], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Criminosa"], ["question_id", 1916], ["correct", false], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foragida da Justiça"], ["question_id", 1916], ["correct", false], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]]  (132.5ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dentre as alternativas abaixo, qual deles não é filho de Noé?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dentre as alternativas abaixo, qual deles não é filho de Noé?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dentre as alternativas abaixo, qual deles não é filho de Noé?"], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 1917], ["correct", true], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cão"], ["question_id", 1917], ["correct", false], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sem"], ["question_id", 1917], ["correct", false], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jafé"], ["question_id", 1917], ["correct", false], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]]  (139.4ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dentre as alternativas abaixo, qual era a alimentação que João Batista não utilizava?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dentre as alternativas abaixo, qual era a alimentação que João Batista não utilizava?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dentre as alternativas abaixo, qual era a alimentação que João Batista não utilizava?"], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assado de Carneiro"], ["question_id", 1918], ["correct", true], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mel"], ["question_id", 1918], ["correct", false], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Frutas"], ["question_id", 1918], ["correct", false], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gafanhotos"], ["question_id", 1918], ["correct", false], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]]  (130.8ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dentre as alternativas abaixo, qual não foi um presente dado ao menino jesus pelos reis Magos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dentre as alternativas abaixo, qual não foi um presente dado ao menino jesus pelos reis Magos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dentre as alternativas abaixo, qual não foi um presente dado ao menino jesus pelos reis Magos?"], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Prataria"], ["question_id", 1919], ["correct", true], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Incenso"], ["question_id", 1919], ["correct", false], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mirra"], ["question_id", 1919], ["correct", false], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ouro"], ["question_id", 1919], ["correct", false], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]]  (114.0ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dentre as opções abaixo, qual deles não foi apóstolo de Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dentre as opções abaixo, qual deles não foi apóstolo de Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dentre as opções abaixo, qual deles não foi apóstolo de Jesus?"], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Simeão"], ["question_id", 1920], ["correct", true], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tadeu"], ["question_id", 1920], ["correct", false], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 1920], ["correct", false], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tomé"], ["question_id", 1920], ["correct", false], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]]  (139.6ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Depois de passar pela Macedônia, quantos meses Paulo ficou na Grécia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Depois de passar pela Macedônia, quantos meses Paulo ficou na Grécia?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Depois de passar pela Macedônia, quantos meses Paulo ficou na Grécia?"], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 1921], ["correct", true], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "6"], ["question_id", 1921], ["correct", false], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "9"], ["question_id", 1921], ["correct", false], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 1921], ["correct", false], ["created_at", 2016-08-19 02:55:45 UTC], ["updated_at", 2016-08-19 02:55:45 UTC]]  (131.6ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Depois de ter sido vendido pelos seus irmãos, José se tornou escravo em qual país?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Depois de ter sido vendido pelos seus irmãos, José se tornou escravo em qual país?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Depois de ter sido vendido pelos seus irmãos, José se tornou escravo em qual país?"], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egito"], ["question_id", 1922], ["correct", true], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônia"], ["question_id", 1922], ["correct", false], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arábia"], ["question_id", 1922], ["correct", false], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenícia"], ["question_id", 1922], ["correct", false], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]]  (132.0ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Depois que José do Egito interpretou o sonho do Faraó, que presente ele ganhou do Faraó?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Depois que José do Egito interpretou o sonho do Faraó, que presente ele ganhou do Faraó?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Depois que José do Egito interpretou o sonho do Faraó, que presente ele ganhou do Faraó?"], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Colar de Ouro"], ["question_id", 1923], ["correct", true], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Baú de Ouro"], ["question_id", 1923], ["correct", false], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cavalos e Carruagens de Ouro"], ["question_id", 1923], ["correct", false], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Anel de Ouro"], ["question_id", 1923], ["correct", false], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]]  (124.1ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Depois que um pupilo é completamente treinado, como ele será?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Depois que um pupilo é completamente treinado, como ele será?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Depois que um pupilo é completamente treinado, como ele será?"], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Como Seu Mestre"], ["question_id", 1924], ["correct", true], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Como Um Tolo"], ["question_id", 1924], ["correct", false], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Como Um Arrogante"], ["question_id", 1924], ["correct", false], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Como Um Homem Sábio"], ["question_id", 1924], ["correct", false], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]]  (140.1ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Deus criou o Jardim do Éden que era molhado por:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Deus criou o Jardim do Éden que era molhado por:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Deus criou o Jardim do Éden que era molhado por:"], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Névoa Que Saia da Terra"], ["question_id", 1925], ["correct", true], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Chuvas"], ["question_id", 1925], ["correct", false], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Água do Rio"], ["question_id", 1925], ["correct", false], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Água do Mar"], ["question_id", 1925], ["correct", false], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]]  (115.5ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Deus curou o general sírio Naamã de qual enfermidade?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Deus curou o general sírio Naamã de qual enfermidade?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Deus curou o general sírio Naamã de qual enfermidade?"], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lepra"], ["question_id", 1926], ["correct", true], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cegueira"], ["question_id", 1926], ["correct", false], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mal de Parkinson"], ["question_id", 1926], ["correct", false], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Câncer"], ["question_id", 1926], ["correct", false], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]]  (114.8ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Devido ao saque cometido contra a cidade de Jericó, qual foi a punição imposta a Acã e sua família?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Devido ao saque cometido contra a cidade de Jericó, qual foi a punição imposta a Acã e sua família?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Devido ao saque cometido contra a cidade de Jericó, qual foi a punição imposta a Acã e sua família?"], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foram Apedrejados"], ["question_id", 1927], ["correct", true], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foram Expulsos da Caravana"], ["question_id", 1927], ["correct", false], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foram Decapitados"], ["question_id", 1927], ["correct", false], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foram Queimados"], ["question_id", 1927], ["correct", false], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]]  (131.1ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Do que a rainha Jezabel acusou Nabote, para com isso poder prender Nabote e tomar a vinha que ele tinha em suas terras?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Do que a rainha Jezabel acusou Nabote, para com isso poder prender Nabote e tomar a vinha que ele tinha em suas terras?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Do que a rainha Jezabel acusou Nabote, para com isso poder prender Nabote e tomar a vinha que ele tinha em suas terras?"], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Blasfêmia"], ["question_id", 1928], ["correct", true], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assassinato"], ["question_id", 1928], ["correct", false], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Atentado Contra O Rei"], ["question_id", 1928], ["correct", false], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assédio Sexual"], ["question_id", 1928], ["correct", false], ["created_at", 2016-08-19 02:55:46 UTC], ["updated_at", 2016-08-19 02:55:46 UTC]]  (131.5ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Do que eram feitas as roupas de João Batista?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Do que eram feitas as roupas de João Batista?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Do que eram feitas as roupas de João Batista?"], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "De Pêlo de Camelo"], ["question_id", 1929], ["correct", true], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "De Lã de Ovelha"], ["question_id", 1929], ["correct", false], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "De Linho Tecido"], ["question_id", 1929], ["correct", false], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "De Seda Pura"], ["question_id", 1929], ["correct", false], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]]  (115.6ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Do que Sansão precisou após ter matado 1.000 homens com apenas uma única queixada de jumento?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Do que Sansão precisou após ter matado 1.000 homens com apenas uma única queixada de jumento?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Do que Sansão precisou após ter matado 1.000 homens com apenas uma única queixada de jumento?"], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Gole de Água"], ["question_id", 1930], ["correct", true], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Prato de Alimento"], ["question_id", 1930], ["correct", false], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Rede Para Descansar"], ["question_id", 1930], ["correct", false], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Semana de Férias"], ["question_id", 1930], ["correct", false], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]]  (125.5ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dorcas era uma mulher bondosa e caridosa que morava na cidade de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dorcas era uma mulher bondosa e caridosa que morava na cidade de:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dorcas era uma mulher bondosa e caridosa que morava na cidade de:"], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jope"], ["question_id", 1931], ["correct", true], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nínive"], ["question_id", 1931], ["correct", false], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cafarnaum"], ["question_id", 1931], ["correct", false], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Betsaida"], ["question_id", 1931], ["correct", false], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]]  (130.5ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dorcas, uma mulher bondosa e caridosa, também era conhecida como:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dorcas, uma mulher bondosa e caridosa, também era conhecida como:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dorcas, uma mulher bondosa e caridosa, também era conhecida como:"], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tabita"], ["question_id", 1932], ["correct", true], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Talita"], ["question_id", 1932], ["correct", false], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eleonora"], ["question_id", 1932], ["correct", false], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elinisa"], ["question_id", 1932], ["correct", false], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]]  (128.3ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos 10 homens que sofriam de lepra e que foram curados por Jesus, quantos deles retornaram para agradecer pela cura?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos 10 homens que sofriam de lepra e que foram curados por Jesus, quantos deles retornaram para agradecer pela cura?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dos 10 homens que sofriam de lepra e que foram curados por Jesus, quantos deles retornaram para agradecer pela cura?"], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 1933], ["correct", true], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todos"], ["question_id", 1933], ["correct", false], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 1933], ["correct", false], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 1933], ["correct", false], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]]  (188.8ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos 30.000 trabalhadores que foram designados para construírem o Templo de Jerusalém, quantos trabalhavam no mês?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos 30.000 trabalhadores que foram designados para construírem o Templo de Jerusalém, quantos trabalhavam no mês?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dos 30.000 trabalhadores que foram designados para construírem o Templo de Jerusalém, quantos trabalhavam no mês?"], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10000"], ["question_id", 1934], ["correct", true], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todos"], ["question_id", 1934], ["correct", false], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas 1.000"], ["question_id", 1934], ["correct", false], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "20000"], ["question_id", 1934], ["correct", false], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]]  (164.3ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos amigos de Daniel, quem foi jogado em uma fornalha ardente?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos amigos de Daniel, quem foi jogado em uma fornalha ardente?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dos amigos de Daniel, quem foi jogado em uma fornalha ardente?"], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todas As Alternativas"], ["question_id", 1935], ["correct", true], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mesaque"], ["question_id", 1935], ["correct", false], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sadraque"], ["question_id", 1935], ["correct", false], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abede-nego"], ["question_id", 1935], ["correct", false], ["created_at", 2016-08-19 02:55:47 UTC], ["updated_at", 2016-08-19 02:55:47 UTC]]  (147.4ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos filhos de Adão e Eva, Abel foi o:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos filhos de Adão e Eva, Abel foi o:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dos filhos de Adão e Eva, Abel foi o:"], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2º"], ["question_id", 1936], ["correct", true], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1º"], ["question_id", 1936], ["correct", false], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3º"], ["question_id", 1936], ["correct", false], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4º"], ["question_id", 1936], ["correct", false], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]]  (147.8ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos filhos de Adão e Eva, Caim foi o:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos filhos de Adão e Eva, Caim foi o:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dos filhos de Adão e Eva, Caim foi o:"], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1º"], ["question_id", 1937], ["correct", true], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2º"], ["question_id", 1937], ["correct", false], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3º"], ["question_id", 1937], ["correct", false], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4º"], ["question_id", 1937], ["correct", false], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]]  (115.3ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos filhos de Adão e Eva, Sete foi o:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos filhos de Adão e Eva, Sete foi o:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dos filhos de Adão e Eva, Sete foi o:"], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3º"], ["question_id", 1938], ["correct", true], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1º"], ["question_id", 1938], ["correct", false], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2º"], ["question_id", 1938], ["correct", false], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4º"], ["question_id", 1938], ["correct", false], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]]  (122.1ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos livros da Bíblia abaixo, qual deles não termina com um ponto de interrogação?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos livros da Bíblia abaixo, qual deles não termina com um ponto de interrogação?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dos livros da Bíblia abaixo, qual deles não termina com um ponto de interrogação?"], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 1939], ["correct", true], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lamentações"], ["question_id", 1939], ["correct", false], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jonas"], ["question_id", 1939], ["correct", false], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Naum"], ["question_id", 1939], ["correct", false], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]]  (131.6ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos livros da Bíblia abaixo, qual deles tem apenas 1 único capítulo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos livros da Bíblia abaixo, qual deles tem apenas 1 único capítulo?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dos livros da Bíblia abaixo, qual deles tem apenas 1 único capítulo?"], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obadias"], ["question_id", 1940], ["correct", true], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rute"], ["question_id", 1940], ["correct", false], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jó"], ["question_id", 1940], ["correct", false], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lamentações"], ["question_id", 1940], ["correct", false], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]]  (131.4ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos livros da Bíblia abaixo, qual deles tem mais de 1 capítulo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos livros da Bíblia abaixo, qual deles tem mais de 1 capítulo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dos livros da Bíblia abaixo, qual deles tem mais de 1 capítulo?"], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lamentações"], ["question_id", 1941], ["correct", true], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filemom"], ["question_id", 1941], ["correct", false], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas"], ["question_id", 1941], ["correct", false], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obadias"], ["question_id", 1941], ["correct", false], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]]  (115.3ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos livros da Bíblia abaixo, qual deles termina com um ponto de interrogação?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos livros da Bíblia abaixo, qual deles termina com um ponto de interrogação?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dos livros da Bíblia abaixo, qual deles termina com um ponto de interrogação?"], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Naum"], ["question_id", 1942], ["correct", true], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jó"], ["question_id", 1942], ["correct", false], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Levíticos"], ["question_id", 1942], ["correct", false], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 1942], ["correct", false], ["created_at", 2016-08-19 02:55:48 UTC], ["updated_at", 2016-08-19 02:55:48 UTC]]  (114.8ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos livros da Bíblia abaixos, qual deles não contém a palavra \"Deus\"?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Dos livros da Bíblia abaixos, qual deles não contém a palavra \"Deus\"?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Dos livros da Bíblia abaixos, qual deles não contém a palavra \"Deus\"?"], ["created_at", 2016-08-19 02:55:49 UTC], ["updated_at", 2016-08-19 02:55:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ester"], ["question_id", 1943], ["correct", true], ["created_at", 2016-08-19 02:55:49 UTC], ["updated_at", 2016-08-19 02:55:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Naum"], ["question_id", 1943], ["correct", false], ["created_at", 2016-08-19 02:55:49 UTC], ["updated_at", 2016-08-19 02:55:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obadias"], ["question_id", 1943], ["correct", false], ["created_at", 2016-08-19 02:55:49 UTC], ["updated_at", 2016-08-19 02:55:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lamentações"], ["question_id", 1943], ["correct", false], ["created_at", 2016-08-19 02:55:49 UTC], ["updated_at", 2016-08-19 02:55:49 UTC]]  (123.2ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante 6 dias, quantas voltas por dia o povo de Israel marchava ao redor dos muros da cidade de Jericó?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante 6 dias, quantas voltas por dia o povo de Israel marchava ao redor dos muros da cidade de Jericó?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante 6 dias, quantas voltas por dia o povo de Israel marchava ao redor dos muros da cidade de Jericó?"], ["created_at", 2016-08-19 02:55:49 UTC], ["updated_at", 2016-08-19 02:55:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 1944], ["correct", true], ["created_at", 2016-08-19 02:55:49 UTC], ["updated_at", 2016-08-19 02:55:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7"], ["question_id", 1944], ["correct", false], ["created_at", 2016-08-19 02:55:49 UTC], ["updated_at", 2016-08-19 02:55:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "6"], ["question_id", 1944], ["correct", false], ["created_at", 2016-08-19 02:55:49 UTC], ["updated_at", 2016-08-19 02:55:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 1944], ["correct", false], ["created_at", 2016-08-19 02:55:49 UTC], ["updated_at", 2016-08-19 02:55:49 UTC]]  (131.4ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante a Última Ceia, a quem Jesus ofereceu um bocado de pão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante a Última Ceia, a quem Jesus ofereceu um bocado de pão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante a Última Ceia, a quem Jesus ofereceu um bocado de pão?"], ["created_at", 2016-08-19 02:55:49 UTC], ["updated_at", 2016-08-19 02:55:49 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas Iscariotes"], ["question_id", 1945], ["correct", true], ["created_at", 2016-08-19 02:55:49 UTC], ["updated_at", 2016-08-19 02:55:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 1945], ["correct", false], ["created_at", 2016-08-19 02:55:49 UTC], ["updated_at", 2016-08-19 02:55:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 1945], ["correct", false], ["created_at", 2016-08-19 02:55:49 UTC], ["updated_at", 2016-08-19 02:55:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 1945], ["correct", false], ["created_at", 2016-08-19 02:55:49 UTC], ["updated_at", 2016-08-19 02:55:49 UTC]]  (132.5ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante a Última Ceia, com que objetivo Jesus ofereceu um bocado de pão a Judas Iscariotes?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante a Última Ceia, com que objetivo Jesus ofereceu um bocado de pão a Judas Iscariotes?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante a Última Ceia, com que objetivo Jesus ofereceu um bocado de pão a Judas Iscariotes?"], ["created_at", 2016-08-19 02:55:49 UTC], ["updated_at", 2016-08-19 02:55:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Como Sinal de Quem Seria O Traidor"], ["question_id", 1946], ["correct", true], ["created_at", 2016-08-19 02:55:49 UTC], ["updated_at", 2016-08-19 02:55:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Amizade"], ["question_id", 1946], ["correct", false], ["created_at", 2016-08-19 02:55:49 UTC], ["updated_at", 2016-08-19 02:55:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Judas Estava Com Fome"], ["question_id", 1946], ["correct", false], ["created_at", 2016-08-19 02:55:49 UTC], ["updated_at", 2016-08-19 02:55:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Foi Ele Que Havia Dado O Dinheiro P/ Comprar"], ["question_id", 1946], ["correct", false], ["created_at", 2016-08-19 02:55:49 UTC], ["updated_at", 2016-08-19 02:55:49 UTC]]  (191.1ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante a Última Ceia, que gesto Jesus efetuou para sinalizar quem seria o traidor dentre os 12 discípulos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante a Última Ceia, que gesto Jesus efetuou para sinalizar quem seria o traidor dentre os 12 discípulos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante a Última Ceia, que gesto Jesus efetuou para sinalizar quem seria o traidor dentre os 12 discípulos?"], ["created_at", 2016-08-19 02:55:49 UTC], ["updated_at", 2016-08-19 02:55:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ofereceu Um Bocado de Pão"], ["question_id", 1947], ["correct", true], ["created_at", 2016-08-19 02:55:49 UTC], ["updated_at", 2016-08-19 02:55:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lavou Os Pés"], ["question_id", 1947], ["correct", false], ["created_at", 2016-08-19 02:55:49 UTC], ["updated_at", 2016-08-19 02:55:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Partiu O Pão"], ["question_id", 1947], ["correct", false], ["created_at", 2016-08-19 02:55:49 UTC], ["updated_at", 2016-08-19 02:55:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apontou O Traidor Com As Mãos"], ["question_id", 1947], ["correct", false], ["created_at", 2016-08-19 02:55:49 UTC], ["updated_at", 2016-08-19 02:55:49 UTC]]  (181.4ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante a Última Ceia, quem ofereceu um bocado de pão a Judas Iscariotes?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante a Última Ceia, quem ofereceu um bocado de pão a Judas Iscariotes?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante a Última Ceia, quem ofereceu um bocado de pão a Judas Iscariotes?"], ["created_at", 2016-08-19 02:55:49 UTC], ["updated_at", 2016-08-19 02:55:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 1948], ["correct", true], ["created_at", 2016-08-19 02:55:49 UTC], ["updated_at", 2016-08-19 02:55:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 1948], ["correct", false], ["created_at", 2016-08-19 02:55:49 UTC], ["updated_at", 2016-08-19 02:55:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 1948], ["correct", false], ["created_at", 2016-08-19 02:55:49 UTC], ["updated_at", 2016-08-19 02:55:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "André"], ["question_id", 1948], ["correct", false], ["created_at", 2016-08-19 02:55:49 UTC], ["updated_at", 2016-08-19 02:55:49 UTC]]  (156.3ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante a viagem de Paulo a Roma, o que desapareceu durante muitos dias devido à forte tempestade?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante a viagem de Paulo a Roma, o que desapareceu durante muitos dias devido à forte tempestade?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante a viagem de Paulo a Roma, o que desapareceu durante muitos dias devido à forte tempestade?"], ["created_at", 2016-08-19 02:55:50 UTC], ["updated_at", 2016-08-19 02:55:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Sol e As Estrelas"], ["question_id", 1949], ["correct", true], ["created_at", 2016-08-19 02:55:50 UTC], ["updated_at", 2016-08-19 02:55:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Luz"], ["question_id", 1949], ["correct", false], ["created_at", 2016-08-19 02:55:50 UTC], ["updated_at", 2016-08-19 02:55:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Qualquer Sinal de Terra"], ["question_id", 1949], ["correct", false], ["created_at", 2016-08-19 02:55:50 UTC], ["updated_at", 2016-08-19 02:55:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vida Marinha"], ["question_id", 1949], ["correct", false], ["created_at", 2016-08-19 02:55:50 UTC], ["updated_at", 2016-08-19 02:55:50 UTC]]  (156.7ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante o 2º ataque de Nabucodonosor à cidade de Jerusalém, quem não foi levado cativo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante o 2º ataque de Nabucodonosor à cidade de Jerusalém, quem não foi levado cativo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante o 2º ataque de Nabucodonosor à cidade de Jerusalém, quem não foi levado cativo?"], ["created_at", 2016-08-19 02:55:50 UTC], ["updated_at", 2016-08-19 02:55:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Pobres"], ["question_id", 1950], ["correct", true], ["created_at", 2016-08-19 02:55:50 UTC], ["updated_at", 2016-08-19 02:55:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Família Real"], ["question_id", 1950], ["correct", false], ["created_at", 2016-08-19 02:55:50 UTC], ["updated_at", 2016-08-19 02:55:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Sacerdotes do Templo"], ["question_id", 1950], ["correct", false], ["created_at", 2016-08-19 02:55:50 UTC], ["updated_at", 2016-08-19 02:55:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Exército da Cidade de Jerusalém"], ["question_id", 1950], ["correct", false], ["created_at", 2016-08-19 02:55:50 UTC], ["updated_at", 2016-08-19 02:55:50 UTC]]  (131.3ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante o ministério de Jesus, quem governava a Galiléia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante o ministério de Jesus, quem governava a Galiléia?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante o ministério de Jesus, quem governava a Galiléia?"], ["created_at", 2016-08-19 02:55:50 UTC], ["updated_at", 2016-08-19 02:55:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Antipas"], ["question_id", 1951], ["correct", true], ["created_at", 2016-08-19 02:55:50 UTC], ["updated_at", 2016-08-19 02:55:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Agripa"], ["question_id", 1951], ["correct", false], ["created_at", 2016-08-19 02:55:50 UTC], ["updated_at", 2016-08-19 02:55:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sumos Sacerdotes"], ["question_id", 1951], ["correct", false], ["created_at", 2016-08-19 02:55:50 UTC], ["updated_at", 2016-08-19 02:55:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 1951], ["correct", false], ["created_at", 2016-08-19 02:55:50 UTC], ["updated_at", 2016-08-19 02:55:50 UTC]]  (156.5ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante o reinado de Ezequias no reino de Judá, o que ocorreu com o reino de Israel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante o reinado de Ezequias no reino de Judá, o que ocorreu com o reino de Israel?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante o reinado de Ezequias no reino de Judá, o que ocorreu com o reino de Israel?"], ["created_at", 2016-08-19 02:55:50 UTC], ["updated_at", 2016-08-19 02:55:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Conquistado Pelos Exércitos Inimigos"], ["question_id", 1952], ["correct", true], ["created_at", 2016-08-19 02:55:50 UTC], ["updated_at", 2016-08-19 02:55:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Teve Uma Grande Enchente"], ["question_id", 1952], ["correct", false], ["created_at", 2016-08-19 02:55:50 UTC], ["updated_at", 2016-08-19 02:55:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Teve Uma Grande Seca"], ["question_id", 1952], ["correct", false], ["created_at", 2016-08-19 02:55:50 UTC], ["updated_at", 2016-08-19 02:55:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Ídolos de Baal Foram Totalmente Destruídos"], ["question_id", 1952], ["correct", false], ["created_at", 2016-08-19 02:55:50 UTC], ["updated_at", 2016-08-19 02:55:50 UTC]]  (172.8ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante o tempo que ficou cego, o que Paulo não fez?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante o tempo que ficou cego, o que Paulo não fez?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante o tempo que ficou cego, o que Paulo não fez?"], ["created_at", 2016-08-19 02:55:50 UTC], ["updated_at", 2016-08-19 02:55:50 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Comer e Beber"], ["question_id", 1953], ["correct", true], ["created_at", 2016-08-19 02:55:50 UTC], ["updated_at", 2016-08-19 02:55:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dormir"], ["question_id", 1953], ["correct", false], ["created_at", 2016-08-19 02:55:50 UTC], ["updated_at", 2016-08-19 02:55:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Conversar"], ["question_id", 1953], ["correct", false], ["created_at", 2016-08-19 02:55:50 UTC], ["updated_at", 2016-08-19 02:55:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sentar"], ["question_id", 1953], ["correct", false], ["created_at", 2016-08-19 02:55:50 UTC], ["updated_at", 2016-08-19 02:55:50 UTC]]  (155.8ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante os 40 dias em que jesus esteve no deserto, o que ele fez?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante os 40 dias em que jesus esteve no deserto, o que ele fez?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante os 40 dias em que jesus esteve no deserto, o que ele fez?"], ["created_at", 2016-08-19 02:55:50 UTC], ["updated_at", 2016-08-19 02:55:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jejuou"], ["question_id", 1954], ["correct", true], ["created_at", 2016-08-19 02:55:50 UTC], ["updated_at", 2016-08-19 02:55:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dormiu"], ["question_id", 1954], ["correct", false], ["created_at", 2016-08-19 02:55:50 UTC], ["updated_at", 2016-08-19 02:55:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arou A Terra"], ["question_id", 1954], ["correct", false], ["created_at", 2016-08-19 02:55:50 UTC], ["updated_at", 2016-08-19 02:55:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esteve Em Visão Durante Este Tempo"], ["question_id", 1954], ["correct", false], ["created_at", 2016-08-19 02:55:50 UTC], ["updated_at", 2016-08-19 02:55:50 UTC]]  (157.2ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quanto tempo Jacó concordou em trabalhar para seu futuro sogro para poder desposar Raquel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quanto tempo Jacó concordou em trabalhar para seu futuro sogro para poder desposar Raquel?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante quanto tempo Jacó concordou em trabalhar para seu futuro sogro para poder desposar Raquel?"], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7 Anos"], ["question_id", 1955], ["correct", true], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Anos"], ["question_id", 1955], ["correct", false], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5 Anos"], ["question_id", 1955], ["correct", false], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10 Anos"], ["question_id", 1955], ["correct", false], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]]  (181.4ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quanto tempo não chovia quando então o profeta Elias orou por chuva?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quanto tempo não chovia quando então o profeta Elias orou por chuva?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante quanto tempo não chovia quando então o profeta Elias orou por chuva?"], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Anos e Meio"], ["question_id", 1956], ["correct", true], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Década"], ["question_id", 1956], ["correct", false], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5 Meses"], ["question_id", 1956], ["correct", false], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12 Meses"], ["question_id", 1956], ["correct", false], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]]  (149.2ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quanto tempo o rei Jeoás reinou sobre a nação israelita?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quanto tempo o rei Jeoás reinou sobre a nação israelita?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante quanto tempo o rei Jeoás reinou sobre a nação israelita?"], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "40 Anos"], ["question_id", 1957], ["correct", true], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "15 Anos"], ["question_id", 1957], ["correct", false], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "70 Anos"], ["question_id", 1957], ["correct", false], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 Anos"], ["question_id", 1957], ["correct", false], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]]  (132.4ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quanto tempo o Rei Nabucodonosor achava que era um animal, e agia como tal?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quanto tempo o Rei Nabucodonosor achava que era um animal, e agia como tal?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante quanto tempo o Rei Nabucodonosor achava que era um animal, e agia como tal?"], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7 Anos"], ["question_id", 1958], ["correct", true], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7 Dias"], ["question_id", 1958], ["correct", false], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7 Semanas"], ["question_id", 1958], ["correct", false], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7 Meses"], ["question_id", 1958], ["correct", false], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]]  (163.6ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quanto tempo Paulo ficou cego, até ser curado por Ananias?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quanto tempo Paulo ficou cego, até ser curado por Ananias?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante quanto tempo Paulo ficou cego, até ser curado por Ananias?"], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Dias"], ["question_id", 1959], ["correct", true], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Semana"], ["question_id", 1959], ["correct", false], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Semanas"], ["question_id", 1959], ["correct", false], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Dia"], ["question_id", 1959], ["correct", false], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]]  (130.9ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quantos anos Jacó precisou trabalhar para seu futuro sogro para poder desposar Raquel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quantos anos Jacó precisou trabalhar para seu futuro sogro para poder desposar Raquel?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante quantos anos Jacó precisou trabalhar para seu futuro sogro para poder desposar Raquel?"], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "14 Anos"], ["question_id", 1960], ["correct", true], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7 Anos"], ["question_id", 1960], ["correct", false], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10 Anos"], ["question_id", 1960], ["correct", false], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12 Anos"], ["question_id", 1960], ["correct", false], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]]  (131.6ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quantos anos o povo israelita peregrinou pelo Deserto?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante quantos anos o povo israelita peregrinou pelo Deserto?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante quantos anos o povo israelita peregrinou pelo Deserto?"], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "40"], ["question_id", 1961], ["correct", true], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "190"], ["question_id", 1961], ["correct", false], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "80"], ["question_id", 1961], ["correct", false], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "120"], ["question_id", 1961], ["correct", false], ["created_at", 2016-08-19 02:55:51 UTC], ["updated_at", 2016-08-19 02:55:51 UTC]]  (138.9ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante sua última semana de vida, enquanto não estava em Jerusalém Jesus estava na cidade de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Durante sua última semana de vida, enquanto não estava em Jerusalém Jesus estava na cidade de:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Durante sua última semana de vida, enquanto não estava em Jerusalém Jesus estava na cidade de:"], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Betânia"], ["question_id", 1962], ["correct", true], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cafarnaum"], ["question_id", 1962], ["correct", false], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nazaré"], ["question_id", 1962], ["correct", false], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 1962], ["correct", false], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]]  (114.9ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ebede-Meleque, que havia salvo o profeta Jeremias de morrer em uma cisterna com lama, era:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ebede-Meleque, que havia salvo o profeta Jeremias de morrer em uma cisterna com lama, era:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Ebede-Meleque, que havia salvo o profeta Jeremias de morrer em uma cisterna com lama, era:"], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eunuco"], ["question_id", 1963], ["correct", true], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anão"], ["question_id", 1963], ["correct", false], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sumo-sacerdote"], ["question_id", 1963], ["correct", false], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei"], ["question_id", 1963], ["correct", false], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]]  (131.8ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Elias mandou matar os profetas de qual deus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Elias mandou matar os profetas de qual deus?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Elias mandou matar os profetas de qual deus?"], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Baal"], ["question_id", 1964], ["correct", true], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tom-rá"], ["question_id", 1964], ["correct", false], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deus do Sol"], ["question_id", 1964], ["correct", false], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deus da Lua"], ["question_id", 1964], ["correct", false], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]]  (124.3ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Elias subiu aos Céus através de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Elias subiu aos Céus através de:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Elias subiu aos Céus através de:"], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Carruagem de Fogo"], ["question_id", 1965], ["correct", true], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Escada Que Ia Até O Céu"], ["question_id", 1965], ["correct", false], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Pássaro Enorme"], ["question_id", 1965], ["correct", false], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Cavalo de Fogo"], ["question_id", 1965], ["correct", false], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]]  (132.1ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Elias teve o privilégio de comer uma refeição preparada por:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Elias teve o privilégio de comer uma refeição preparada por:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Elias teve o privilégio de comer uma refeição preparada por:"], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Anjo"], ["question_id", 1966], ["correct", true], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deus"], ["question_id", 1966], ["correct", false], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jezabel"], ["question_id", 1966], ["correct", false], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 1966], ["correct", false], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]]  (131.8ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Elifaz, uma das pessoas que repreendeu a Jó, era de nacionalidade:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Elifaz, uma das pessoas que repreendeu a Jó, era de nacionalidade:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Elifaz, uma das pessoas que repreendeu a Jó, era de nacionalidade:"], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Temanita"], ["question_id", 1967], ["correct", true], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filistéia"], ["question_id", 1967], ["correct", false], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenícia"], ["question_id", 1967], ["correct", false], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Meconita"], ["question_id", 1967], ["correct", false], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]]  (148.2ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em 1961, foi encontrada em Cesaréia uma inscrição que fazia menção de um prefeito na época de Jesus. Quem foi mencionado?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em 1961, foi encontrada em Cesaréia uma inscrição que fazia menção de um prefeito na época de Jesus. Quem foi mencionado?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em 1961, foi encontrada em Cesaréia uma inscrição que fazia menção de um prefeito na época de Jesus. Quem foi mencionado?"], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 1968], ["correct", true], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes, O Grande"], ["question_id", 1968], ["correct", false], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Faraó do Egito"], ["question_id", 1968], ["correct", false], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei Nabucodonosor"], ["question_id", 1968], ["correct", false], ["created_at", 2016-08-19 02:55:52 UTC], ["updated_at", 2016-08-19 02:55:52 UTC]]  (139.4ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em Caná ocorreu:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em Caná ocorreu:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em Caná ocorreu:"], ["created_at", 2016-08-19 02:55:53 UTC], ["updated_at", 2016-08-19 02:55:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O 1º Milagre de Jesus"], ["question_id", 1969], ["correct", true], ["created_at", 2016-08-19 02:55:53 UTC], ["updated_at", 2016-08-19 02:55:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Transfiguração de Jesus"], ["question_id", 1969], ["correct", false], ["created_at", 2016-08-19 02:55:53 UTC], ["updated_at", 2016-08-19 02:55:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus Foi Batizado Por João Batista"], ["question_id", 1969], ["correct", false], ["created_at", 2016-08-19 02:55:53 UTC], ["updated_at", 2016-08-19 02:55:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Nascimento de Jesus"], ["question_id", 1969], ["correct", false], ["created_at", 2016-08-19 02:55:53 UTC], ["updated_at", 2016-08-19 02:55:53 UTC]]  (132.2ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em Éfeso, quem se zangou com Paulo e os discípulos e instigou uma revolta contra eles?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em Éfeso, quem se zangou com Paulo e os discípulos e instigou uma revolta contra eles?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em Éfeso, quem se zangou com Paulo e os discípulos e instigou uma revolta contra eles?"], ["created_at", 2016-08-19 02:55:53 UTC], ["updated_at", 2016-08-19 02:55:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Demétrio"], ["question_id", 1970], ["correct", true], ["created_at", 2016-08-19 02:55:53 UTC], ["updated_at", 2016-08-19 02:55:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Títio"], ["question_id", 1970], ["correct", false], ["created_at", 2016-08-19 02:55:53 UTC], ["updated_at", 2016-08-19 02:55:53 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Safira"], ["question_id", 1970], ["correct", false], ["created_at", 2016-08-19 02:55:53 UTC], ["updated_at", 2016-08-19 02:55:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lísia"], ["question_id", 1970], ["correct", false], ["created_at", 2016-08-19 02:55:53 UTC], ["updated_at", 2016-08-19 02:55:53 UTC]]  (130.9ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em lugar de Isaque, que animal Deus providenciou para Abraão oferecer em sacrifício?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em lugar de Isaque, que animal Deus providenciou para Abraão oferecer em sacrifício?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em lugar de Isaque, que animal Deus providenciou para Abraão oferecer em sacrifício?"], ["created_at", 2016-08-19 02:55:53 UTC], ["updated_at", 2016-08-19 02:55:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cordeiro"], ["question_id", 1971], ["correct", true], ["created_at", 2016-08-19 02:55:53 UTC], ["updated_at", 2016-08-19 02:55:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ovelha"], ["question_id", 1971], ["correct", false], ["created_at", 2016-08-19 02:55:53 UTC], ["updated_at", 2016-08-19 02:55:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Corvo"], ["question_id", 1971], ["correct", false], ["created_at", 2016-08-19 02:55:53 UTC], ["updated_at", 2016-08-19 02:55:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cabrito"], ["question_id", 1971], ["correct", false], ["created_at", 2016-08-19 02:55:53 UTC], ["updated_at", 2016-08-19 02:55:53 UTC]]  (155.4ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em Malta naufragou o navio onde estava:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em Malta naufragou o navio onde estava:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em Malta naufragou o navio onde estava:"], ["created_at", 2016-08-19 02:55:53 UTC], ["updated_at", 2016-08-19 02:55:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 1972], ["correct", true], ["created_at", 2016-08-19 02:55:53 UTC], ["updated_at", 2016-08-19 02:55:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jonas"], ["question_id", 1972], ["correct", false], ["created_at", 2016-08-19 02:55:53 UTC], ["updated_at", 2016-08-19 02:55:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 1972], ["correct", false], ["created_at", 2016-08-19 02:55:53 UTC], ["updated_at", 2016-08-19 02:55:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 1972], ["correct", false], ["created_at", 2016-08-19 02:55:53 UTC], ["updated_at", 2016-08-19 02:55:53 UTC]]  (131.0ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual ano de seu reinado Salomão iniciou a construção do Templo de Jerusalém?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual ano de seu reinado Salomão iniciou a construção do Templo de Jerusalém?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual ano de seu reinado Salomão iniciou a construção do Templo de Jerusalém?"], ["created_at", 2016-08-19 02:55:53 UTC], ["updated_at", 2016-08-19 02:55:53 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4º"], ["question_id", 1973], ["correct", true], ["created_at", 2016-08-19 02:55:53 UTC], ["updated_at", 2016-08-19 02:55:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "8º"], ["question_id", 1973], ["correct", false], ["created_at", 2016-08-19 02:55:53 UTC], ["updated_at", 2016-08-19 02:55:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1º"], ["question_id", 1973], ["correct", false], ["created_at", 2016-08-19 02:55:53 UTC], ["updated_at", 2016-08-19 02:55:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10º"], ["question_id", 1973], ["correct", false], ["created_at", 2016-08-19 02:55:53 UTC], ["updated_at", 2016-08-19 02:55:53 UTC]]  (156.6ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual árvore ficou preso Absalão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual árvore ficou preso Absalão?"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual árvore ficou preso Absalão?"], ["created_at", 2016-08-19 02:55:53 UTC], ["updated_at", 2016-08-19 02:55:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carvalho"], ["question_id", 1974], ["correct", true], ["created_at", 2016-08-19 02:55:53 UTC], ["updated_at", 2016-08-19 02:55:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cedro"], ["question_id", 1974], ["correct", false], ["created_at", 2016-08-19 02:55:53 UTC], ["updated_at", 2016-08-19 02:55:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cipreste"], ["question_id", 1974], ["correct", false], ["created_at", 2016-08-19 02:55:53 UTC], ["updated_at", 2016-08-19 02:55:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mogno"], ["question_id", 1974], ["correct", false], ["created_at", 2016-08-19 02:55:53 UTC], ["updated_at", 2016-08-19 02:55:53 UTC]]  (223.8ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual árvore Zaqueu subiu para poder enxergar melhor Jesus no meio da multidão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual árvore Zaqueu subiu para poder enxergar melhor Jesus no meio da multidão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual árvore Zaqueu subiu para poder enxergar melhor Jesus no meio da multidão?"], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sicômoro"], ["question_id", 1975], ["correct", true], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tamareira"], ["question_id", 1975], ["correct", false], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Figueira"], ["question_id", 1975], ["correct", false], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cipreste do Líbano"], ["question_id", 1975], ["correct", false], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]]  (115.2ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual cidade encontrava-se Nabucodonosor quando o rei Zedequias foi levado à sua presença para receber a sentença final?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual cidade encontrava-se Nabucodonosor quando o rei Zedequias foi levado à sua presença para receber a sentença final?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual cidade encontrava-se Nabucodonosor quando o rei Zedequias foi levado à sua presença para receber a sentença final?"], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ribla"], ["question_id", 1976], ["correct", true], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nínive"], ["question_id", 1976], ["correct", false], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ur dos Caldeus"], ["question_id", 1976], ["correct", false], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônia"], ["question_id", 1976], ["correct", false], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]]  (115.5ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual cidade Jesus nasceu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual cidade Jesus nasceu?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual cidade Jesus nasceu?"], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belém"], ["question_id", 1977], ["correct", true], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nazaré"], ["question_id", 1977], ["correct", false], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 1977], ["correct", false], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Betânia"], ["question_id", 1977], ["correct", false], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]]  (132.4ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual cidade Maria, mãe de Jesus, morava?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual cidade Maria, mãe de Jesus, morava?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual cidade Maria, mãe de Jesus, morava?"], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nazaré"], ["question_id", 1978], ["correct", true], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 1978], ["correct", false], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Betânia"], ["question_id", 1978], ["correct", false], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belém"], ["question_id", 1978], ["correct", false], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]]  (130.8ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual cidade Nabucodonosor derrotou o rei Neco e seu exército egípcio?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual cidade Nabucodonosor derrotou o rei Neco e seu exército egípcio?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual cidade Nabucodonosor derrotou o rei Neco e seu exército egípcio?"], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carquêmis"], ["question_id", 1979], ["correct", true], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônia"], ["question_id", 1979], ["correct", false], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiro"], ["question_id", 1979], ["correct", false], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hebrom"], ["question_id", 1979], ["correct", false], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]]  (130.4ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual cidade os discípulos de Jesus foram chamados cristãos pela 1ª vez?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual cidade os discípulos de Jesus foram chamados cristãos pela 1ª vez?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual cidade os discípulos de Jesus foram chamados cristãos pela 1ª vez?"], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Antioquia"], ["question_id", 1980], ["correct", true], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Éfeso"], ["question_id", 1980], ["correct", false], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tessalônica"], ["question_id", 1980], ["correct", false], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esmirna"], ["question_id", 1980], ["correct", false], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]]  (130.4ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual lugar estranho Jesus falou para Pedro encontrar uma moeda para pagar o imposto do Templo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual lugar estranho Jesus falou para Pedro encontrar uma moeda para pagar o imposto do Templo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual lugar estranho Jesus falou para Pedro encontrar uma moeda para pagar o imposto do Templo?"], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Boca de Um Peixe"], ["question_id", 1981], ["correct", true], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Barriga de Um Cordeiro"], ["question_id", 1981], ["correct", false], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Interior de Uma Semente de Mostarda"], ["question_id", 1981], ["correct", false], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Tronco de Uma Figueira"], ["question_id", 1981], ["correct", false], ["created_at", 2016-08-19 02:55:54 UTC], ["updated_at", 2016-08-19 02:55:54 UTC]]  (140.0ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual mar André estava pescando quando Jesus o chamou para ser discípulo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual mar André estava pescando quando Jesus o chamou para ser discípulo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual mar André estava pescando quando Jesus o chamou para ser discípulo?"], ["created_at", 2016-08-19 02:55:55 UTC], ["updated_at", 2016-08-19 02:55:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mar da Galiléia"], ["question_id", 1982], ["correct", true], ["created_at", 2016-08-19 02:55:55 UTC], ["updated_at", 2016-08-19 02:55:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mar Morto"], ["question_id", 1982], ["correct", false], ["created_at", 2016-08-19 02:55:55 UTC], ["updated_at", 2016-08-19 02:55:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mar Mediterrâneo"], ["question_id", 1982], ["correct", false], ["created_at", 2016-08-19 02:55:55 UTC], ["updated_at", 2016-08-19 02:55:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mar da Galícia"], ["question_id", 1982], ["correct", false], ["created_at", 2016-08-19 02:55:55 UTC], ["updated_at", 2016-08-19 02:55:55 UTC]]  (123.6ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual mar Pedro estava pescando quando Jesus o chamou para ser discípulo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual mar Pedro estava pescando quando Jesus o chamou para ser discípulo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual mar Pedro estava pescando quando Jesus o chamou para ser discípulo?"], ["created_at", 2016-08-19 02:55:55 UTC], ["updated_at", 2016-08-19 02:55:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mar da Galiléia"], ["question_id", 1983], ["correct", true], ["created_at", 2016-08-19 02:55:55 UTC], ["updated_at", 2016-08-19 02:55:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mar Morto"], ["question_id", 1983], ["correct", false], ["created_at", 2016-08-19 02:55:55 UTC], ["updated_at", 2016-08-19 02:55:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mar Mediterrâneo"], ["question_id", 1983], ["correct", false], ["created_at", 2016-08-19 02:55:55 UTC], ["updated_at", 2016-08-19 02:55:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mar da Galícia"], ["question_id", 1983], ["correct", false], ["created_at", 2016-08-19 02:55:55 UTC], ["updated_at", 2016-08-19 02:55:55 UTC]]  (147.1ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual monte Abraão quase sacrificou seu filho?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual monte Abraão quase sacrificou seu filho?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual monte Abraão quase sacrificou seu filho?"], ["created_at", 2016-08-19 02:55:55 UTC], ["updated_at", 2016-08-19 02:55:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moriá"], ["question_id", 1984], ["correct", true], ["created_at", 2016-08-19 02:55:55 UTC], ["updated_at", 2016-08-19 02:55:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sinai"], ["question_id", 1984], ["correct", false], ["created_at", 2016-08-19 02:55:55 UTC], ["updated_at", 2016-08-19 02:55:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ararat"], ["question_id", 1984], ["correct", false], ["created_at", 2016-08-19 02:55:55 UTC], ["updated_at", 2016-08-19 02:55:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carmelo"], ["question_id", 1984], ["correct", false], ["created_at", 2016-08-19 02:55:55 UTC], ["updated_at", 2016-08-19 02:55:55 UTC]]  (199.1ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Elias desafiou os sacerdotes de Baal?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Elias desafiou os sacerdotes de Baal?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual Monte Elias desafiou os sacerdotes de Baal?"], ["created_at", 2016-08-19 02:55:55 UTC], ["updated_at", 2016-08-19 02:55:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carmelo"], ["question_id", 1985], ["correct", true], ["created_at", 2016-08-19 02:55:55 UTC], ["updated_at", 2016-08-19 02:55:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gerizim"], ["question_id", 1985], ["correct", false], ["created_at", 2016-08-19 02:55:55 UTC], ["updated_at", 2016-08-19 02:55:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sinai"], ["question_id", 1985], ["correct", false], ["created_at", 2016-08-19 02:55:55 UTC], ["updated_at", 2016-08-19 02:55:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gilboa"], ["question_id", 1985], ["correct", false], ["created_at", 2016-08-19 02:55:55 UTC], ["updated_at", 2016-08-19 02:55:55 UTC]]  (206.1ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual monte fixou-se a arca de Noé?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual monte fixou-se a arca de Noé?"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual monte fixou-se a arca de Noé?"], ["created_at", 2016-08-19 02:55:55 UTC], ["updated_at", 2016-08-19 02:55:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ararat"], ["question_id", 1986], ["correct", true], ["created_at", 2016-08-19 02:55:55 UTC], ["updated_at", 2016-08-19 02:55:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nebo"], ["question_id", 1986], ["correct", false], ["created_at", 2016-08-19 02:55:55 UTC], ["updated_at", 2016-08-19 02:55:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sinai"], ["question_id", 1986], ["correct", false], ["created_at", 2016-08-19 02:55:55 UTC], ["updated_at", 2016-08-19 02:55:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carmelo"], ["question_id", 1986], ["correct", false], ["created_at", 2016-08-19 02:55:55 UTC], ["updated_at", 2016-08-19 02:55:55 UTC]]  (130.3ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Jesus chorou sobre Jerusalém?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Jesus chorou sobre Jerusalém?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual Monte Jesus chorou sobre Jerusalém?"], ["created_at", 2016-08-19 02:55:55 UTC], ["updated_at", 2016-08-19 02:55:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Das Oliveiras"], ["question_id", 1987], ["correct", true], ["created_at", 2016-08-19 02:55:55 UTC], ["updated_at", 2016-08-19 02:55:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ebal"], ["question_id", 1987], ["correct", false], ["created_at", 2016-08-19 02:55:55 UTC], ["updated_at", 2016-08-19 02:55:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moriá"], ["question_id", 1987], ["correct", false], ["created_at", 2016-08-19 02:55:55 UTC], ["updated_at", 2016-08-19 02:55:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Getsêmani"], ["question_id", 1987], ["correct", false], ["created_at", 2016-08-19 02:55:55 UTC], ["updated_at", 2016-08-19 02:55:55 UTC]]  (173.0ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Josué pronunciou as bênçãos dadas a Israel devido à sua obediência?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Josué pronunciou as bênçãos dadas a Israel devido à sua obediência?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual Monte Josué pronunciou as bênçãos dadas a Israel devido à sua obediência?"], ["created_at", 2016-08-19 02:55:56 UTC], ["updated_at", 2016-08-19 02:55:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gerizim"], ["question_id", 1988], ["correct", true], ["created_at", 2016-08-19 02:55:56 UTC], ["updated_at", 2016-08-19 02:55:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carmelo"], ["question_id", 1988], ["correct", false], ["created_at", 2016-08-19 02:55:56 UTC], ["updated_at", 2016-08-19 02:55:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tabor"], ["question_id", 1988], ["correct", false], ["created_at", 2016-08-19 02:55:56 UTC], ["updated_at", 2016-08-19 02:55:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nebo"], ["question_id", 1988], ["correct", false], ["created_at", 2016-08-19 02:55:56 UTC], ["updated_at", 2016-08-19 02:55:56 UTC]]  (138.9ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Moisés passou 40 dias com Deus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Moisés passou 40 dias com Deus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual Monte Moisés passou 40 dias com Deus?"], ["created_at", 2016-08-19 02:55:56 UTC], ["updated_at", 2016-08-19 02:55:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sinai"], ["question_id", 1989], ["correct", true], ["created_at", 2016-08-19 02:55:56 UTC], ["updated_at", 2016-08-19 02:55:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nebo"], ["question_id", 1989], ["correct", false], ["created_at", 2016-08-19 02:55:56 UTC], ["updated_at", 2016-08-19 02:55:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carmelo"], ["question_id", 1989], ["correct", false], ["created_at", 2016-08-19 02:55:56 UTC], ["updated_at", 2016-08-19 02:55:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ararat"], ["question_id", 1989], ["correct", false], ["created_at", 2016-08-19 02:55:56 UTC], ["updated_at", 2016-08-19 02:55:56 UTC]]  (140.1ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Moisés recebeu de Deus a missão para tirar o povo de Israel da escravidão do Egito?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Moisés recebeu de Deus a missão para tirar o povo de Israel da escravidão do Egito?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual Monte Moisés recebeu de Deus a missão para tirar o povo de Israel da escravidão do Egito?"], ["created_at", 2016-08-19 02:55:56 UTC], ["updated_at", 2016-08-19 02:55:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Horebe"], ["question_id", 1990], ["correct", true], ["created_at", 2016-08-19 02:55:56 UTC], ["updated_at", 2016-08-19 02:55:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carmelo"], ["question_id", 1990], ["correct", false], ["created_at", 2016-08-19 02:55:56 UTC], ["updated_at", 2016-08-19 02:55:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sinai"], ["question_id", 1990], ["correct", false], ["created_at", 2016-08-19 02:55:56 UTC], ["updated_at", 2016-08-19 02:55:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hebrom"], ["question_id", 1990], ["correct", false], ["created_at", 2016-08-19 02:55:56 UTC], ["updated_at", 2016-08-19 02:55:56 UTC]]  (198.4ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Moisés viu um arbusto em chamas?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Moisés viu um arbusto em chamas?"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual Monte Moisés viu um arbusto em chamas?"], ["created_at", 2016-08-19 02:55:56 UTC], ["updated_at", 2016-08-19 02:55:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Horebe"], ["question_id", 1991], ["correct", true], ["created_at", 2016-08-19 02:55:56 UTC], ["updated_at", 2016-08-19 02:55:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nebo"], ["question_id", 1991], ["correct", false], ["created_at", 2016-08-19 02:55:56 UTC], ["updated_at", 2016-08-19 02:55:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Das Oliveiras"], ["question_id", 1991], ["correct", false], ["created_at", 2016-08-19 02:55:56 UTC], ["updated_at", 2016-08-19 02:55:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ararat"], ["question_id", 1991], ["correct", false], ["created_at", 2016-08-19 02:55:56 UTC], ["updated_at", 2016-08-19 02:55:56 UTC]]  (173.3ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte o rei Saul e seus filhos foram derrotados pelos filisteus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte o rei Saul e seus filhos foram derrotados pelos filisteus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual Monte o rei Saul e seus filhos foram derrotados pelos filisteus?"], ["created_at", 2016-08-19 02:55:56 UTC], ["updated_at", 2016-08-19 02:55:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gilboa"], ["question_id", 1992], ["correct", true], ["created_at", 2016-08-19 02:55:56 UTC], ["updated_at", 2016-08-19 02:55:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ebal"], ["question_id", 1992], ["correct", false], ["created_at", 2016-08-19 02:55:56 UTC], ["updated_at", 2016-08-19 02:55:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Talbor"], ["question_id", 1992], ["correct", false], ["created_at", 2016-08-19 02:55:56 UTC], ["updated_at", 2016-08-19 02:55:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hebrom"], ["question_id", 1992], ["correct", false], ["created_at", 2016-08-19 02:55:56 UTC], ["updated_at", 2016-08-19 02:55:56 UTC]]  (129.9ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Salomão construiu o Templo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual Monte Salomão construiu o Templo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual Monte Salomão construiu o Templo?"], ["created_at", 2016-08-19 02:55:56 UTC], ["updated_at", 2016-08-19 02:55:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moriá"], ["question_id", 1993], ["correct", true], ["created_at", 2016-08-19 02:55:56 UTC], ["updated_at", 2016-08-19 02:55:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nebo"], ["question_id", 1993], ["correct", false], ["created_at", 2016-08-19 02:55:56 UTC], ["updated_at", 2016-08-19 02:55:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gileade"], ["question_id", 1993], ["correct", false], ["created_at", 2016-08-19 02:55:56 UTC], ["updated_at", 2016-08-19 02:55:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hor"], ["question_id", 1993], ["correct", false], ["created_at", 2016-08-19 02:55:56 UTC], ["updated_at", 2016-08-19 02:55:56 UTC]]  (181.4ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual província ocorreu o 1º milagre de Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual província ocorreu o 1º milagre de Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual província ocorreu o 1º milagre de Jesus?"], ["created_at", 2016-08-19 02:55:57 UTC], ["updated_at", 2016-08-19 02:55:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Galiléia"], ["question_id", 1994], ["correct", true], ["created_at", 2016-08-19 02:55:57 UTC], ["updated_at", 2016-08-19 02:55:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judéia"], ["question_id", 1994], ["correct", false], ["created_at", 2016-08-19 02:55:57 UTC], ["updated_at", 2016-08-19 02:55:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 1994], ["correct", false], ["created_at", 2016-08-19 02:55:57 UTC], ["updated_at", 2016-08-19 02:55:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Iduméia"], ["question_id", 1994], ["correct", false], ["created_at", 2016-08-19 02:55:57 UTC], ["updated_at", 2016-08-19 02:55:57 UTC]]  (206.4ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual região montanhosa foi feita uma aliança entre Jacó e Labão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual região montanhosa foi feita uma aliança entre Jacó e Labão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual região montanhosa foi feita uma aliança entre Jacó e Labão?"], ["created_at", 2016-08-19 02:55:57 UTC], ["updated_at", 2016-08-19 02:55:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gileade"], ["question_id", 1995], ["correct", true], ["created_at", 2016-08-19 02:55:57 UTC], ["updated_at", 2016-08-19 02:55:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gezer"], ["question_id", 1995], ["correct", false], ["created_at", 2016-08-19 02:55:57 UTC], ["updated_at", 2016-08-19 02:55:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Golã"], ["question_id", 1995], ["correct", false], ["created_at", 2016-08-19 02:55:57 UTC], ["updated_at", 2016-08-19 02:55:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ebal"], ["question_id", 1995], ["correct", false], ["created_at", 2016-08-19 02:55:57 UTC], ["updated_at", 2016-08-19 02:55:57 UTC]]  (147.1ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual rio Jesus foi batizado?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual rio Jesus foi batizado?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual rio Jesus foi batizado?"], ["created_at", 2016-08-19 02:55:57 UTC], ["updated_at", 2016-08-19 02:55:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jordão"], ["question_id", 1996], ["correct", true], ["created_at", 2016-08-19 02:55:57 UTC], ["updated_at", 2016-08-19 02:55:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nilo"], ["question_id", 1996], ["correct", false], ["created_at", 2016-08-19 02:55:57 UTC], ["updated_at", 2016-08-19 02:55:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eufrates"], ["question_id", 1996], ["correct", false], ["created_at", 2016-08-19 02:55:57 UTC], ["updated_at", 2016-08-19 02:55:57 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tigre"], ["question_id", 1996], ["correct", false], ["created_at", 2016-08-19 02:55:57 UTC], ["updated_at", 2016-08-19 02:55:57 UTC]]  (188.7ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual rio João Batista batizava as pessoas para que se arrependessem e buscassem o perdão de Deus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual rio João Batista batizava as pessoas para que se arrependessem e buscassem o perdão de Deus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual rio João Batista batizava as pessoas para que se arrependessem e buscassem o perdão de Deus?"], ["created_at", 2016-08-19 02:55:57 UTC], ["updated_at", 2016-08-19 02:55:57 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jordão"], ["question_id", 1997], ["correct", true], ["created_at", 2016-08-19 02:55:57 UTC], ["updated_at", 2016-08-19 02:55:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nilo"], ["question_id", 1997], ["correct", false], ["created_at", 2016-08-19 02:55:57 UTC], ["updated_at", 2016-08-19 02:55:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tigre"], ["question_id", 1997], ["correct", false], ["created_at", 2016-08-19 02:55:57 UTC], ["updated_at", 2016-08-19 02:55:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eufrates"], ["question_id", 1997], ["correct", false], ["created_at", 2016-08-19 02:55:57 UTC], ["updated_at", 2016-08-19 02:55:57 UTC]]  (155.4ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual rio Moisés foi colocado em uma cesta, quando bebê?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual rio Moisés foi colocado em uma cesta, quando bebê?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual rio Moisés foi colocado em uma cesta, quando bebê?"], ["created_at", 2016-08-19 02:55:57 UTC], ["updated_at", 2016-08-19 02:55:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nilo"], ["question_id", 1998], ["correct", true], ["created_at", 2016-08-19 02:55:57 UTC], ["updated_at", 2016-08-19 02:55:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jordão"], ["question_id", 1998], ["correct", false], ["created_at", 2016-08-19 02:55:57 UTC], ["updated_at", 2016-08-19 02:55:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eufrates"], ["question_id", 1998], ["correct", false], ["created_at", 2016-08-19 02:55:57 UTC], ["updated_at", 2016-08-19 02:55:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tigre"], ["question_id", 1998], ["correct", false], ["created_at", 2016-08-19 02:55:57 UTC], ["updated_at", 2016-08-19 02:55:57 UTC]]  (189.4ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual rio o profeta Eliseu orientou Naamã se molhar 7 vezes para se curar da lepra?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em qual rio o profeta Eliseu orientou Naamã se molhar 7 vezes para se curar da lepra?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em qual rio o profeta Eliseu orientou Naamã se molhar 7 vezes para se curar da lepra?"], ["created_at", 2016-08-19 02:55:58 UTC], ["updated_at", 2016-08-19 02:55:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jordão"], ["question_id", 1999], ["correct", true], ["created_at", 2016-08-19 02:55:58 UTC], ["updated_at", 2016-08-19 02:55:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tigre"], ["question_id", 1999], ["correct", false], ["created_at", 2016-08-19 02:55:58 UTC], ["updated_at", 2016-08-19 02:55:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eufrates"], ["question_id", 1999], ["correct", false], ["created_at", 2016-08-19 02:55:58 UTC], ["updated_at", 2016-08-19 02:55:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nilo"], ["question_id", 1999], ["correct", false], ["created_at", 2016-08-19 02:55:58 UTC], ["updated_at", 2016-08-19 02:55:58 UTC]]  (155.4ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em quantas línguas Pôncio Pilatos escreveu na placa que pregou na cruz de Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em quantas línguas Pôncio Pilatos escreveu na placa que pregou na cruz de Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em quantas línguas Pôncio Pilatos escreveu na placa que pregou na cruz de Jesus?"], ["created_at", 2016-08-19 02:55:58 UTC], ["updated_at", 2016-08-19 02:55:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 2000], ["correct", true], ["created_at", 2016-08-19 02:55:58 UTC], ["updated_at", 2016-08-19 02:55:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 2000], ["correct", false], ["created_at", 2016-08-19 02:55:58 UTC], ["updated_at", 2016-08-19 02:55:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 2000], ["correct", false], ["created_at", 2016-08-19 02:55:58 UTC], ["updated_at", 2016-08-19 02:55:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 2000], ["correct", false], ["created_at", 2016-08-19 02:55:58 UTC], ["updated_at", 2016-08-19 02:55:58 UTC]]  (156.3ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em quantas raposas Sansão amarrou fachos incediadas em suas caudas?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em quantas raposas Sansão amarrou fachos incediadas em suas caudas?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em quantas raposas Sansão amarrou fachos incediadas em suas caudas?"], ["created_at", 2016-08-19 02:55:58 UTC], ["updated_at", 2016-08-19 02:55:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "300"], ["question_id", 2001], ["correct", true], ["created_at", 2016-08-19 02:55:58 UTC], ["updated_at", 2016-08-19 02:55:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "30"], ["question_id", 2001], ["correct", false], ["created_at", 2016-08-19 02:55:58 UTC], ["updated_at", 2016-08-19 02:55:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 2001], ["correct", false], ["created_at", 2016-08-19 02:55:58 UTC], ["updated_at", 2016-08-19 02:55:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3000"], ["question_id", 2001], ["correct", false], ["created_at", 2016-08-19 02:55:58 UTC], ["updated_at", 2016-08-19 02:55:58 UTC]]  (157.1ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que ano a Bíblia foi dividida em capítulos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que ano a Bíblia foi dividida em capítulos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em que ano a Bíblia foi dividida em capítulos?"], ["created_at", 2016-08-19 02:55:58 UTC], ["updated_at", 2016-08-19 02:55:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1250"], ["question_id", 2002], ["correct", true], ["created_at", 2016-08-19 02:55:58 UTC], ["updated_at", 2016-08-19 02:55:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "250"], ["question_id", 2002], ["correct", false], ["created_at", 2016-08-19 02:55:58 UTC], ["updated_at", 2016-08-19 02:55:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "550"], ["question_id", 2002], ["correct", false], ["created_at", 2016-08-19 02:55:58 UTC], ["updated_at", 2016-08-19 02:55:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "850"], ["question_id", 2002], ["correct", false], ["created_at", 2016-08-19 02:55:58 UTC], ["updated_at", 2016-08-19 02:55:58 UTC]]  (188.5ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que ano a Bíblia foi dividida em versículos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que ano a Bíblia foi dividida em versículos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em que ano a Bíblia foi dividida em versículos?"], ["created_at", 2016-08-19 02:55:58 UTC], ["updated_at", 2016-08-19 02:55:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1550"], ["question_id", 2003], ["correct", true], ["created_at", 2016-08-19 02:55:58 UTC], ["updated_at", 2016-08-19 02:55:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1250"], ["question_id", 2003], ["correct", false], ["created_at", 2016-08-19 02:55:58 UTC], ["updated_at", 2016-08-19 02:55:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "550"], ["question_id", 2003], ["correct", false], ["created_at", 2016-08-19 02:55:58 UTC], ["updated_at", 2016-08-19 02:55:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "850"], ["question_id", 2003], ["correct", false], ["created_at", 2016-08-19 02:55:58 UTC], ["updated_at", 2016-08-19 02:55:58 UTC]]  (129.4ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que cidade Jesus e seus pais haviam ido para a comemoração da Páscoa dos judeus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que cidade Jesus e seus pais haviam ido para a comemoração da Páscoa dos judeus?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em que cidade Jesus e seus pais haviam ido para a comemoração da Páscoa dos judeus?"], ["created_at", 2016-08-19 02:55:58 UTC], ["updated_at", 2016-08-19 02:55:58 UTC]] SQL (0.5ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 2004], ["correct", true], ["created_at", 2016-08-19 02:55:58 UTC], ["updated_at", 2016-08-19 02:55:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nazaré"], ["question_id", 2004], ["correct", false], ["created_at", 2016-08-19 02:55:58 UTC], ["updated_at", 2016-08-19 02:55:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belém"], ["question_id", 2004], ["correct", false], ["created_at", 2016-08-19 02:55:58 UTC], ["updated_at", 2016-08-19 02:55:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cafarnaum"], ["question_id", 2004], ["correct", false], ["created_at", 2016-08-19 02:55:58 UTC], ["updated_at", 2016-08-19 02:55:58 UTC]]  (131.4ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que condição física estavam Sadraque, Mesaque e Abede-Nego quando eles saíram da fornalha ardente?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que condição física estavam Sadraque, Mesaque e Abede-Nego quando eles saíram da fornalha ardente?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em que condição física estavam Sadraque, Mesaque e Abede-Nego quando eles saíram da fornalha ardente?"], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Fogo Não Fizera Efeito"], ["question_id", 2005], ["correct", true], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eles Cheiravam A Fumaça"], ["question_id", 2005], ["correct", false], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Cabelos Estavam Chamuscados"], ["question_id", 2005], ["correct", false], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sofreram Queimaduras de 3º Grau"], ["question_id", 2005], ["correct", false], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]]  (121.5ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que local Jesus foi crucificado?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que local Jesus foi crucificado?"], ["LIMIT", 1]] SQL (0.7ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em que local Jesus foi crucificado?"], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gólgota"], ["question_id", 2006], ["correct", true], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jardim do Getsêmani"], ["question_id", 2006], ["correct", false], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Monte das Oliveiras"], ["question_id", 2006], ["correct", false], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Às Margens do Mar da Galiléia"], ["question_id", 2006], ["correct", false], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]]  (138.8ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que local Moisés escondeu o egípcio que havia matado?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que local Moisés escondeu o egípcio que havia matado?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em que local Moisés escondeu o egípcio que havia matado?"], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Areia"], ["question_id", 2007], ["correct", true], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Rio Nilo"], ["question_id", 2007], ["correct", false], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Entre Os Juncos"], ["question_id", 2007], ["correct", false], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Próprio Palácio do Faraó"], ["question_id", 2007], ["correct", false], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]]  (113.3ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que local Moisés foi sepultado por Deus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que local Moisés foi sepultado por Deus?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em que local Moisés foi sepultado por Deus?"], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vale"], ["question_id", 2008], ["correct", true], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ribeirão"], ["question_id", 2008], ["correct", false], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Montanha"], ["question_id", 2008], ["correct", false], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deserto"], ["question_id", 2008], ["correct", false], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]]  (123.2ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que monte Moisés viu a Terra Prometida?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que monte Moisés viu a Terra Prometida?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em que monte Moisés viu a Terra Prometida?"], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nebo"], ["question_id", 2009], ["correct", true], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ararat"], ["question_id", 2009], ["correct", false], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sinai"], ["question_id", 2009], ["correct", false], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carmelo"], ["question_id", 2009], ["correct", false], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]]  (149.2ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que Monte morreu Arão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que Monte morreu Arão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em que Monte morreu Arão?"], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hor"], ["question_id", 2010], ["correct", true], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nebo"], ["question_id", 2010], ["correct", false], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ararat"], ["question_id", 2010], ["correct", false], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carmelo"], ["question_id", 2010], ["correct", false], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]]  (153.9ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que ocasião Jesus amaldiçoou uma figueira?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que ocasião Jesus amaldiçoou uma figueira?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em que ocasião Jesus amaldiçoou uma figueira?"], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Dia Seguinte À Sua Entrada Em Jerusalém"], ["question_id", 2011], ["correct", true], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Dia dos Preparativos Para A Última Ceia"], ["question_id", 2011], ["correct", false], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Dia Seguinte Ao Batismo"], ["question_id", 2011], ["correct", false], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Dia Seguinte À Festa de Casamento"], ["question_id", 2011], ["correct", false], ["created_at", 2016-08-19 02:55:59 UTC], ["updated_at", 2016-08-19 02:55:59 UTC]]  (113.4ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que orquestra tocava Jaaziel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que orquestra tocava Jaaziel?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em que orquestra tocava Jaaziel?"], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Orquestra de Davi"], ["question_id", 2012], ["correct", true], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Orquestra de Saul"], ["question_id", 2012], ["correct", false], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Orquestra de Salomão"], ["question_id", 2012], ["correct", false], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Orquestra de Sansão"], ["question_id", 2012], ["correct", false], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]]  (121.7ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que resultou a falsa acusação de que José havia tentado seduzir a esposa de Potifar?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em que resultou a falsa acusação de que José havia tentado seduzir a esposa de Potifar?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em que resultou a falsa acusação de que José havia tentado seduzir a esposa de Potifar?"], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Preso"], ["question_id", 2013], ["correct", true], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Morto"], ["question_id", 2013], ["correct", false], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Extraditado"], ["question_id", 2013], ["correct", false], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Tornado Eunuco"], ["question_id", 2013], ["correct", false], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]]  (140.2ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em resposta aos resmungos do povo israelita pelo fato dos rebeldes terem sido destruídos, o que Deus enviou?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em resposta aos resmungos do povo israelita pelo fato dos rebeldes terem sido destruídos, o que Deus enviou?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em resposta aos resmungos do povo israelita pelo fato dos rebeldes terem sido destruídos, o que Deus enviou?"], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Praga"], ["question_id", 2014], ["correct", true], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Bênção"], ["question_id", 2014], ["correct", false], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Forte Chuva"], ["question_id", 2014], ["correct", false], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Grande Terremoto"], ["question_id", 2014], ["correct", false], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]]  (130.1ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Judas fez após os sumos sacerdotes terem recusado a devolução das 30 moedas de prata?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Judas fez após os sumos sacerdotes terem recusado a devolução das 30 moedas de prata?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Judas fez após os sumos sacerdotes terem recusado a devolução das 30 moedas de prata?"], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jogou-as Para O Interior do Templo"], ["question_id", 2015], ["correct", true], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deu-as À Uma Viúva Pobre"], ["question_id", 2015], ["correct", false], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Atirou-as Para A Multidão Que Passava"], ["question_id", 2015], ["correct", false], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jogou-as Em Um Abismo"], ["question_id", 2015], ["correct", false], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]]  (122.7ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Judas fez depois de trair Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Judas fez depois de trair Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Judas fez depois de trair Jesus?"], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Suicidou-se"], ["question_id", 2016], ["correct", true], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Comprou Uma Casa"], ["question_id", 2016], ["correct", false], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arrependeu-se, e Foi Pregar O Evangelho"], ["question_id", 2016], ["correct", false], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Se Arrependeu"], ["question_id", 2016], ["correct", false], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]]  (122.9ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Lázaro, o mendigo, quis comer da mesa do homem rico?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Lázaro, o mendigo, quis comer da mesa do homem rico?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Lázaro, o mendigo, quis comer da mesa do homem rico?"], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Migalhas"], ["question_id", 2017], ["correct", true], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Milho"], ["question_id", 2017], ["correct", false], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Peixe"], ["question_id", 2017], ["correct", false], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carne"], ["question_id", 2017], ["correct", false], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]]  (106.7ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que levou os Reis Magos até o menino Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que levou os Reis Magos até o menino Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que levou os Reis Magos até o menino Jesus?"], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Estrela"], ["question_id", 2018], ["correct", true], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Lua"], ["question_id", 2018], ["correct", false], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Sol"], ["question_id", 2018], ["correct", false], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Luz"], ["question_id", 2018], ["correct", false], ["created_at", 2016-08-19 02:56:00 UTC], ["updated_at", 2016-08-19 02:56:00 UTC]]  (131.8ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Melquisedeque foi ao mesmo tempo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Melquisedeque foi ao mesmo tempo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Melquisedeque foi ao mesmo tempo?"], ["created_at", 2016-08-19 02:56:01 UTC], ["updated_at", 2016-08-19 02:56:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei e Sacerdote"], ["question_id", 2019], ["correct", true], ["created_at", 2016-08-19 02:56:01 UTC], ["updated_at", 2016-08-19 02:56:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei e Soldado"], ["question_id", 2019], ["correct", false], ["created_at", 2016-08-19 02:56:01 UTC], ["updated_at", 2016-08-19 02:56:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sacerdote e Soldado"], ["question_id", 2019], ["correct", false], ["created_at", 2016-08-19 02:56:01 UTC], ["updated_at", 2016-08-19 02:56:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Profeta e Sacerdote"], ["question_id", 2019], ["correct", false], ["created_at", 2016-08-19 02:56:01 UTC], ["updated_at", 2016-08-19 02:56:01 UTC]]  (188.0ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Moisés e Arão pediram ao Faraó em relação aos israelitas?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Moisés e Arão pediram ao Faraó em relação aos israelitas?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Moisés e Arão pediram ao Faraó em relação aos israelitas?"], ["created_at", 2016-08-19 02:56:01 UTC], ["updated_at", 2016-08-19 02:56:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deixe-os Ir"], ["question_id", 2020], ["correct", true], ["created_at", 2016-08-19 02:56:01 UTC], ["updated_at", 2016-08-19 02:56:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dê-lhes Menos Trabalho"], ["question_id", 2020], ["correct", false], ["created_at", 2016-08-19 02:56:01 UTC], ["updated_at", 2016-08-19 02:56:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dê-lhes Mais Alimento"], ["question_id", 2020], ["correct", false], ["created_at", 2016-08-19 02:56:01 UTC], ["updated_at", 2016-08-19 02:56:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deixem Que Construam Suas Próprias Casas"], ["question_id", 2020], ["correct", false], ["created_at", 2016-08-19 02:56:01 UTC], ["updated_at", 2016-08-19 02:56:01 UTC]]  (189.8ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Moisés encontrou no Monte Horebe?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Moisés encontrou no Monte Horebe?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Moisés encontrou no Monte Horebe?"], ["created_at", 2016-08-19 02:56:01 UTC], ["updated_at", 2016-08-19 02:56:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Arbusto Em Chamas"], ["question_id", 2021], ["correct", true], ["created_at", 2016-08-19 02:56:01 UTC], ["updated_at", 2016-08-19 02:56:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Pilar de Fogo"], ["question_id", 2021], ["correct", false], ["created_at", 2016-08-19 02:56:01 UTC], ["updated_at", 2016-08-19 02:56:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Coluna de Fogo"], ["question_id", 2021], ["correct", false], ["created_at", 2016-08-19 02:56:01 UTC], ["updated_at", 2016-08-19 02:56:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Nuvem de Fogo"], ["question_id", 2021], ["correct", false], ["created_at", 2016-08-19 02:56:01 UTC], ["updated_at", 2016-08-19 02:56:01 UTC]]  (132.6ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Moisés foi instruído a fazer pelo fato de estar em solo sagrado?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Moisés foi instruído a fazer pelo fato de estar em solo sagrado?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Moisés foi instruído a fazer pelo fato de estar em solo sagrado?"], ["created_at", 2016-08-19 02:56:01 UTC], ["updated_at", 2016-08-19 02:56:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tirar As Sandálias"], ["question_id", 2022], ["correct", true], ["created_at", 2016-08-19 02:56:01 UTC], ["updated_at", 2016-08-19 02:56:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fazer Reverência"], ["question_id", 2022], ["correct", false], ["created_at", 2016-08-19 02:56:01 UTC], ["updated_at", 2016-08-19 02:56:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Construiur Um Altar"], ["question_id", 2022], ["correct", false], ["created_at", 2016-08-19 02:56:01 UTC], ["updated_at", 2016-08-19 02:56:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ajoelhar-se e Orar"], ["question_id", 2022], ["correct", false], ["created_at", 2016-08-19 02:56:01 UTC], ["updated_at", 2016-08-19 02:56:01 UTC]]  (189.7ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Moisés recebeu de Deus no Monte Sinai?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Moisés recebeu de Deus no Monte Sinai?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Moisés recebeu de Deus no Monte Sinai?"], ["created_at", 2016-08-19 02:56:01 UTC], ["updated_at", 2016-08-19 02:56:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Tábuas da Lei"], ["question_id", 2023], ["correct", true], ["created_at", 2016-08-19 02:56:01 UTC], ["updated_at", 2016-08-19 02:56:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Nova Capa"], ["question_id", 2023], ["correct", false], ["created_at", 2016-08-19 02:56:01 UTC], ["updated_at", 2016-08-19 02:56:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Transfiguração"], ["question_id", 2023], ["correct", false], ["created_at", 2016-08-19 02:56:01 UTC], ["updated_at", 2016-08-19 02:56:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Arca da Aliança"], ["question_id", 2023], ["correct", false], ["created_at", 2016-08-19 02:56:01 UTC], ["updated_at", 2016-08-19 02:56:01 UTC]]  (130.5ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Moisés viu que estava em chamas, mas que não se consumia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Moisés viu que estava em chamas, mas que não se consumia?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Moisés viu que estava em chamas, mas que não se consumia?"], ["created_at", 2016-08-19 02:56:01 UTC], ["updated_at", 2016-08-19 02:56:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sarça"], ["question_id", 2024], ["correct", true], ["created_at", 2016-08-19 02:56:01 UTC], ["updated_at", 2016-08-19 02:56:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cipreste"], ["question_id", 2024], ["correct", false], ["created_at", 2016-08-19 02:56:01 UTC], ["updated_at", 2016-08-19 02:56:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Altar"], ["question_id", 2024], ["correct", false], ["created_at", 2016-08-19 02:56:01 UTC], ["updated_at", 2016-08-19 02:56:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Água"], ["question_id", 2024], ["correct", false], ["created_at", 2016-08-19 02:56:01 UTC], ["updated_at", 2016-08-19 02:56:01 UTC]]  (140.3ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Nabote possuía em suas terras que o rei Acaz queria comprar?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Nabote possuía em suas terras que o rei Acaz queria comprar?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Nabote possuía em suas terras que o rei Acaz queria comprar?"], ["created_at", 2016-08-19 02:56:02 UTC], ["updated_at", 2016-08-19 02:56:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Vinhedo"], ["question_id", 2025], ["correct", true], ["created_at", 2016-08-19 02:56:02 UTC], ["updated_at", 2016-08-19 02:56:02 UTC]] SQL (0.5ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Bosque"], ["question_id", 2025], ["correct", false], ["created_at", 2016-08-19 02:56:02 UTC], ["updated_at", 2016-08-19 02:56:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Tanque de Peixes"], ["question_id", 2025], ["correct", false], ["created_at", 2016-08-19 02:56:02 UTC], ["updated_at", 2016-08-19 02:56:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Árvore de Cipreste do Líbano"], ["question_id", 2025], ["correct", false], ["created_at", 2016-08-19 02:56:02 UTC], ["updated_at", 2016-08-19 02:56:02 UTC]]  (182.0ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Noé construiu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Noé construiu?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Noé construiu?"], ["created_at", 2016-08-19 02:56:02 UTC], ["updated_at", 2016-08-19 02:56:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arca"], ["question_id", 2026], ["correct", true], ["created_at", 2016-08-19 02:56:02 UTC], ["updated_at", 2016-08-19 02:56:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Templo"], ["question_id", 2026], ["correct", false], ["created_at", 2016-08-19 02:56:02 UTC], ["updated_at", 2016-08-19 02:56:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Torre"], ["question_id", 2026], ["correct", false], ["created_at", 2016-08-19 02:56:02 UTC], ["updated_at", 2016-08-19 02:56:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sinagoga"], ["question_id", 2026], ["correct", false], ["created_at", 2016-08-19 02:56:02 UTC], ["updated_at", 2016-08-19 02:56:02 UTC]]  (182.2ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Noé enviou da arca, que ao retornar trouxe um ramo de oliveira em seu bico?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Noé enviou da arca, que ao retornar trouxe um ramo de oliveira em seu bico?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Noé enviou da arca, que ao retornar trouxe um ramo de oliveira em seu bico?"], ["created_at", 2016-08-19 02:56:02 UTC], ["updated_at", 2016-08-19 02:56:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Pomba"], ["question_id", 2027], ["correct", true], ["created_at", 2016-08-19 02:56:02 UTC], ["updated_at", 2016-08-19 02:56:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Corvo"], ["question_id", 2027], ["correct", false], ["created_at", 2016-08-19 02:56:02 UTC], ["updated_at", 2016-08-19 02:56:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Papagaio"], ["question_id", 2027], ["correct", false], ["created_at", 2016-08-19 02:56:02 UTC], ["updated_at", 2016-08-19 02:56:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Águia"], ["question_id", 2027], ["correct", false], ["created_at", 2016-08-19 02:56:02 UTC], ["updated_at", 2016-08-19 02:56:02 UTC]]  (138.5ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o Faraó deu a José pelo fato de ter interpretado os seus sonhos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o Faraó deu a José pelo fato de ter interpretado os seus sonhos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que o Faraó deu a José pelo fato de ter interpretado os seus sonhos?"], ["created_at", 2016-08-19 02:56:02 UTC], ["updated_at", 2016-08-19 02:56:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Anel"], ["question_id", 2028], ["correct", true], ["created_at", 2016-08-19 02:56:02 UTC], ["updated_at", 2016-08-19 02:56:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Cetro"], ["question_id", 2028], ["correct", false], ["created_at", 2016-08-19 02:56:02 UTC], ["updated_at", 2016-08-19 02:56:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Coroa"], ["question_id", 2028], ["correct", false], ["created_at", 2016-08-19 02:56:02 UTC], ["updated_at", 2016-08-19 02:56:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Filha Em Casamento"], ["question_id", 2028], ["correct", false], ["created_at", 2016-08-19 02:56:02 UTC], ["updated_at", 2016-08-19 02:56:02 UTC]]  (147.3ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o Faraó mandou fazer que fosse feito contra todos os bebês hebreus do sexo masculino que nascessem?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o Faraó mandou fazer que fosse feito contra todos os bebês hebreus do sexo masculino que nascessem?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que o Faraó mandou fazer que fosse feito contra todos os bebês hebreus do sexo masculino que nascessem?"], ["created_at", 2016-08-19 02:56:02 UTC], ["updated_at", 2016-08-19 02:56:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fossem Mortos"], ["question_id", 2029], ["correct", true], ["created_at", 2016-08-19 02:56:02 UTC], ["updated_at", 2016-08-19 02:56:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fossem Vendidos"], ["question_id", 2029], ["correct", false], ["created_at", 2016-08-19 02:56:02 UTC], ["updated_at", 2016-08-19 02:56:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fossem Circuncidados"], ["question_id", 2029], ["correct", false], ["created_at", 2016-08-19 02:56:02 UTC], ["updated_at", 2016-08-19 02:56:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fossem Marcados A Ferro"], ["question_id", 2029], ["correct", false], ["created_at", 2016-08-19 02:56:02 UTC], ["updated_at", 2016-08-19 02:56:02 UTC]]  (147.9ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei babilônico Belsazar viu na parede de diferente?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei babilônico Belsazar viu na parede de diferente?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que o rei babilônico Belsazar viu na parede de diferente?"], ["created_at", 2016-08-19 02:56:02 UTC], ["updated_at", 2016-08-19 02:56:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Escrita"], ["question_id", 2030], ["correct", true], ["created_at", 2016-08-19 02:56:02 UTC], ["updated_at", 2016-08-19 02:56:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Mural"], ["question_id", 2030], ["correct", false], ["created_at", 2016-08-19 02:56:02 UTC], ["updated_at", 2016-08-19 02:56:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Lápide"], ["question_id", 2030], ["correct", false], ["created_at", 2016-08-19 02:56:02 UTC], ["updated_at", 2016-08-19 02:56:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Janela Sem Vidros"], ["question_id", 2030], ["correct", false], ["created_at", 2016-08-19 02:56:02 UTC], ["updated_at", 2016-08-19 02:56:02 UTC]]  (132.0ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Davi desejava construir, mas que foi negado por Deus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Davi desejava construir, mas que foi negado por Deus?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que o rei Davi desejava construir, mas que foi negado por Deus?"], ["created_at", 2016-08-19 02:56:03 UTC], ["updated_at", 2016-08-19 02:56:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Templo de Deus"], ["question_id", 2031], ["correct", true], ["created_at", 2016-08-19 02:56:03 UTC], ["updated_at", 2016-08-19 02:56:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Novo Palácio Real"], ["question_id", 2031], ["correct", false], ["created_at", 2016-08-19 02:56:03 UTC], ["updated_at", 2016-08-19 02:56:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Sinagoga"], ["question_id", 2031], ["correct", false], ["created_at", 2016-08-19 02:56:03 UTC], ["updated_at", 2016-08-19 02:56:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Residência do Profeta Isaias"], ["question_id", 2031], ["correct", false], ["created_at", 2016-08-19 02:56:03 UTC], ["updated_at", 2016-08-19 02:56:03 UTC]]  (231.5ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Ezequias construiu para permitir que a água fosse levada à cidade de Jerusalém?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Ezequias construiu para permitir que a água fosse levada à cidade de Jerusalém?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que o rei Ezequias construiu para permitir que a água fosse levada à cidade de Jerusalém?"], ["created_at", 2016-08-19 02:56:03 UTC], ["updated_at", 2016-08-19 02:56:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Túnel"], ["question_id", 2032], ["correct", true], ["created_at", 2016-08-19 02:56:03 UTC], ["updated_at", 2016-08-19 02:56:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Ponte"], ["question_id", 2032], ["correct", false], ["created_at", 2016-08-19 02:56:03 UTC], ["updated_at", 2016-08-19 02:56:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Rio"], ["question_id", 2032], ["correct", false], ["created_at", 2016-08-19 02:56:03 UTC], ["updated_at", 2016-08-19 02:56:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Cachoeira"], ["question_id", 2032], ["correct", false], ["created_at", 2016-08-19 02:56:03 UTC], ["updated_at", 2016-08-19 02:56:03 UTC]]  (155.5ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Ezequias tolamente mostrou aos babilônios?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Ezequias tolamente mostrou aos babilônios?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que o rei Ezequias tolamente mostrou aos babilônios?"], ["created_at", 2016-08-19 02:56:03 UTC], ["updated_at", 2016-08-19 02:56:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Tesouros do Templo"], ["question_id", 2033], ["correct", true], ["created_at", 2016-08-19 02:56:03 UTC], ["updated_at", 2016-08-19 02:56:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Ídolos de Ouro"], ["question_id", 2033], ["correct", false], ["created_at", 2016-08-19 02:56:03 UTC], ["updated_at", 2016-08-19 02:56:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Suas Esposas"], ["question_id", 2033], ["correct", false], ["created_at", 2016-08-19 02:56:03 UTC], ["updated_at", 2016-08-19 02:56:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Planos de Conquista"], ["question_id", 2033], ["correct", false], ["created_at", 2016-08-19 02:56:03 UTC], ["updated_at", 2016-08-19 02:56:03 UTC]]  (147.1ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Jeroboão pediu à sua esposa que fizesse quando esta fosse encontrar-se com o profeta Aías?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Jeroboão pediu à sua esposa que fizesse quando esta fosse encontrar-se com o profeta Aías?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que o rei Jeroboão pediu à sua esposa que fizesse quando esta fosse encontrar-se com o profeta Aías?"], ["created_at", 2016-08-19 02:56:03 UTC], ["updated_at", 2016-08-19 02:56:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Se Disfarçasse"], ["question_id", 2034], ["correct", true], ["created_at", 2016-08-19 02:56:03 UTC], ["updated_at", 2016-08-19 02:56:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Se Humilhasse"], ["question_id", 2034], ["correct", false], ["created_at", 2016-08-19 02:56:03 UTC], ["updated_at", 2016-08-19 02:56:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Se Desculpasse"], ["question_id", 2034], ["correct", false], ["created_at", 2016-08-19 02:56:03 UTC], ["updated_at", 2016-08-19 02:56:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Se Arrependesse"], ["question_id", 2034], ["correct", false], ["created_at", 2016-08-19 02:56:03 UTC], ["updated_at", 2016-08-19 02:56:03 UTC]]  (121.4ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Manassés fez no Templo de Jerusalém quando reinou?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Manassés fez no Templo de Jerusalém quando reinou?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que o rei Manassés fez no Templo de Jerusalém quando reinou?"], ["created_at", 2016-08-19 02:56:03 UTC], ["updated_at", 2016-08-19 02:56:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Erigiu Uma Estátua da Deusa Pagã Asera"], ["question_id", 2035], ["correct", true], ["created_at", 2016-08-19 02:56:03 UTC], ["updated_at", 2016-08-19 02:56:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fortificou As Paredes do Templo"], ["question_id", 2035], ["correct", false], ["created_at", 2016-08-19 02:56:03 UTC], ["updated_at", 2016-08-19 02:56:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Destruiu O Templo e Construiu Um Novo"], ["question_id", 2035], ["correct", false], ["created_at", 2016-08-19 02:56:03 UTC], ["updated_at", 2016-08-19 02:56:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Revestiu Todo O Interior do Templo Com Ouro Puro"], ["question_id", 2035], ["correct", false], ["created_at", 2016-08-19 02:56:03 UTC], ["updated_at", 2016-08-19 02:56:03 UTC]]  (130.5ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Nabucodonosor mandou construir para que todos se prostrassem e adorassem?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o rei Nabucodonosor mandou construir para que todos se prostrassem e adorassem?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que o rei Nabucodonosor mandou construir para que todos se prostrassem e adorassem?"], ["created_at", 2016-08-19 02:56:03 UTC], ["updated_at", 2016-08-19 02:56:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Enorme Estátua de Si Mesmo"], ["question_id", 2036], ["correct", true], ["created_at", 2016-08-19 02:56:03 UTC], ["updated_at", 2016-08-19 02:56:03 UTC]] SQL (0.6ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Enorme Estátua de Serpente"], ["question_id", 2036], ["correct", false], ["created_at", 2016-08-19 02:56:03 UTC], ["updated_at", 2016-08-19 02:56:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Enorme Estátua de Barro Com Ferro"], ["question_id", 2036], ["correct", false], ["created_at", 2016-08-19 02:56:03 UTC], ["updated_at", 2016-08-19 02:56:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Enorme Estátua Com Fezes de Animais"], ["question_id", 2036], ["correct", false], ["created_at", 2016-08-19 02:56:03 UTC], ["updated_at", 2016-08-19 02:56:03 UTC]]  (163.6ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em sua rebelião, de quem eram os 250 seguidores que morreram consumidos pelo fogo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em sua rebelião, de quem eram os 250 seguidores que morreram consumidos pelo fogo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em sua rebelião, de quem eram os 250 seguidores que morreram consumidos pelo fogo?"], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Corá"], ["question_id", 2037], ["correct", true], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 2037], ["correct", false], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Labão"], ["question_id", 2037], ["correct", false], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dã"], ["question_id", 2037], ["correct", false], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]]  (173.6ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em sua viagem à Roma, onde naufragou o navio em que Paulo viajava?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em sua viagem à Roma, onde naufragou o navio em que Paulo viajava?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em sua viagem à Roma, onde naufragou o navio em que Paulo viajava?"], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Malta"], ["question_id", 2038], ["correct", true], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sicília"], ["question_id", 2038], ["correct", false], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Grécia"], ["question_id", 2038], ["correct", false], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Patmos"], ["question_id", 2038], ["correct", false], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]]  (129.6ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em toda a Bíblia, além de Jesus quem mais jejuou 40 dias e 40 noites?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em toda a Bíblia, além de Jesus quem mais jejuou 40 dias e 40 noites?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em toda a Bíblia, além de Jesus quem mais jejuou 40 dias e 40 noites?"], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias e Moisés"], ["question_id", 2039], ["correct", true], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mais Ninguém"], ["question_id", 2039], ["correct", false], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 2039], ["correct", false], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 2039], ["correct", false], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]]  (131.8ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em um de seus casamentos, ao casar-se com a filha do Faraó, Salomão fez aliança com o reino:"], ["LIMIT", 1]]  (0.3ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em um de seus casamentos, ao casar-se com a filha do Faraó, Salomão fez aliança com o reino:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em um de seus casamentos, ao casar-se com a filha do Faraó, Salomão fez aliança com o reino:"], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egípcio"], ["question_id", 2040], ["correct", true], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Persa"], ["question_id", 2040], ["correct", false], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônica"], ["question_id", 2040], ["correct", false], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Macedônico"], ["question_id", 2040], ["correct", false], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]]  (132.5ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em uma das ocasiões em que Pedro orava no telhado, que visão ele recebeu de Deus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Em uma das ocasiões em que Pedro orava no telhado, que visão ele recebeu de Deus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Em uma das ocasiões em que Pedro orava no telhado, que visão ele recebeu de Deus?"], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Lençol Cheio de Animais"], ["question_id", 2041], ["correct", true], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Céu"], ["question_id", 2041], ["correct", false], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Futuro de Jerusalém"], ["question_id", 2041], ["correct", false], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Da Volta de Cristo"], ["question_id", 2041], ["correct", false], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]]  (130.2ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Enquanto estava na casa de Simão, o leproso, o que uma mulher fez com um vaso de alabastro cheio de bálsamo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Enquanto estava na casa de Simão, o leproso, o que uma mulher fez com um vaso de alabastro cheio de bálsamo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Enquanto estava na casa de Simão, o leproso, o que uma mulher fez com um vaso de alabastro cheio de bálsamo?"], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Derramou O Bálsamo Sobre Jesus"], ["question_id", 2042], ["correct", true], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ela Usou Para Preparar Os Alimentos"], ["question_id", 2042], ["correct", false], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Colocou-o Na Frente de Jesus"], ["question_id", 2042], ["correct", false], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ofereceu O Alabastro Para Ser Dado Aos Pobres"], ["question_id", 2042], ["correct", false], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]]  (130.3ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Enquanto esteve na cidade de Jope, Pedro esteve hospedado na casa de:"], ["LIMIT", 1]]  (0.4ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Enquanto esteve na cidade de Jope, Pedro esteve hospedado na casa de:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Enquanto esteve na cidade de Jope, Pedro esteve hospedado na casa de:"], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Simão, O Curtidor"], ["question_id", 2043], ["correct", true], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Simeão, O Alfaiate"], ["question_id", 2043], ["correct", false], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel, O Carpinteiro"], ["question_id", 2043], ["correct", false], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salazar, O Pescador"], ["question_id", 2043], ["correct", false], ["created_at", 2016-08-19 02:56:04 UTC], ["updated_at", 2016-08-19 02:56:04 UTC]]  (130.3ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Enquanto Sansão estava com uma prostituta, o que o povo da cidade de Gaza estava fazendo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Enquanto Sansão estava com uma prostituta, o que o povo da cidade de Gaza estava fazendo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Enquanto Sansão estava com uma prostituta, o que o povo da cidade de Gaza estava fazendo?"], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Conspirando Para Matá-lo"], ["question_id", 2044], ["correct", true], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dormindo"], ["question_id", 2044], ["correct", false], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Agrupando-se Para Louvar"], ["question_id", 2044], ["correct", false], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fugindo Pois Souberam da Presença de Sansão"], ["question_id", 2044], ["correct", false], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]]  (146.7ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Entre as alternativas abaixo, o que não havia dentro da Arca da Aliança?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Entre as alternativas abaixo, o que não havia dentro da Arca da Aliança?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Entre as alternativas abaixo, o que não havia dentro da Arca da Aliança?"], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Cajado de Moisés"], ["question_id", 2045], ["correct", true], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Tábuas da Lei de Deus"], ["question_id", 2045], ["correct", false], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vaso Contendo Maná"], ["question_id", 2045], ["correct", false], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vara de Arão"], ["question_id", 2045], ["correct", false], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]]  (130.4ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Entre os filhos de Davi, qual deles não nasceu durante seu reinado em Hebrom?"], ["LIMIT", 1]]  (0.3ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Entre os filhos de Davi, qual deles não nasceu durante seu reinado em Hebrom?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Entre os filhos de Davi, qual deles não nasceu durante seu reinado em Hebrom?"], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2046], ["correct", true], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 2046], ["correct", false], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sefatias"], ["question_id", 2046], ["correct", false], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Itreão"], ["question_id", 2046], ["correct", false], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]]  (114.2ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Entre os irmãos Moisés, Arão e Míriã, qual dentre eles era o mais velho?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Entre os irmãos Moisés, Arão e Míriã, qual dentre eles era o mais velho?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Entre os irmãos Moisés, Arão e Míriã, qual dentre eles era o mais velho?"], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 2047], ["correct", true], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 2047], ["correct", false], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 2047], ["correct", false], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhum, Pois Eram Trigêmeos"], ["question_id", 2047], ["correct", false], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]]  (105.4ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Esaú vendeu seu direito de filho mais velho em troca de quê?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Esaú vendeu seu direito de filho mais velho em troca de quê?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Esaú vendeu seu direito de filho mais velho em troca de quê?"], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ensopado"], ["question_id", 2048], ["correct", true], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "24 Kg de Ouro"], ["question_id", 2048], ["correct", false], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pão"], ["question_id", 2048], ["correct", false], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "24 Camêlos"], ["question_id", 2048], ["correct", false], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]]  (131.0ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Esaú, filho de Isaque e Rebeca, era:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Esaú, filho de Isaque e Rebeca, era:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Esaú, filho de Isaque e Rebeca, era:"], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ruivo"], ["question_id", 2049], ["correct", true], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Loiro"], ["question_id", 2049], ["correct", false], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moreno"], ["question_id", 2049], ["correct", false], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todas As Alternativas Estão Incorretas"], ["question_id", 2049], ["correct", false], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]]  (132.0ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ester casou-se com o rei persa:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ester casou-se com o rei persa:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Ester casou-se com o rei persa:"], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assuero"], ["question_id", 2050], ["correct", true], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 2050], ["correct", false], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 2050], ["correct", false], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiro"], ["question_id", 2050], ["correct", false], ["created_at", 2016-08-19 02:56:05 UTC], ["updated_at", 2016-08-19 02:56:05 UTC]]  (132.4ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ester, após ter casado com o rei Assuero, passou a ser a rainha do império:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ester, após ter casado com o rei Assuero, passou a ser a rainha do império:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Ester, após ter casado com o rei Assuero, passou a ser a rainha do império:"], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Persa"], ["question_id", 2051], ["correct", true], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônico"], ["question_id", 2051], ["correct", false], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenício"], ["question_id", 2051], ["correct", false], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egípcio"], ["question_id", 2051], ["correct", false], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]]  (130.2ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Foi levado para o cativeiro da Babilônia:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Foi levado para o cativeiro da Babilônia:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Foi levado para o cativeiro da Babilônia:"], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todas As Afirmativas Estão Corretas"], ["question_id", 2052], ["correct", true], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 2052], ["correct", false], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sadraque"], ["question_id", 2052], ["correct", false], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]] SQL (0.5ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mesaque"], ["question_id", 2052], ["correct", false], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]]  (130.6ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Gamaliel foi professor do apóstolo:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Gamaliel foi professor do apóstolo:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Gamaliel foi professor do apóstolo:"], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 2053], ["correct", true], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lucas"], ["question_id", 2053], ["correct", false], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]] SQL (0.4ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 2053], ["correct", false], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filipe"], ["question_id", 2053], ["correct", false], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]]  (132.6ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Há quantas promessas na Bíblia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Há quantas promessas na Bíblia?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Há quantas promessas na Bíblia?"], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3573"], ["question_id", 2054], ["correct", true], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1831"], ["question_id", 2054], ["correct", false], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2612"], ["question_id", 2054], ["correct", false], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5399"], ["question_id", 2054], ["correct", false], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]]  (132.8ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Herodes Agripa mandou matar os apóstolos pois sentia que o cristianismo era uma ameaça à sua religião:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Herodes Agripa mandou matar os apóstolos pois sentia que o cristianismo era uma ameaça à sua religião:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Herodes Agripa mandou matar os apóstolos pois sentia que o cristianismo era uma ameaça à sua religião:"], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judaica"], ["question_id", 2055], ["correct", true], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pagã"], ["question_id", 2055], ["correct", false], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenícia"], ["question_id", 2055], ["correct", false], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Romana"], ["question_id", 2055], ["correct", false], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]]  (130.0ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Herodes decretou que todos os meninos fossem mortos com idade inferior a:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Herodes decretou que todos os meninos fossem mortos com idade inferior a:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Herodes decretou que todos os meninos fossem mortos com idade inferior a:"], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 Anos"], ["question_id", 2056], ["correct", true], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Ano"], ["question_id", 2056], ["correct", false], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]] SQL (0.5ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "6 Meses"], ["question_id", 2056], ["correct", false], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5 Anos"], ["question_id", 2056], ["correct", false], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]]  (132.1ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Herodias pediu a cabeça de quem a Herodes?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Herodias pediu a cabeça de quem a Herodes?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Herodias pediu a cabeça de quem a Herodes?"], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 2057], ["correct", true], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saulo"], ["question_id", 2057], ["correct", false], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José de Arimatéia"], ["question_id", 2057], ["correct", false], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 2057], ["correct", false], ["created_at", 2016-08-19 02:56:06 UTC], ["updated_at", 2016-08-19 02:56:06 UTC]]  (113.7ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Imediatamente antes da coroação do rei Salomão, quem pretendia governar o trono real a ser deixado por Davi?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Imediatamente antes da coroação do rei Salomão, quem pretendia governar o trono real a ser deixado por Davi?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Imediatamente antes da coroação do rei Salomão, quem pretendia governar o trono real a ser deixado por Davi?"], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adonias"], ["question_id", 2058], ["correct", true], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Natã"], ["question_id", 2058], ["correct", false], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samua"], ["question_id", 2058], ["correct", false], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joabe"], ["question_id", 2058], ["correct", false], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]]  (130.3ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Incluindo Jesus, quantas pessoas jantaram com Ele na última Páscoa?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Incluindo Jesus, quantas pessoas jantaram com Ele na última Páscoa?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Incluindo Jesus, quantas pessoas jantaram com Ele na última Páscoa?"], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "13"], ["question_id", 2059], ["correct", true], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12"], ["question_id", 2059], ["correct", false], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "11"], ["question_id", 2059], ["correct", false], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10"], ["question_id", 2059], ["correct", false], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]]  (131.6ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Incluindo Jesus, quantos homens foram crucificados com Ele?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Incluindo Jesus, quantos homens foram crucificados com Ele?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Incluindo Jesus, quantos homens foram crucificados com Ele?"], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 2060], ["correct", true], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 2060], ["correct", false], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 2060], ["correct", false], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Foi Crucificado Sozinho"], ["question_id", 2060], ["correct", false], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]]  (105.2ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Isabel foi mãe de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Isabel foi mãe de:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Isabel foi mãe de:"], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 2061], ["correct", true], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas Iscariotes"], ["question_id", 2061], ["correct", false], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mateus"], ["question_id", 2061], ["correct", false], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 2061], ["correct", false], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]]  (114.2ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Isaque recebe um beijo enganoso de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Isaque recebe um beijo enganoso de:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Isaque recebe um beijo enganoso de:"], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 2062], ["correct", true], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 2062], ["correct", false], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 2062], ["correct", false], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 2062], ["correct", false], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]]  (122.9ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ismael e seu irmão Isaque nasceram com uma diferença de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ismael e seu irmão Isaque nasceram com uma diferença de:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Ismael e seu irmão Isaque nasceram com uma diferença de:"], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4 Anos"], ["question_id", 2063], ["correct", true], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 Anos"], ["question_id", 2063], ["correct", false], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Ano"], ["question_id", 2063], ["correct", false], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhum Ano, Pois Eram Gêmeos"], ["question_id", 2063], ["correct", false], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]]  (190.2ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Israel era composta por quantas tribos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Israel era composta por quantas tribos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Israel era composta por quantas tribos?"], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12"], ["question_id", 2064], ["correct", true], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "11"], ["question_id", 2064], ["correct", false], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10"], ["question_id", 2064], ["correct", false], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "13"], ["question_id", 2064], ["correct", false], ["created_at", 2016-08-19 02:56:07 UTC], ["updated_at", 2016-08-19 02:56:07 UTC]]  (238.4ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jabal foi o pai dos que:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jabal foi o pai dos que:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jabal foi o pai dos que:"], ["created_at", 2016-08-19 02:56:08 UTC], ["updated_at", 2016-08-19 02:56:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Habitam Em Tendas"], ["question_id", 2065], ["correct", true], ["created_at", 2016-08-19 02:56:08 UTC], ["updated_at", 2016-08-19 02:56:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tocam Harpa"], ["question_id", 2065], ["correct", false], ["created_at", 2016-08-19 02:56:08 UTC], ["updated_at", 2016-08-19 02:56:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tocam Flauta"], ["question_id", 2065], ["correct", false], ["created_at", 2016-08-19 02:56:08 UTC], ["updated_at", 2016-08-19 02:56:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Possuem Carneiros"], ["question_id", 2065], ["correct", false], ["created_at", 2016-08-19 02:56:08 UTC], ["updated_at", 2016-08-19 02:56:08 UTC]]  (146.8ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jacó tinha um irmão gêmeo, que se chamava:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jacó tinha um irmão gêmeo, que se chamava:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jacó tinha um irmão gêmeo, que se chamava:"], ["created_at", 2016-08-19 02:56:08 UTC], ["updated_at", 2016-08-19 02:56:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 2066], ["correct", true], ["created_at", 2016-08-19 02:56:08 UTC], ["updated_at", 2016-08-19 02:56:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 2066], ["correct", false], ["created_at", 2016-08-19 02:56:08 UTC], ["updated_at", 2016-08-19 02:56:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 2066], ["correct", false], ["created_at", 2016-08-19 02:56:08 UTC], ["updated_at", 2016-08-19 02:56:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 2066], ["correct", false], ["created_at", 2016-08-19 02:56:08 UTC], ["updated_at", 2016-08-19 02:56:08 UTC]]  (122.3ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jacó, irmão gêmeo de Esaú, nasceu segurando:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jacó, irmão gêmeo de Esaú, nasceu segurando:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jacó, irmão gêmeo de Esaú, nasceu segurando:"], ["created_at", 2016-08-19 02:56:08 UTC], ["updated_at", 2016-08-19 02:56:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Calcanhar de Esaú"], ["question_id", 2067], ["correct", true], ["created_at", 2016-08-19 02:56:08 UTC], ["updated_at", 2016-08-19 02:56:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Orelha"], ["question_id", 2067], ["correct", false], ["created_at", 2016-08-19 02:56:08 UTC], ["updated_at", 2016-08-19 02:56:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Cordão Umbilical"], ["question_id", 2067], ["correct", false], ["created_at", 2016-08-19 02:56:08 UTC], ["updated_at", 2016-08-19 02:56:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Cabelos de Esaú"], ["question_id", 2067], ["correct", false], ["created_at", 2016-08-19 02:56:08 UTC], ["updated_at", 2016-08-19 02:56:08 UTC]]  (188.0ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jedidias era também conhecido por:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jedidias era também conhecido por:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jedidias era também conhecido por:"], ["created_at", 2016-08-19 02:56:08 UTC], ["updated_at", 2016-08-19 02:56:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2068], ["correct", true], ["created_at", 2016-08-19 02:56:08 UTC], ["updated_at", 2016-08-19 02:56:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 2068], ["correct", false], ["created_at", 2016-08-19 02:56:08 UTC], ["updated_at", 2016-08-19 02:56:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 2068], ["correct", false], ["created_at", 2016-08-19 02:56:08 UTC], ["updated_at", 2016-08-19 02:56:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 2068], ["correct", false], ["created_at", 2016-08-19 02:56:08 UTC], ["updated_at", 2016-08-19 02:56:08 UTC]]  (146.8ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jemima era esposa de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jemima era esposa de:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jemima era esposa de:"], ["created_at", 2016-08-19 02:56:08 UTC], ["updated_at", 2016-08-19 02:56:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jó"], ["question_id", 2069], ["correct", true], ["created_at", 2016-08-19 02:56:08 UTC], ["updated_at", 2016-08-19 02:56:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ló"], ["question_id", 2069], ["correct", false], ["created_at", 2016-08-19 02:56:08 UTC], ["updated_at", 2016-08-19 02:56:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 2069], ["correct", false], ["created_at", 2016-08-19 02:56:08 UTC], ["updated_at", 2016-08-19 02:56:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 2069], ["correct", false], ["created_at", 2016-08-19 02:56:08 UTC], ["updated_at", 2016-08-19 02:56:08 UTC]]  (141.1ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jericó foi a primeira cidade conquistada pelos israelitas, quando estes eram comandados por:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jericó foi a primeira cidade conquistada pelos israelitas, quando estes eram comandados por:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jericó foi a primeira cidade conquistada pelos israelitas, quando estes eram comandados por:"], ["created_at", 2016-08-19 02:56:08 UTC], ["updated_at", 2016-08-19 02:56:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 2070], ["correct", true], ["created_at", 2016-08-19 02:56:08 UTC], ["updated_at", 2016-08-19 02:56:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 2070], ["correct", false], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2070], ["correct", false], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 2070], ["correct", false], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]]  (197.2ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jeroboão governou as tribos de Israel do:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jeroboão governou as tribos de Israel do:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jeroboão governou as tribos de Israel do:"], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Norte"], ["question_id", 2071], ["correct", true], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sul"], ["question_id", 2071], ["correct", false], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Leste"], ["question_id", 2071], ["correct", false], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oeste"], ["question_id", 2071], ["correct", false], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]]  (130.1ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus chamou André para ser discípulo quando este estava:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus chamou André para ser discípulo quando este estava:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jesus chamou André para ser discípulo quando este estava:"], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pescando"], ["question_id", 2072], ["correct", true], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caçando"], ["question_id", 2072], ["correct", false], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Almoçando"], ["question_id", 2072], ["correct", false], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dormindo"], ["question_id", 2072], ["correct", false], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]]  (105.2ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus chamou Pedro para ser discípulo quando este estava:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus chamou Pedro para ser discípulo quando este estava:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jesus chamou Pedro para ser discípulo quando este estava:"], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pescando"], ["question_id", 2073], ["correct", true], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dormindo"], ["question_id", 2073], ["correct", false], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Almoçando"], ["question_id", 2073], ["correct", false], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caçando"], ["question_id", 2073], ["correct", false], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]]  (105.7ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus curou 10 homens que sofriam de qual enfermidade?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus curou 10 homens que sofriam de qual enfermidade?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jesus curou 10 homens que sofriam de qual enfermidade?"], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lepra"], ["question_id", 2074], ["correct", true], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Epilepsia"], ["question_id", 2074], ["correct", false], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Loucura"], ["question_id", 2074], ["correct", false], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cegueira"], ["question_id", 2074], ["correct", false], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]]  (122.5ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus disse aos cambistas e àqueles que estavam vendendo que sua casa seria chamada de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus disse aos cambistas e àqueles que estavam vendendo que sua casa seria chamada de:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jesus disse aos cambistas e àqueles que estavam vendendo que sua casa seria chamada de:"], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Casa de Oração"], ["question_id", 2075], ["correct", true], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Casa de Caridade"], ["question_id", 2075], ["correct", false], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Casa de Compreensão"], ["question_id", 2075], ["correct", false], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Casa do Pai"], ["question_id", 2075], ["correct", false], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]]  (105.7ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus disse que após o sal ter perdido o seu gosto, o mesmo passaria a ser:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus disse que após o sal ter perdido o seu gosto, o mesmo passaria a ser:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jesus disse que após o sal ter perdido o seu gosto, o mesmo passaria a ser:"], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Inútil"], ["question_id", 2076], ["correct", true], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amargo"], ["question_id", 2076], ["correct", false], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adocicado"], ["question_id", 2076], ["correct", false], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Embolorado"], ["question_id", 2076], ["correct", false], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]]  (114.0ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus disse que não havia vindo para chamar os justos, mas para chamar quem?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus disse que não havia vindo para chamar os justos, mas para chamar quem?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jesus disse que não havia vindo para chamar os justos, mas para chamar quem?"], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Pecadores"], ["question_id", 2077], ["correct", true], ["created_at", 2016-08-19 02:56:09 UTC], ["updated_at", 2016-08-19 02:56:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Pobres"], ["question_id", 2077], ["correct", false], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Cristãos"], ["question_id", 2077], ["correct", false], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Miseráveis"], ["question_id", 2077], ["correct", false], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]]  (118.7ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus e João Batista eram, entre si:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus e João Batista eram, entre si:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jesus e João Batista eram, entre si:"], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Primos"], ["question_id", 2078], ["correct", true], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vizinhos"], ["question_id", 2078], ["correct", false], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tios"], ["question_id", 2078], ["correct", false], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmãos"], ["question_id", 2078], ["correct", false], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]]  (139.3ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus ensinou de que haveremos de prestar contas no dia do juízo de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus ensinou de que haveremos de prestar contas no dia do juízo de:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jesus ensinou de que haveremos de prestar contas no dia do juízo de:"], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cada Palavra Fútil Que Dissermos"], ["question_id", 2079], ["correct", true], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "De Cada Alimento Imundo Que Ingerirmos"], ["question_id", 2079], ["correct", false], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Das Nossas Posses Materiais"], ["question_id", 2079], ["correct", false], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Da Forma Egoista Como Gastamos O Dinheiro"], ["question_id", 2079], ["correct", false], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]]  (149.1ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus ensinou que deveríamos amar aos nossos:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus ensinou que deveríamos amar aos nossos:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jesus ensinou que deveríamos amar aos nossos:"], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Inimigos"], ["question_id", 2080], ["correct", true], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amigos"], ["question_id", 2080], ["correct", false], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Parentes"], ["question_id", 2080], ["correct", false], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vizinhos"], ["question_id", 2080], ["correct", false], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]]  (132.2ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus expulsou os mercadores que haviam no:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus expulsou os mercadores que haviam no:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jesus expulsou os mercadores que haviam no:"], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Templo"], ["question_id", 2081], ["correct", true], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mercado Municipal"], ["question_id", 2081], ["correct", false], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sinédrio"], ["question_id", 2081], ["correct", false], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Monte das Oliveiras"], ["question_id", 2081], ["correct", false], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]]  (115.5ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus foi batizado por quem?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus foi batizado por quem?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jesus foi batizado por quem?"], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 2082], ["correct", true], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 2082], ["correct", false], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 2082], ["correct", false], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 2082], ["correct", false], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]]  (115.8ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus foi traído por Judas Iscariotes através de um:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus foi traído por Judas Iscariotes através de um:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jesus foi traído por Judas Iscariotes através de um:"], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Beijo"], ["question_id", 2083], ["correct", true], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraço"], ["question_id", 2083], ["correct", false], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tapa No Rosto"], ["question_id", 2083], ["correct", false], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Chute Na Perna"], ["question_id", 2083], ["correct", false], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]]  (132.0ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus nos diz para não arremessar pérolas aos:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus nos diz para não arremessar pérolas aos:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jesus nos diz para não arremessar pérolas aos:"], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porcos"], ["question_id", 2084], ["correct", true], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cavalos"], ["question_id", 2084], ["correct", false], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gentios"], ["question_id", 2084], ["correct", false], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pecadores"], ["question_id", 2084], ["correct", false], ["created_at", 2016-08-19 02:56:10 UTC], ["updated_at", 2016-08-19 02:56:10 UTC]]  (130.7ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus nos ensinou que devemos orar:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jesus nos ensinou que devemos orar:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jesus nos ensinou que devemos orar:"], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Aqueles Que Nos Perseguem"], ["question_id", 2085], ["correct", true], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Aqueles Que Sofrem"], ["question_id", 2085], ["correct", false], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Aqueles Que São Abastados de Vida"], ["question_id", 2085], ["correct", false], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Aqueles Que São Miseráveis de Coração"], ["question_id", 2085], ["correct", false], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]]  (125.2ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jó residia na terra de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jó residia na terra de:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jó residia na terra de:"], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uz"], ["question_id", 2086], ["correct", true], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ur"], ["question_id", 2086], ["correct", false], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caldeus"], ["question_id", 2086], ["correct", false], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nínive"], ["question_id", 2086], ["correct", false], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]]  (131.0ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jonas pregou arrependimento durante 40 dias aos cidadãos de qual cidade?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jonas pregou arrependimento durante 40 dias aos cidadãos de qual cidade?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jonas pregou arrependimento durante 40 dias aos cidadãos de qual cidade?"], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nínive"], ["question_id", 2087], ["correct", true], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônia"], ["question_id", 2087], ["correct", false], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sodoma"], ["question_id", 2087], ["correct", false], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gomorra"], ["question_id", 2087], ["correct", false], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]]  (122.9ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jônatas matou um gigante filisteu que tinha quantos dedos nas mãos e nos pés?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jônatas matou um gigante filisteu que tinha quantos dedos nas mãos e nos pés?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jônatas matou um gigante filisteu que tinha quantos dedos nas mãos e nos pés?"], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12"], ["question_id", 2088], ["correct", true], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10"], ["question_id", 2088], ["correct", false], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "8"], ["question_id", 2088], ["correct", false], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "14"], ["question_id", 2088], ["correct", false], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]]  (140.3ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jônatas matou um gigante filisteu, assim como Davi. Qual era o parentesco entre eles?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jônatas matou um gigante filisteu, assim como Davi. Qual era o parentesco entre eles?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jônatas matou um gigante filisteu, assim como Davi. Qual era o parentesco entre eles?"], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tio e Sobrinho"], ["question_id", 2089], ["correct", true], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pai e Filho"], ["question_id", 2089], ["correct", false], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmãos"], ["question_id", 2089], ["correct", false], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Eram Parentes"], ["question_id", 2089], ["correct", false], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]]  (123.7ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jônatas teve um filho com o nome de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jônatas teve um filho com o nome de:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jônatas teve um filho com o nome de:"], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mefibosete"], ["question_id", 2090], ["correct", true], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ananias"], ["question_id", 2090], ["correct", false], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 2090], ["correct", false], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Melquisedeque"], ["question_id", 2090], ["correct", false], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]]  (147.9ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Joquebede tem como filhos:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Joquebede tem como filhos:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Joquebede tem como filhos:"], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todas As Alternativas Corretas"], ["question_id", 2091], ["correct", true], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 2091], ["correct", false], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 2091], ["correct", false], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 2091], ["correct", false], ["created_at", 2016-08-19 02:56:11 UTC], ["updated_at", 2016-08-19 02:56:11 UTC]]  (190.6ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José foi trabalhar como escravo na casa de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José foi trabalhar como escravo na casa de:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "José foi trabalhar como escravo na casa de:"], ["created_at", 2016-08-19 02:56:12 UTC], ["updated_at", 2016-08-19 02:56:12 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Potifar"], ["question_id", 2092], ["correct", true], ["created_at", 2016-08-19 02:56:12 UTC], ["updated_at", 2016-08-19 02:56:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assuero"], ["question_id", 2092], ["correct", false], ["created_at", 2016-08-19 02:56:12 UTC], ["updated_at", 2016-08-19 02:56:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acaz"], ["question_id", 2092], ["correct", false], ["created_at", 2016-08-19 02:56:12 UTC], ["updated_at", 2016-08-19 02:56:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Faraó"], ["question_id", 2092], ["correct", false], ["created_at", 2016-08-19 02:56:12 UTC], ["updated_at", 2016-08-19 02:56:12 UTC]]  (173.1ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José foi vendido como escravo no Egito. Qual foi o valor pago por ele?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José foi vendido como escravo no Egito. Qual foi o valor pago por ele?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "José foi vendido como escravo no Egito. Qual foi o valor pago por ele?"], ["created_at", 2016-08-19 02:56:12 UTC], ["updated_at", 2016-08-19 02:56:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "20 Barras de Prata"], ["question_id", 2093], ["correct", true], ["created_at", 2016-08-19 02:56:12 UTC], ["updated_at", 2016-08-19 02:56:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "40 Kg de Ouro"], ["question_id", 2093], ["correct", false], ["created_at", 2016-08-19 02:56:12 UTC], ["updated_at", 2016-08-19 02:56:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5 Camêlos"], ["question_id", 2093], ["correct", false], ["created_at", 2016-08-19 02:56:12 UTC], ["updated_at", 2016-08-19 02:56:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "300 Dias de Serviços Forçados"], ["question_id", 2093], ["correct", false], ["created_at", 2016-08-19 02:56:12 UTC], ["updated_at", 2016-08-19 02:56:12 UTC]]  (131.4ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José foi vendido como escravo, ao preço de 20 barras de prata, para:\n1,"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José foi vendido como escravo, ao preço de 20 barras de prata, para:\n1,"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "José foi vendido como escravo, ao preço de 20 barras de prata, para:\n1,"], ["created_at", 2016-08-19 02:56:12 UTC], ["updated_at", 2016-08-19 02:56:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Egito"], ["question_id", 2094], ["correct", true], ["created_at", 2016-08-19 02:56:12 UTC], ["updated_at", 2016-08-19 02:56:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Pérsia"], ["question_id", 2094], ["correct", false], ["created_at", 2016-08-19 02:56:12 UTC], ["updated_at", 2016-08-19 02:56:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Babilônia"], ["question_id", 2094], ["correct", false], ["created_at", 2016-08-19 02:56:12 UTC], ["updated_at", 2016-08-19 02:56:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Síria"], ["question_id", 2094], ["correct", false], ["created_at", 2016-08-19 02:56:12 UTC], ["updated_at", 2016-08-19 02:56:12 UTC]]  (197.3ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José teve um sonho onde viu curvando-se para ele:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José teve um sonho onde viu curvando-se para ele:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "José teve um sonho onde viu curvando-se para ele:"], ["created_at", 2016-08-19 02:56:12 UTC], ["updated_at", 2016-08-19 02:56:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Sol, A Lua e As Estrelas"], ["question_id", 2095], ["correct", true], ["created_at", 2016-08-19 02:56:12 UTC], ["updated_at", 2016-08-19 02:56:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Árvores Ciprestes do Líbano"], ["question_id", 2095], ["correct", false], ["created_at", 2016-08-19 02:56:12 UTC], ["updated_at", 2016-08-19 02:56:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Arco-íris"], ["question_id", 2095], ["correct", false], ["created_at", 2016-08-19 02:56:12 UTC], ["updated_at", 2016-08-19 02:56:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Estátua do Bezerro de Ouro"], ["question_id", 2095], ["correct", false], ["created_at", 2016-08-19 02:56:12 UTC], ["updated_at", 2016-08-19 02:56:12 UTC]]  (281.4ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José teve um sonho, onde viu:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José teve um sonho, onde viu:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "José teve um sonho, onde viu:"], ["created_at", 2016-08-19 02:56:12 UTC], ["updated_at", 2016-08-19 02:56:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Sol, A Lua e As Estrelas Se Curvando Para Ele"], ["question_id", 2096], ["correct", true], ["created_at", 2016-08-19 02:56:12 UTC], ["updated_at", 2016-08-19 02:56:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Estátua de Si Mesmo de Ouro, Prata e Bronze"], ["question_id", 2096], ["correct", false], ["created_at", 2016-08-19 02:56:12 UTC], ["updated_at", 2016-08-19 02:56:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 Vacas Magras Devorando 10 Vacas Gordas"], ["question_id", 2096], ["correct", false], ["created_at", 2016-08-19 02:56:13 UTC], ["updated_at", 2016-08-19 02:56:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Rio Nilo Tornando-se Em Sangue"], ["question_id", 2096], ["correct", false], ["created_at", 2016-08-19 02:56:13 UTC], ["updated_at", 2016-08-19 02:56:13 UTC]]  (131.6ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José, filho de Jacó, tornou-se um grande líder da nação:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "José, filho de Jacó, tornou-se um grande líder da nação:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "José, filho de Jacó, tornou-se um grande líder da nação:"], ["created_at", 2016-08-19 02:56:13 UTC], ["updated_at", 2016-08-19 02:56:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egípcia"], ["question_id", 2097], ["correct", true], ["created_at", 2016-08-19 02:56:13 UTC], ["updated_at", 2016-08-19 02:56:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenícia"], ["question_id", 2097], ["correct", false], ["created_at", 2016-08-19 02:56:13 UTC], ["updated_at", 2016-08-19 02:56:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hebréia"], ["question_id", 2097], ["correct", false], ["created_at", 2016-08-19 02:56:13 UTC], ["updated_at", 2016-08-19 02:56:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Grega"], ["question_id", 2097], ["correct", false], ["created_at", 2016-08-19 02:56:13 UTC], ["updated_at", 2016-08-19 02:56:13 UTC]]  (132.9ms) commit transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jubal foi o pai dos que tocam:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Jubal foi o pai dos que tocam:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Jubal foi o pai dos que tocam:"], ["created_at", 2016-08-19 02:56:13 UTC], ["updated_at", 2016-08-19 02:56:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Harpa"], ["question_id", 2098], ["correct", true], ["created_at", 2016-08-19 02:56:13 UTC], ["updated_at", 2016-08-19 02:56:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cítara"], ["question_id", 2098], ["correct", false], ["created_at", 2016-08-19 02:56:13 UTC], ["updated_at", 2016-08-19 02:56:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tamborim"], ["question_id", 2098], ["correct", false], ["created_at", 2016-08-19 02:56:13 UTC], ["updated_at", 2016-08-19 02:56:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zabumba"], ["question_id", 2098], ["correct", false], ["created_at", 2016-08-19 02:56:13 UTC], ["updated_at", 2016-08-19 02:56:13 UTC]]  (133.4ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Lídia foi a primeira mulher:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Lídia foi a primeira mulher:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Lídia foi a primeira mulher:"], ["created_at", 2016-08-19 02:56:13 UTC], ["updated_at", 2016-08-19 02:56:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Ser Convertida Na Europa"], ["question_id", 2099], ["correct", true], ["created_at", 2016-08-19 02:56:13 UTC], ["updated_at", 2016-08-19 02:56:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Casar-se Com Herodes, O Grande"], ["question_id", 2099], ["correct", false], ["created_at", 2016-08-19 02:56:13 UTC], ["updated_at", 2016-08-19 02:56:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Sentenciar A Morte de Jesus"], ["question_id", 2099], ["correct", false], ["created_at", 2016-08-19 02:56:13 UTC], ["updated_at", 2016-08-19 02:56:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Tocar Em Jesus Após Sua Ressurreição"], ["question_id", 2099], ["correct", false], ["created_at", 2016-08-19 02:56:13 UTC], ["updated_at", 2016-08-19 02:56:13 UTC]]  (115.8ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ló, sobrinho de Abraão, habitava em qual cidade?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ló, sobrinho de Abraão, habitava em qual cidade?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Ló, sobrinho de Abraão, habitava em qual cidade?"], ["created_at", 2016-08-19 02:56:13 UTC], ["updated_at", 2016-08-19 02:56:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sodoma"], ["question_id", 2100], ["correct", true], ["created_at", 2016-08-19 02:56:13 UTC], ["updated_at", 2016-08-19 02:56:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gomorra"], ["question_id", 2100], ["correct", false], ["created_at", 2016-08-19 02:56:13 UTC], ["updated_at", 2016-08-19 02:56:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nínive"], ["question_id", 2100], ["correct", false], ["created_at", 2016-08-19 02:56:13 UTC], ["updated_at", 2016-08-19 02:56:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 2100], ["correct", false], ["created_at", 2016-08-19 02:56:13 UTC], ["updated_at", 2016-08-19 02:56:13 UTC]]  (256.3ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Lucas, autor do Livro de Lucas, foi:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Lucas, autor do Livro de Lucas, foi:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Lucas, autor do Livro de Lucas, foi:"], ["created_at", 2016-08-19 02:56:13 UTC], ["updated_at", 2016-08-19 02:56:13 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escritor"], ["question_id", 2101], ["correct", true], ["created_at", 2016-08-19 02:56:13 UTC], ["updated_at", 2016-08-19 02:56:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apóstolo de Cristo e Escritor"], ["question_id", 2101], ["correct", false], ["created_at", 2016-08-19 02:56:13 UTC], ["updated_at", 2016-08-19 02:56:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apóstolo de Cristo"], ["question_id", 2101], ["correct", false], ["created_at", 2016-08-19 02:56:13 UTC], ["updated_at", 2016-08-19 02:56:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nem Apóstolo de Cristo e Nem Escritor"], ["question_id", 2101], ["correct", false], ["created_at", 2016-08-19 02:56:13 UTC], ["updated_at", 2016-08-19 02:56:13 UTC]]  (155.9ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Marcos, autor do Livro de Marcos, foi:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Marcos, autor do Livro de Marcos, foi:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Marcos, autor do Livro de Marcos, foi:"], ["created_at", 2016-08-19 02:56:13 UTC], ["updated_at", 2016-08-19 02:56:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escritor"], ["question_id", 2102], ["correct", true], ["created_at", 2016-08-19 02:56:13 UTC], ["updated_at", 2016-08-19 02:56:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escritor e Apóstolo de Cristo"], ["question_id", 2102], ["correct", false], ["created_at", 2016-08-19 02:56:13 UTC], ["updated_at", 2016-08-19 02:56:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas Apóstolo de Cristo"], ["question_id", 2102], ["correct", false], ["created_at", 2016-08-19 02:56:13 UTC], ["updated_at", 2016-08-19 02:56:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Foi Nenm Apóstolo e Nem Escritor"], ["question_id", 2102], ["correct", false], ["created_at", 2016-08-19 02:56:13 UTC], ["updated_at", 2016-08-19 02:56:13 UTC]]  (147.7ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Maria, mãe de Jesus, e Isabel, mãe de João Batista, eram entre si:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Maria, mãe de Jesus, e Isabel, mãe de João Batista, eram entre si:"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Maria, mãe de Jesus, e Isabel, mãe de João Batista, eram entre si:"], ["created_at", 2016-08-19 02:56:14 UTC], ["updated_at", 2016-08-19 02:56:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Primas"], ["question_id", 2103], ["correct", true], ["created_at", 2016-08-19 02:56:14 UTC], ["updated_at", 2016-08-19 02:56:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vizinhas"], ["question_id", 2103], ["correct", false], ["created_at", 2016-08-19 02:56:14 UTC], ["updated_at", 2016-08-19 02:56:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tias"], ["question_id", 2103], ["correct", false], ["created_at", 2016-08-19 02:56:14 UTC], ["updated_at", 2016-08-19 02:56:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmãs"], ["question_id", 2103], ["correct", false], ["created_at", 2016-08-19 02:56:14 UTC], ["updated_at", 2016-08-19 02:56:14 UTC]]  (163.9ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Martinho Lutero foi o primeiro tradutor da Bíblia para a língua:\n1,"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Martinho Lutero foi o primeiro tradutor da Bíblia para a língua:\n1,"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Martinho Lutero foi o primeiro tradutor da Bíblia para a língua:\n1,"], ["created_at", 2016-08-19 02:56:14 UTC], ["updated_at", 2016-08-19 02:56:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Alemã"], ["question_id", 2104], ["correct", true], ["created_at", 2016-08-19 02:56:14 UTC], ["updated_at", 2016-08-19 02:56:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Italiana"], ["question_id", 2104], ["correct", false], ["created_at", 2016-08-19 02:56:14 UTC], ["updated_at", 2016-08-19 02:56:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Espanhola"], ["question_id", 2104], ["correct", false], ["created_at", 2016-08-19 02:56:14 UTC], ["updated_at", 2016-08-19 02:56:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Inglesa"], ["question_id", 2104], ["correct", false], ["created_at", 2016-08-19 02:56:14 UTC], ["updated_at", 2016-08-19 02:56:14 UTC]]  (138.9ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Matusalém, o homem mais idoso da Bíblia, teve como neto:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Matusalém, o homem mais idoso da Bíblia, teve como neto:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Matusalém, o homem mais idoso da Bíblia, teve como neto:"], ["created_at", 2016-08-19 02:56:14 UTC], ["updated_at", 2016-08-19 02:56:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noé"], ["question_id", 2105], ["correct", true], ["created_at", 2016-08-19 02:56:14 UTC], ["updated_at", 2016-08-19 02:56:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 2105], ["correct", false], ["created_at", 2016-08-19 02:56:14 UTC], ["updated_at", 2016-08-19 02:56:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 2105], ["correct", false], ["created_at", 2016-08-19 02:56:14 UTC], ["updated_at", 2016-08-19 02:56:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abel"], ["question_id", 2105], ["correct", false], ["created_at", 2016-08-19 02:56:14 UTC], ["updated_at", 2016-08-19 02:56:14 UTC]]  (115.0ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Matusalém, o homem mais velho da Bíblia, morreu antes de seu pai (Enoque). Essa afirmação é:\n1,"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Matusalém, o homem mais velho da Bíblia, morreu antes de seu pai (Enoque). Essa afirmação é:\n1,"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Matusalém, o homem mais velho da Bíblia, morreu antes de seu pai (Enoque). Essa afirmação é:\n1,"], ["created_at", 2016-08-19 02:56:14 UTC], ["updated_at", 2016-08-19 02:56:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Verdadeira"], ["question_id", 2106], ["correct", true], ["created_at", 2016-08-19 02:56:14 UTC], ["updated_at", 2016-08-19 02:56:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Falsa"], ["question_id", 2106], ["correct", false], ["created_at", 2016-08-19 02:56:14 UTC], ["updated_at", 2016-08-19 02:56:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Não Morreu"], ["question_id", 2106], ["correct", false], ["created_at", 2016-08-19 02:56:14 UTC], ["updated_at", 2016-08-19 02:56:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Morreu, Mas Foi Transladado Ao Céu"], ["question_id", 2106], ["correct", false], ["created_at", 2016-08-19 02:56:14 UTC], ["updated_at", 2016-08-19 02:56:14 UTC]]  (190.9ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Mesaque, Sadraque e Abede-Nego foram jogados em uma fornalha ardente pelo rei da:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Mesaque, Sadraque e Abede-Nego foram jogados em uma fornalha ardente pelo rei da:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Mesaque, Sadraque e Abede-Nego foram jogados em uma fornalha ardente pelo rei da:"], ["created_at", 2016-08-19 02:56:14 UTC], ["updated_at", 2016-08-19 02:56:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônia"], ["question_id", 2107], ["correct", true], ["created_at", 2016-08-19 02:56:14 UTC], ["updated_at", 2016-08-19 02:56:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenícia"], ["question_id", 2107], ["correct", false], ["created_at", 2016-08-19 02:56:14 UTC], ["updated_at", 2016-08-19 02:56:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Grécia"], ["question_id", 2107], ["correct", false], ["created_at", 2016-08-19 02:56:14 UTC], ["updated_at", 2016-08-19 02:56:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Medo-pérsia"], ["question_id", 2107], ["correct", false], ["created_at", 2016-08-19 02:56:14 UTC], ["updated_at", 2016-08-19 02:56:14 UTC]]  (239.5ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Miriã ficou enciumada por qual motivo?\n1,"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Miriã ficou enciumada por qual motivo?\n1,"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Miriã ficou enciumada por qual motivo?\n1,"], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Êxito de Seu Irmão Mais Novo"], ["question_id", 2108], ["correct", true], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Seu Marido Tinha Uma Concubina"], ["question_id", 2108], ["correct", false], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Jamais Ter Casado A Quem Amava"], ["question_id", 2108], ["correct", false], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Não Poder Ter Filhos"], ["question_id", 2108], ["correct", false], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]]  (140.7ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na 1ª vez que Noé soltou uma pomba, o que ela trouxe em seu bico?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na 1ª vez que Noé soltou uma pomba, o que ela trouxe em seu bico?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na 1ª vez que Noé soltou uma pomba, o que ela trouxe em seu bico?"], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nada"], ["question_id", 2109], ["correct", true], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Ramo de Oliveira"], ["question_id", 2109], ["correct", false], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Graveto de Figueira"], ["question_id", 2109], ["correct", false], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Peixe"], ["question_id", 2109], ["correct", false], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]]  (140.9ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na 3ª vez que Noé soltou uma pomba, o que ela trouxe?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na 3ª vez que Noé soltou uma pomba, o que ela trouxe?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na 3ª vez que Noé soltou uma pomba, o que ela trouxe?"], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ela Não Retornou À Arca"], ["question_id", 2110], ["correct", true], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Ramo de Oliveira"], ["question_id", 2110], ["correct", false], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Peixe"], ["question_id", 2110], ["correct", false], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Veio Acompanhada Por Uma Outra Pomba"], ["question_id", 2110], ["correct", false], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]]  (131.0ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na 5ª praga enviada por Deus ao Egito, quem foi poupado de uma pestilência muito grave?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na 5ª praga enviada por Deus ao Egito, quem foi poupado de uma pestilência muito grave?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na 5ª praga enviada por Deus ao Egito, quem foi poupado de uma pestilência muito grave?"], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Animais dos Israelitas"], ["question_id", 2111], ["correct", true], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Animais dos Egípcios"], ["question_id", 2111], ["correct", false], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Filhos dos Israelitas"], ["question_id", 2111], ["correct", false], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Animais dos Egípcios"], ["question_id", 2111], ["correct", false], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]]  (115.1ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na 7ª praga que se abateu sobre os egípcios, além das pedras de fogo Deus enviou também:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na 7ª praga que se abateu sobre os egípcios, além das pedras de fogo Deus enviou também:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na 7ª praga que se abateu sobre os egípcios, além das pedras de fogo Deus enviou também:"], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trovões"], ["question_id", 2112], ["correct", true], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vento"], ["question_id", 2112], ["correct", false], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Neve"], ["question_id", 2112], ["correct", false], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Chuva"], ["question_id", 2112], ["correct", false], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]]  (131.7ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na biblioteca da Universidade de Gottingen, Alemanha, existe uma Bíblia que foi escrita em 470 folhas de:"], ["LIMIT", 1]]  (0.2ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na biblioteca da Universidade de Gottingen, Alemanha, existe uma Bíblia que foi escrita em 470 folhas de:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na biblioteca da Universidade de Gottingen, Alemanha, existe uma Bíblia que foi escrita em 470 folhas de:"], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Palmeira"], ["question_id", 2113], ["correct", true], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Coqueiro"], ["question_id", 2113], ["correct", false], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acácia"], ["question_id", 2113], ["correct", false], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Limoeiro"], ["question_id", 2113], ["correct", false], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]]  (173.2ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na biblioteca da Universidade de Gottingen, Alemanha, existe uma Bíblia que foi escrita em quantas folhas de palmeira?\n1,"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na biblioteca da Universidade de Gottingen, Alemanha, existe uma Bíblia que foi escrita em quantas folhas de palmeira?\n1,"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na biblioteca da Universidade de Gottingen, Alemanha, existe uma Bíblia que foi escrita em quantas folhas de palmeira?\n1,"], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "470"], ["question_id", 2114], ["correct", true], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1930"], ["question_id", 2114], ["correct", false], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "940"], ["question_id", 2114], ["correct", false], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "251"], ["question_id", 2114], ["correct", false], ["created_at", 2016-08-19 02:56:15 UTC], ["updated_at", 2016-08-19 02:56:15 UTC]]  (165.3ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na casa de quem Jesus teve seus pés ungidos por uma mulher?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na casa de quem Jesus teve seus pés ungidos por uma mulher?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na casa de quem Jesus teve seus pés ungidos por uma mulher?"], ["created_at", 2016-08-19 02:56:16 UTC], ["updated_at", 2016-08-19 02:56:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Simão"], ["question_id", 2115], ["correct", true], ["created_at", 2016-08-19 02:56:16 UTC], ["updated_at", 2016-08-19 02:56:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 2115], ["correct", false], ["created_at", 2016-08-19 02:56:16 UTC], ["updated_at", 2016-08-19 02:56:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marta"], ["question_id", 2115], ["correct", false], ["created_at", 2016-08-19 02:56:16 UTC], ["updated_at", 2016-08-19 02:56:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zaqueu"], ["question_id", 2115], ["correct", false], ["created_at", 2016-08-19 02:56:16 UTC], ["updated_at", 2016-08-19 02:56:16 UTC]]  (123.4ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na cidade de Jericó, em que local Raabe escondeu os espias enviados por Josué?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na cidade de Jericó, em que local Raabe escondeu os espias enviados por Josué?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na cidade de Jericó, em que local Raabe escondeu os espias enviados por Josué?"], ["created_at", 2016-08-19 02:56:16 UTC], ["updated_at", 2016-08-19 02:56:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Entre As Canas do Linho"], ["question_id", 2116], ["correct", true], ["created_at", 2016-08-19 02:56:16 UTC], ["updated_at", 2016-08-19 02:56:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Um Vasto Campo"], ["question_id", 2116], ["correct", false], ["created_at", 2016-08-19 02:56:16 UTC], ["updated_at", 2016-08-19 02:56:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Um Estábulo"], ["question_id", 2116], ["correct", false], ["created_at", 2016-08-19 02:56:16 UTC], ["updated_at", 2016-08-19 02:56:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dentro do Palácio Real"], ["question_id", 2116], ["correct", false], ["created_at", 2016-08-19 02:56:16 UTC], ["updated_at", 2016-08-19 02:56:16 UTC]]  (141.2ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na cidade de Nazaré morou:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na cidade de Nazaré morou:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na cidade de Nazaré morou:"], ["created_at", 2016-08-19 02:56:16 UTC], ["updated_at", 2016-08-19 02:56:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria, Mãe de Jesus"], ["question_id", 2117], ["correct", true], ["created_at", 2016-08-19 02:56:16 UTC], ["updated_at", 2016-08-19 02:56:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Agripa"], ["question_id", 2117], ["correct", false], ["created_at", 2016-08-19 02:56:16 UTC], ["updated_at", 2016-08-19 02:56:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodias"], ["question_id", 2117], ["correct", false], ["created_at", 2016-08-19 02:56:16 UTC], ["updated_at", 2016-08-19 02:56:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 2117], ["correct", false], ["created_at", 2016-08-19 02:56:16 UTC], ["updated_at", 2016-08-19 02:56:16 UTC]]  (139.7ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na entrada triunfal de Jesus em Jerusalém, foram estendidos ramos de:\n1,"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na entrada triunfal de Jesus em Jerusalém, foram estendidos ramos de:\n1,"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na entrada triunfal de Jesus em Jerusalém, foram estendidos ramos de:\n1,"], ["created_at", 2016-08-19 02:56:16 UTC], ["updated_at", 2016-08-19 02:56:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Palmeira"], ["question_id", 2118], ["correct", true], ["created_at", 2016-08-19 02:56:16 UTC], ["updated_at", 2016-08-19 02:56:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cipreste"], ["question_id", 2118], ["correct", false], ["created_at", 2016-08-19 02:56:16 UTC], ["updated_at", 2016-08-19 02:56:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cedro do Líbano"], ["question_id", 2118], ["correct", false], ["created_at", 2016-08-19 02:56:16 UTC], ["updated_at", 2016-08-19 02:56:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zimbro"], ["question_id", 2118], ["correct", false], ["created_at", 2016-08-19 02:56:16 UTC], ["updated_at", 2016-08-19 02:56:16 UTC]]  (133.2ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época de Moisés, o povo israelita era tido no Egito como um povo:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época de Moisés, o povo israelita era tido no Egito como um povo:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na época de Moisés, o povo israelita era tido no Egito como um povo:"], ["created_at", 2016-08-19 02:56:16 UTC], ["updated_at", 2016-08-19 02:56:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escravo"], ["question_id", 2119], ["correct", true], ["created_at", 2016-08-19 02:56:16 UTC], ["updated_at", 2016-08-19 02:56:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Convidado"], ["question_id", 2119], ["correct", false], ["created_at", 2016-08-19 02:56:16 UTC], ["updated_at", 2016-08-19 02:56:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amigo"], ["question_id", 2119], ["correct", false], ["created_at", 2016-08-19 02:56:16 UTC], ["updated_at", 2016-08-19 02:56:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Intruso"], ["question_id", 2119], ["correct", false], ["created_at", 2016-08-19 02:56:16 UTC], ["updated_at", 2016-08-19 02:56:16 UTC]]  (156.8ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época de Moisés, quantas pragas ocorreram no Egito pelo fato do Faraó não autorizar a saída do povo hebreu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época de Moisés, quantas pragas ocorreram no Egito pelo fato do Faraó não autorizar a saída do povo hebreu?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na época de Moisés, quantas pragas ocorreram no Egito pelo fato do Faraó não autorizar a saída do povo hebreu?"], ["created_at", 2016-08-19 02:56:16 UTC], ["updated_at", 2016-08-19 02:56:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10"], ["question_id", 2120], ["correct", true], ["created_at", 2016-08-19 02:56:16 UTC], ["updated_at", 2016-08-19 02:56:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "8"], ["question_id", 2120], ["correct", false], ["created_at", 2016-08-19 02:56:16 UTC], ["updated_at", 2016-08-19 02:56:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 2120], ["correct", false], ["created_at", 2016-08-19 02:56:16 UTC], ["updated_at", 2016-08-19 02:56:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 2120], ["correct", false], ["created_at", 2016-08-19 02:56:16 UTC], ["updated_at", 2016-08-19 02:56:16 UTC]]  (149.1ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época do povo israelita, Babilônia estava situada às margens do rio:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época do povo israelita, Babilônia estava situada às margens do rio:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na época do povo israelita, Babilônia estava situada às margens do rio:"], ["created_at", 2016-08-19 02:56:17 UTC], ["updated_at", 2016-08-19 02:56:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eufrates"], ["question_id", 2121], ["correct", true], ["created_at", 2016-08-19 02:56:17 UTC], ["updated_at", 2016-08-19 02:56:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jordão"], ["question_id", 2121], ["correct", false], ["created_at", 2016-08-19 02:56:17 UTC], ["updated_at", 2016-08-19 02:56:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nilo"], ["question_id", 2121], ["correct", false], ["created_at", 2016-08-19 02:56:17 UTC], ["updated_at", 2016-08-19 02:56:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Manessés"], ["question_id", 2121], ["correct", false], ["created_at", 2016-08-19 02:56:17 UTC], ["updated_at", 2016-08-19 02:56:17 UTC]]  (214.2ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época em que Jesus viveu, a cidade de Nazaré estava localizada em qual região?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época em que Jesus viveu, a cidade de Nazaré estava localizada em qual região?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na época em que Jesus viveu, a cidade de Nazaré estava localizada em qual região?"], ["created_at", 2016-08-19 02:56:17 UTC], ["updated_at", 2016-08-19 02:56:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Galiléia"], ["question_id", 2122], ["correct", true], ["created_at", 2016-08-19 02:56:17 UTC], ["updated_at", 2016-08-19 02:56:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judéia"], ["question_id", 2122], ["correct", false], ["created_at", 2016-08-19 02:56:17 UTC], ["updated_at", 2016-08-19 02:56:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 2122], ["correct", false], ["created_at", 2016-08-19 02:56:17 UTC], ["updated_at", 2016-08-19 02:56:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenícia"], ["question_id", 2122], ["correct", false], ["created_at", 2016-08-19 02:56:17 UTC], ["updated_at", 2016-08-19 02:56:17 UTC]]  (173.9ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época em que Jesus viveu, a Judéia era governada por:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época em que Jesus viveu, a Judéia era governada por:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na época em que Jesus viveu, a Judéia era governada por:"], ["created_at", 2016-08-19 02:56:17 UTC], ["updated_at", 2016-08-19 02:56:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 2123], ["correct", true], ["created_at", 2016-08-19 02:56:17 UTC], ["updated_at", 2016-08-19 02:56:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes, O Grande"], ["question_id", 2123], ["correct", false], ["created_at", 2016-08-19 02:56:17 UTC], ["updated_at", 2016-08-19 02:56:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "César Augusto"], ["question_id", 2123], ["correct", false], ["created_at", 2016-08-19 02:56:17 UTC], ["updated_at", 2016-08-19 02:56:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2123], ["correct", false], ["created_at", 2016-08-19 02:56:17 UTC], ["updated_at", 2016-08-19 02:56:17 UTC]]  (138.8ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época em que Jesus viveu, em qual província localizava-se a cidade de Caná?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época em que Jesus viveu, em qual província localizava-se a cidade de Caná?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na época em que Jesus viveu, em qual província localizava-se a cidade de Caná?"], ["created_at", 2016-08-19 02:56:17 UTC], ["updated_at", 2016-08-19 02:56:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Galiléia"], ["question_id", 2124], ["correct", true], ["created_at", 2016-08-19 02:56:17 UTC], ["updated_at", 2016-08-19 02:56:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judéia"], ["question_id", 2124], ["correct", false], ["created_at", 2016-08-19 02:56:17 UTC], ["updated_at", 2016-08-19 02:56:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 2124], ["correct", false], ["created_at", 2016-08-19 02:56:17 UTC], ["updated_at", 2016-08-19 02:56:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Iduméia"], ["question_id", 2124], ["correct", false], ["created_at", 2016-08-19 02:56:17 UTC], ["updated_at", 2016-08-19 02:56:17 UTC]]  (322.4ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época que Jesus viveu, a estrada que ligava Jerusalém a Jericó era conhecida por haver muitos:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na época que Jesus viveu, a estrada que ligava Jerusalém a Jericó era conhecida por haver muitos:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na época que Jesus viveu, a estrada que ligava Jerusalém a Jericó era conhecida por haver muitos:"], ["created_at", 2016-08-19 02:56:17 UTC], ["updated_at", 2016-08-19 02:56:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assaltantes"], ["question_id", 2125], ["correct", true], ["created_at", 2016-08-19 02:56:17 UTC], ["updated_at", 2016-08-19 02:56:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Buracos"], ["question_id", 2125], ["correct", false], ["created_at", 2016-08-19 02:56:17 UTC], ["updated_at", 2016-08-19 02:56:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pastores de Ovelhas"], ["question_id", 2125], ["correct", false], ["created_at", 2016-08-19 02:56:17 UTC], ["updated_at", 2016-08-19 02:56:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Precipícios"], ["question_id", 2125], ["correct", false], ["created_at", 2016-08-19 02:56:17 UTC], ["updated_at", 2016-08-19 02:56:17 UTC]]  (114.1ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na estrada para Emaús, 2 discípulos de Jesus encontraram-se com:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na estrada para Emaús, 2 discípulos de Jesus encontraram-se com:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na estrada para Emaús, 2 discípulos de Jesus encontraram-se com:"], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 2126], ["correct", true], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria, Mãe de Jesus"], ["question_id", 2126], ["correct", false], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Soldados Romanos"], ["question_id", 2126], ["correct", false], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria Madalena"], ["question_id", 2126], ["correct", false], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]]  (133.1ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na estrada para qual cidade Jesus apareceu para 2 de Seus discípulos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na estrada para qual cidade Jesus apareceu para 2 de Seus discípulos?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na estrada para qual cidade Jesus apareceu para 2 de Seus discípulos?"], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Emaús"], ["question_id", 2127], ["correct", true], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cafarnaum"], ["question_id", 2127], ["correct", false], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 2127], ["correct", false], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 2127], ["correct", false], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]]  (140.0ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na igreja primitiva, quem deveria ungir os enfermos com óleo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na igreja primitiva, quem deveria ungir os enfermos com óleo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na igreja primitiva, quem deveria ungir os enfermos com óleo?"], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Anciãos"], ["question_id", 2128], ["correct", true], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Sacerdotes"], ["question_id", 2128], ["correct", false], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas O Sumo-sacerdote"], ["question_id", 2128], ["correct", false], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Escribas"], ["question_id", 2128], ["correct", false], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]]  (138.9ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na parábola do Bom Samaritano, na estrada para qual cidade um homem havia sido surrado?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na parábola do Bom Samaritano, na estrada para qual cidade um homem havia sido surrado?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na parábola do Bom Samaritano, na estrada para qual cidade um homem havia sido surrado?"], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jericó"], ["question_id", 2129], ["correct", true], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belém"], ["question_id", 2129], ["correct", false], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Damasco"], ["question_id", 2129], ["correct", false], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 2129], ["correct", false], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]]  (131.0ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na parábola do Filho Pródigo, o que fez o filho pródigo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na parábola do Filho Pródigo, o que fez o filho pródigo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na parábola do Filho Pródigo, o que fez o filho pródigo?"], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deixou Sua Casa Após Ter Pego Sua Parte Na Herança"], ["question_id", 2130], ["correct", true], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Casou Com Sua Mãe"], ["question_id", 2130], ["correct", false], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matou Seu Irmão Abel"], ["question_id", 2130], ["correct", false], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deu Uma Surra Em Seu Pai"], ["question_id", 2130], ["correct", false], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]]  (133.1ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na parábola do Filho Pródigo, o que o filho pródigo fez ao se arrepender?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na parábola do Filho Pródigo, o que o filho pródigo fez ao se arrepender?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na parábola do Filho Pródigo, o que o filho pródigo fez ao se arrepender?"], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Voltou Para Casa do Pai"], ["question_id", 2131], ["correct", true], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Suicidou-se"], ["question_id", 2131], ["correct", false], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Se Tornou Governador do Egito"], ["question_id", 2131], ["correct", false], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Promovido A Governador da Babilônia"], ["question_id", 2131], ["correct", false], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]]  (131.0ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na parábola do Filho Pródigo, quantos filhos tinha o homem?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na parábola do Filho Pródigo, quantos filhos tinha o homem?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na parábola do Filho Pródigo, quantos filhos tinha o homem?"], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 2132], ["correct", true], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 2132], ["correct", false], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 2132], ["correct", false], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 2132], ["correct", false], ["created_at", 2016-08-19 02:56:18 UTC], ["updated_at", 2016-08-19 02:56:18 UTC]]  (113.9ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na presença de quem Jesus foi culpado de blasfêmia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na presença de quem Jesus foi culpado de blasfêmia?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na presença de quem Jesus foi culpado de blasfêmia?"], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sumo Sacerdote e dos Anciãos"], ["question_id", 2133], ["correct", true], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Soldados Romanos"], ["question_id", 2133], ["correct", false], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 2133], ["correct", false], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes"], ["question_id", 2133], ["correct", false], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]]  (114.9ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na região montanhosa de Gileade, Jacó fez uma aliança com:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na região montanhosa de Gileade, Jacó fez uma aliança com:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na região montanhosa de Gileade, Jacó fez uma aliança com:"], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Labão"], ["question_id", 2134], ["correct", true], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 2134], ["correct", false], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 2134], ["correct", false], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nicolau"], ["question_id", 2134], ["correct", false], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]]  (132.3ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na região montanhosa de Gileade, Labão fez uma aliança com:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na região montanhosa de Gileade, Labão fez uma aliança com:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na região montanhosa de Gileade, Labão fez uma aliança com:"], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 2135], ["correct", true], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 2135], ["correct", false], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 2135], ["correct", false], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 2135], ["correct", false], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]]  (174.8ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na semana da criação, em que dia Deus descansou?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na semana da criação, em que dia Deus descansou?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na semana da criação, em que dia Deus descansou?"], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No 7º"], ["question_id", 2136], ["correct", true], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No 5º"], ["question_id", 2136], ["correct", false], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No 1º"], ["question_id", 2136], ["correct", false], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No 4º"], ["question_id", 2136], ["correct", false], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]]  (139.8ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na visão que Deus deu ao centurião romano Cornélio, o anjo mandou buscar Pedro de qual cidade?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na visão que Deus deu ao centurião romano Cornélio, o anjo mandou buscar Pedro de qual cidade?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na visão que Deus deu ao centurião romano Cornélio, o anjo mandou buscar Pedro de qual cidade?"], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jope"], ["question_id", 2137], ["correct", true], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nínive"], ["question_id", 2137], ["correct", false], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Roma"], ["question_id", 2137], ["correct", false], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Patmos"], ["question_id", 2137], ["correct", false], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]]  (157.6ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na visão que Deus deu ao centurião romano Cornélio, qual discípulo o anjo mandou buscar?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Na visão que Deus deu ao centurião romano Cornélio, qual discípulo o anjo mandou buscar?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Na visão que Deus deu ao centurião romano Cornélio, qual discípulo o anjo mandou buscar?"], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 2138], ["correct", true], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 2138], ["correct", false], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mateus"], ["question_id", 2138], ["correct", false], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 2138], ["correct", false], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]]  (141.2ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nabucodonosor era rei de qual país?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nabucodonosor era rei de qual país?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Nabucodonosor era rei de qual país?"], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônia"], ["question_id", 2139], ["correct", true], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assíria"], ["question_id", 2139], ["correct", false], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arábia"], ["question_id", 2139], ["correct", false], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Grécia"], ["question_id", 2139], ["correct", false], ["created_at", 2016-08-19 02:56:19 UTC], ["updated_at", 2016-08-19 02:56:19 UTC]]  (115.8ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nabucodonosor mandou jogar os amigos de Daniel em uma fornalha ardente pois os mesmos se recusaram a:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nabucodonosor mandou jogar os amigos de Daniel em uma fornalha ardente pois os mesmos se recusaram a:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Nabucodonosor mandou jogar os amigos de Daniel em uma fornalha ardente pois os mesmos se recusaram a:"], ["created_at", 2016-08-19 02:56:20 UTC], ["updated_at", 2016-08-19 02:56:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Idolatrar Uma Grande Estátua"], ["question_id", 2140], ["correct", true], ["created_at", 2016-08-19 02:56:20 UTC], ["updated_at", 2016-08-19 02:56:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Alimentar-se À Mesa do Rei"], ["question_id", 2140], ["correct", false], ["created_at", 2016-08-19 02:56:20 UTC], ["updated_at", 2016-08-19 02:56:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Beber do Vinho do Rei"], ["question_id", 2140], ["correct", false], ["created_at", 2016-08-19 02:56:20 UTC], ["updated_at", 2016-08-19 02:56:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cortar O Cabelo do Rei"], ["question_id", 2140], ["correct", false], ["created_at", 2016-08-19 02:56:20 UTC], ["updated_at", 2016-08-19 02:56:20 UTC]]  (132.8ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nabucodonosor reconstruiu a cidade de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nabucodonosor reconstruiu a cidade de:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Nabucodonosor reconstruiu a cidade de:"], ["created_at", 2016-08-19 02:56:20 UTC], ["updated_at", 2016-08-19 02:56:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônia"], ["question_id", 2141], ["correct", true], ["created_at", 2016-08-19 02:56:20 UTC], ["updated_at", 2016-08-19 02:56:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 2141], ["correct", false], ["created_at", 2016-08-19 02:56:20 UTC], ["updated_at", 2016-08-19 02:56:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nínive"], ["question_id", 2141], ["correct", false], ["created_at", 2016-08-19 02:56:20 UTC], ["updated_at", 2016-08-19 02:56:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ogã-oblade"], ["question_id", 2141], ["correct", false], ["created_at", 2016-08-19 02:56:20 UTC], ["updated_at", 2016-08-19 02:56:20 UTC]]  (148.3ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nas bodas de Caná, Jesus operou o 1º milagre, transformando água em:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nas bodas de Caná, Jesus operou o 1º milagre, transformando água em:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Nas bodas de Caná, Jesus operou o 1º milagre, transformando água em:"], ["created_at", 2016-08-19 02:56:20 UTC], ["updated_at", 2016-08-19 02:56:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vinho"], ["question_id", 2142], ["correct", true], ["created_at", 2016-08-19 02:56:20 UTC], ["updated_at", 2016-08-19 02:56:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Azeite"], ["question_id", 2142], ["correct", false], ["created_at", 2016-08-19 02:56:20 UTC], ["updated_at", 2016-08-19 02:56:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Água Mineral"], ["question_id", 2142], ["correct", false], ["created_at", 2016-08-19 02:56:20 UTC], ["updated_at", 2016-08-19 02:56:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Óleo"], ["question_id", 2142], ["correct", false], ["created_at", 2016-08-19 02:56:20 UTC], ["updated_at", 2016-08-19 02:56:20 UTC]]  (130.9ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nas bodas de Caná, quantos jarros de água Jesus transformou em vinho?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nas bodas de Caná, quantos jarros de água Jesus transformou em vinho?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Nas bodas de Caná, quantos jarros de água Jesus transformou em vinho?"], ["created_at", 2016-08-19 02:56:20 UTC], ["updated_at", 2016-08-19 02:56:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "6"], ["question_id", 2143], ["correct", true], ["created_at", 2016-08-19 02:56:20 UTC], ["updated_at", 2016-08-19 02:56:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 2143], ["correct", false], ["created_at", 2016-08-19 02:56:20 UTC], ["updated_at", 2016-08-19 02:56:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 2143], ["correct", false], ["created_at", 2016-08-19 02:56:20 UTC], ["updated_at", 2016-08-19 02:56:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "8"], ["question_id", 2143], ["correct", false], ["created_at", 2016-08-19 02:56:20 UTC], ["updated_at", 2016-08-19 02:56:20 UTC]]  (139.6ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nas bodas de Caná, quem pediu a Jesus que transformasse a água em vinho?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nas bodas de Caná, quem pediu a Jesus que transformasse a água em vinho?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Nas bodas de Caná, quem pediu a Jesus que transformasse a água em vinho?"], ["created_at", 2016-08-19 02:56:20 UTC], ["updated_at", 2016-08-19 02:56:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Mãe"], ["question_id", 2144], ["correct", true], ["created_at", 2016-08-19 02:56:20 UTC], ["updated_at", 2016-08-19 02:56:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Pai da Noiva"], ["question_id", 2144], ["correct", false], ["created_at", 2016-08-19 02:56:20 UTC], ["updated_at", 2016-08-19 02:56:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Pai"], ["question_id", 2144], ["correct", false], ["created_at", 2016-08-19 02:56:20 UTC], ["updated_at", 2016-08-19 02:56:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Discípulos"], ["question_id", 2144], ["correct", false], ["created_at", 2016-08-19 02:56:20 UTC], ["updated_at", 2016-08-19 02:56:20 UTC]]  (189.7ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nas bodas de Caná, sua mãe pediu a Jesus que:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nas bodas de Caná, sua mãe pediu a Jesus que:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Nas bodas de Caná, sua mãe pediu a Jesus que:"], ["created_at", 2016-08-19 02:56:20 UTC], ["updated_at", 2016-08-19 02:56:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Transformasse Água Em Vinho"], ["question_id", 2145], ["correct", true], ["created_at", 2016-08-19 02:56:20 UTC], ["updated_at", 2016-08-19 02:56:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fossem Embora, Pois Estava Tarde"], ["question_id", 2145], ["correct", false], ["created_at", 2016-08-19 02:56:20 UTC], ["updated_at", 2016-08-19 02:56:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fossem Embora, Pois Foram Expulsos do Casamento"], ["question_id", 2145], ["correct", false], ["created_at", 2016-08-19 02:56:20 UTC], ["updated_at", 2016-08-19 02:56:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Transformasse Vinho Em Água"], ["question_id", 2145], ["correct", false], ["created_at", 2016-08-19 02:56:20 UTC], ["updated_at", 2016-08-19 02:56:20 UTC]]  (115.5ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nebo era um ídolo adotado pelos:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Nebo era um ídolo adotado pelos:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Nebo era um ídolo adotado pelos:"], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônicos"], ["question_id", 2146], ["correct", true], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenícios"], ["question_id", 2146], ["correct", false], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egípcios"], ["question_id", 2146], ["correct", false], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assírios"], ["question_id", 2146], ["correct", false], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]]  (117.0ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Neustã foi o nome dado à:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Neustã foi o nome dado à:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Neustã foi o nome dado à:"], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Serpente Levantada No Deserto"], ["question_id", 2147], ["correct", true], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filha de Maria Madalena"], ["question_id", 2147], ["correct", false], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Prima de Isabel"], ["question_id", 2147], ["correct", false], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jezabel, Após Seu Casamento Com O Rei Acabe"], ["question_id", 2147], ["correct", false], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]]  (114.8ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ninrode, bisneto de Noé, construiu a cidade de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Ninrode, bisneto de Noé, construiu a cidade de:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Ninrode, bisneto de Noé, construiu a cidade de:"], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nínive"], ["question_id", 2148], ["correct", true], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 2148], ["correct", false], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 2148], ["correct", false], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gomorra"], ["question_id", 2148], ["correct", false], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]]  (132.4ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No 1º ataque de Nabucodonosor à Jerusalém, quem foi ajudar o reino de Judá?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No 1º ataque de Nabucodonosor à Jerusalém, quem foi ajudar o reino de Judá?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "No 1º ataque de Nabucodonosor à Jerusalém, quem foi ajudar o reino de Judá?"], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egito"], ["question_id", 2149], ["correct", true], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Reino de Israel"], ["question_id", 2149], ["correct", false], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenícia"], ["question_id", 2149], ["correct", false], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Roma"], ["question_id", 2149], ["correct", false], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]]  (124.8ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No 1º ataque de Nabucodonosor a Jerusalém, quem se tornou servo deste?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No 1º ataque de Nabucodonosor a Jerusalém, quem se tornou servo deste?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "No 1º ataque de Nabucodonosor a Jerusalém, quem se tornou servo deste?"], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeoaquim"], ["question_id", 2150], ["correct", true], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ezequias"], ["question_id", 2150], ["correct", false], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zedequias"], ["question_id", 2150], ["correct", false], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 2150], ["correct", false], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]]  (123.7ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No 7º dia, o que Deus criou?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No 7º dia, o que Deus criou?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "No 7º dia, o que Deus criou?"], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nada, Apenas Descansou"], ["question_id", 2151], ["correct", true], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Sol"], ["question_id", 2151], ["correct", false], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Animais"], ["question_id", 2151], ["correct", false], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adão e Eva"], ["question_id", 2151], ["correct", false], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]]  (132.2ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No 8º dia de vida, o que deveria ser feito ao bebê do sexo masculino?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No 8º dia de vida, o que deveria ser feito ao bebê do sexo masculino?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "No 8º dia de vida, o que deveria ser feito ao bebê do sexo masculino?"], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Circuncidado"], ["question_id", 2152], ["correct", true], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apresentado Ao Templo"], ["question_id", 2152], ["correct", false], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Enrolado Em Uma Manta"], ["question_id", 2152], ["correct", false], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ter Suas Unhas Aparadas Pela 1ª Vez"], ["question_id", 2152], ["correct", false], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]]  (114.0ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No cenáculo, ocorreu uma contenda entre os discípulos de Jesus sobre quem dentre eles era o:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No cenáculo, ocorreu uma contenda entre os discípulos de Jesus sobre quem dentre eles era o:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "No cenáculo, ocorreu uma contenda entre os discípulos de Jesus sobre quem dentre eles era o:"], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mais Importante"], ["question_id", 2153], ["correct", true], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mais Idoso"], ["question_id", 2153], ["correct", false], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mais Sábio"], ["question_id", 2153], ["correct", false], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mais Amado"], ["question_id", 2153], ["correct", false], ["created_at", 2016-08-19 02:56:21 UTC], ["updated_at", 2016-08-19 02:56:21 UTC]]  (105.5ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No cenáculo, pelo fato de Jesus estar ciente de que em breve iria sofrer uma traição, o seu espírito estava:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No cenáculo, pelo fato de Jesus estar ciente de que em breve iria sofrer uma traição, o seu espírito estava:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "No cenáculo, pelo fato de Jesus estar ciente de que em breve iria sofrer uma traição, o seu espírito estava:"], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Perturbado"], ["question_id", 2154], ["correct", true], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aliviado"], ["question_id", 2154], ["correct", false], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Alegre"], ["question_id", 2154], ["correct", false], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sem Fé"], ["question_id", 2154], ["correct", false], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]]  (115.6ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No cenáculo, por que Jesus disse que estava com o espírito perturbado?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No cenáculo, por que Jesus disse que estava com o espírito perturbado?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "No cenáculo, por que Jesus disse que estava com o espírito perturbado?"], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Sabia Que Iria Ser Traído"], ["question_id", 2155], ["correct", true], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Estava Preocupado Com O Futuro e Sua Mãe"], ["question_id", 2155], ["correct", false], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Estava Receoso Em Deixar Os Discípulos A Sós"], ["question_id", 2155], ["correct", false], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Sabia Que Judas Iria Se Suicidar"], ["question_id", 2155], ["correct", false], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]]  (130.7ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No cenáculo, qual foi o motivo que gerou uma contenda entre os discípulos de Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No cenáculo, qual foi o motivo que gerou uma contenda entre os discípulos de Jesus?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "No cenáculo, qual foi o motivo que gerou uma contenda entre os discípulos de Jesus?"], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quem Seria O Mais Importante No Reino Por Vir"], ["question_id", 2156], ["correct", true], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quem Cuidaria da Tesouraria"], ["question_id", 2156], ["correct", false], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quem Seria Escolhido Para Ser Um dos 12 Apóstolos"], ["question_id", 2156], ["correct", false], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quem Seria O Discípulo Que Iria Cuidar das Ovelhas"], ["question_id", 2156], ["correct", false], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]]  (116.0ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No decreto baixado por Nabucodonosor, o que aconteceria se alguém não louvasse o Deus de Sadraque, Mesaque e Abede-Nego?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No decreto baixado por Nabucodonosor, o que aconteceria se alguém não louvasse o Deus de Sadraque, Mesaque e Abede-Nego?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "No decreto baixado por Nabucodonosor, o que aconteceria se alguém não louvasse o Deus de Sadraque, Mesaque e Abede-Nego?"], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Pessoa Seria Despedaçada"], ["question_id", 2157], ["correct", true], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Pessoa Seria Decepada"], ["question_id", 2157], ["correct", false], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Pessoa Seria Colocada Na Fornalha Ardente"], ["question_id", 2157], ["correct", false], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Pessoa Seria Atirada Na Cova dos Leões"], ["question_id", 2157], ["correct", false], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]]  (132.8ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No dia seguinte à sua entrada triunfal em Jerusalém, que espécie de árvore Jesus amaldiçoou?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No dia seguinte à sua entrada triunfal em Jerusalém, que espécie de árvore Jesus amaldiçoou?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "No dia seguinte à sua entrada triunfal em Jerusalém, que espécie de árvore Jesus amaldiçoou?"], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Figueira"], ["question_id", 2158], ["correct", true], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oliveira"], ["question_id", 2158], ["correct", false], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Palmeira"], ["question_id", 2158], ["correct", false], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tamareira"], ["question_id", 2158], ["correct", false], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]]  (148.5ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No jantar oferecido por Simão, o leproso, quem mais estava presente neste Jantar?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No jantar oferecido por Simão, o leproso, quem mais estava presente neste Jantar?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "No jantar oferecido por Simão, o leproso, quem mais estava presente neste Jantar?"], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lázaro"], ["question_id", 2159], ["correct", true], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 2159], ["correct", false], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodias"], ["question_id", 2159], ["correct", false], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sumo-sacerdote Caifás"], ["question_id", 2159], ["correct", false], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]]  (173.6ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No livro de Josué, Sesai, Aimã e Talmai eram filhos de quem?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No livro de Josué, Sesai, Aimã e Talmai eram filhos de quem?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "No livro de Josué, Sesai, Aimã e Talmai eram filhos de quem?"], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anaque"], ["question_id", 2160], ["correct", true], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abedenego"], ["question_id", 2160], ["correct", false], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mesaque"], ["question_id", 2160], ["correct", false], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sadraque"], ["question_id", 2160], ["correct", false], ["created_at", 2016-08-19 02:56:22 UTC], ["updated_at", 2016-08-19 02:56:22 UTC]]  (114.7ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No Monte das Oliveiras, Jesus chorou pela cidade de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No Monte das Oliveiras, Jesus chorou pela cidade de:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "No Monte das Oliveiras, Jesus chorou pela cidade de:"], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 2161], ["correct", true], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nazaré"], ["question_id", 2161], ["correct", false], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nínive"], ["question_id", 2161], ["correct", false], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cafarnaum"], ["question_id", 2161], ["correct", false], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]]  (141.9ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No sonho de José, para onde Deus o instruiu a levar Maria e o menino Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No sonho de José, para onde Deus o instruiu a levar Maria e o menino Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "No sonho de José, para onde Deus o instruiu a levar Maria e o menino Jesus?"], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egito"], ["question_id", 2162], ["correct", true], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Síria"], ["question_id", 2162], ["correct", false], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arábia"], ["question_id", 2162], ["correct", false], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mesopotâmia"], ["question_id", 2162], ["correct", false], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]]  (131.2ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No túmulo de quem um morto foi jogado e reviveu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No túmulo de quem um morto foi jogado e reviveu?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "No túmulo de quem um morto foi jogado e reviveu?"], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 2163], ["correct", true], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2163], ["correct", false], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matusalém"], ["question_id", 2163], ["correct", false], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias"], ["question_id", 2163], ["correct", false], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]]  (147.9ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No vale de Tofete, o povo hebreu oferecia sacrifícios vivos de crianças ao deus:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "No vale de Tofete, o povo hebreu oferecia sacrifícios vivos de crianças ao deus:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "No vale de Tofete, o povo hebreu oferecia sacrifícios vivos de crianças ao deus:"], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moloque"], ["question_id", 2164], ["correct", true], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Baal"], ["question_id", 2164], ["correct", false], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jizreel"], ["question_id", 2164], ["correct", false], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiglete-pileser"], ["question_id", 2164], ["correct", false], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]]  (131.2ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O 1º filho de Abraão com Sara se chamou:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O 1º filho de Abraão com Sara se chamou:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O 1º filho de Abraão com Sara se chamou:"], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 2165], ["correct", true], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 2165], ["correct", false], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel"], ["question_id", 2165], ["correct", false], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mesaque"], ["question_id", 2165], ["correct", false], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]]  (139.8ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O altar de Moleque, profanado por Josias através da queima de ossos humanos, situava-se no:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O altar de Moleque, profanado por Josias através da queima de ossos humanos, situava-se no:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O altar de Moleque, profanado por Josias através da queima de ossos humanos, situava-se no:"], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vale do Hinom"], ["question_id", 2166], ["correct", true], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Monte Ararat"], ["question_id", 2166], ["correct", false], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vale da Sombra e da Morte"], ["question_id", 2166], ["correct", false], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Planície Hebrom"], ["question_id", 2166], ["correct", false], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]]  (156.0ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O anjo Gabriel comunicou à Maria que ela:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O anjo Gabriel comunicou à Maria que ela:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O anjo Gabriel comunicou à Maria que ela:"], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Iria Ter Um Bebê Chamado Jesus"], ["question_id", 2167], ["correct", true], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Iria Se Casar Com José"], ["question_id", 2167], ["correct", false], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Teria Um Sobrinho Que Seria Chamado João Batista"], ["question_id", 2167], ["correct", false], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Iria Morrer Em Breve"], ["question_id", 2167], ["correct", false], ["created_at", 2016-08-19 02:56:23 UTC], ["updated_at", 2016-08-19 02:56:23 UTC]]  (199.2ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O apóstolo Paulo foi morto:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O apóstolo Paulo foi morto:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O apóstolo Paulo foi morto:"], ["created_at", 2016-08-19 02:56:24 UTC], ["updated_at", 2016-08-19 02:56:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Decapitado"], ["question_id", 2168], ["correct", true], ["created_at", 2016-08-19 02:56:24 UTC], ["updated_at", 2016-08-19 02:56:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Crucificado"], ["question_id", 2168], ["correct", false], ["created_at", 2016-08-19 02:56:24 UTC], ["updated_at", 2016-08-19 02:56:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Enforcado"], ["question_id", 2168], ["correct", false], ["created_at", 2016-08-19 02:56:24 UTC], ["updated_at", 2016-08-19 02:56:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Afogado"], ["question_id", 2168], ["correct", false], ["created_at", 2016-08-19 02:56:24 UTC], ["updated_at", 2016-08-19 02:56:24 UTC]]  (114.6ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O apóstolo Tiago foi morto:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O apóstolo Tiago foi morto:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O apóstolo Tiago foi morto:"], ["created_at", 2016-08-19 02:56:24 UTC], ["updated_at", 2016-08-19 02:56:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Decapitado"], ["question_id", 2169], ["correct", true], ["created_at", 2016-08-19 02:56:24 UTC], ["updated_at", 2016-08-19 02:56:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Enforcado"], ["question_id", 2169], ["correct", false], ["created_at", 2016-08-19 02:56:24 UTC], ["updated_at", 2016-08-19 02:56:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fuzilado"], ["question_id", 2169], ["correct", false], ["created_at", 2016-08-19 02:56:24 UTC], ["updated_at", 2016-08-19 02:56:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Crucificado de Cabeça Para Baixo"], ["question_id", 2169], ["correct", false], ["created_at", 2016-08-19 02:56:24 UTC], ["updated_at", 2016-08-19 02:56:24 UTC]]  (165.0ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O bezerro de ouro construído por Arão foi confeccionado a partir de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O bezerro de ouro construído por Arão foi confeccionado a partir de:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O bezerro de ouro construído por Arão foi confeccionado a partir de:"], ["created_at", 2016-08-19 02:56:24 UTC], ["updated_at", 2016-08-19 02:56:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jóias dos Israelitas"], ["question_id", 2170], ["correct", true], ["created_at", 2016-08-19 02:56:24 UTC], ["updated_at", 2016-08-19 02:56:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Peças de Ouro do Tabernáculo"], ["question_id", 2170], ["correct", false], ["created_at", 2016-08-19 02:56:24 UTC], ["updated_at", 2016-08-19 02:56:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Garimpo No Deserto"], ["question_id", 2170], ["correct", false], ["created_at", 2016-08-19 02:56:24 UTC], ["updated_at", 2016-08-19 02:56:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Bezerro Era de Bronze"], ["question_id", 2170], ["correct", false], ["created_at", 2016-08-19 02:56:24 UTC], ["updated_at", 2016-08-19 02:56:24 UTC]]  (172.2ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Dilúvio durou quantos dias?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Dilúvio durou quantos dias?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O Dilúvio durou quantos dias?"], ["created_at", 2016-08-19 02:56:24 UTC], ["updated_at", 2016-08-19 02:56:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "40 Dias"], ["question_id", 2171], ["correct", true], ["created_at", 2016-08-19 02:56:24 UTC], ["updated_at", 2016-08-19 02:56:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "20 Dias"], ["question_id", 2171], ["correct", false], ["created_at", 2016-08-19 02:56:24 UTC], ["updated_at", 2016-08-19 02:56:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10 Dias"], ["question_id", 2171], ["correct", false], ["created_at", 2016-08-19 02:56:24 UTC], ["updated_at", 2016-08-19 02:56:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "30 Dias"], ["question_id", 2171], ["correct", false], ["created_at", 2016-08-19 02:56:24 UTC], ["updated_at", 2016-08-19 02:56:24 UTC]]  (114.5ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O filho do rei Davi morreu pelo fato deste ter:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O filho do rei Davi morreu pelo fato deste ter:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O filho do rei Davi morreu pelo fato deste ter:"], ["created_at", 2016-08-19 02:56:24 UTC], ["updated_at", 2016-08-19 02:56:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todas As Alternativas Estão Corretas"], ["question_id", 2172], ["correct", true], ["created_at", 2016-08-19 02:56:24 UTC], ["updated_at", 2016-08-19 02:56:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Desejado A Esposa de Urias"], ["question_id", 2172], ["correct", false], ["created_at", 2016-08-19 02:56:24 UTC], ["updated_at", 2016-08-19 02:56:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mantido Relações Sexuais Com Bate-seba"], ["question_id", 2172], ["correct", false], ["created_at", 2016-08-19 02:56:24 UTC], ["updated_at", 2016-08-19 02:56:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Planejar A Morte do Oficial Urias"], ["question_id", 2172], ["correct", false], ["created_at", 2016-08-19 02:56:24 UTC], ["updated_at", 2016-08-19 02:56:24 UTC]]  (139.8ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O gigante Golias foi morto por:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O gigante Golias foi morto por:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O gigante Golias foi morto por:"], ["created_at", 2016-08-19 02:56:24 UTC], ["updated_at", 2016-08-19 02:56:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 2173], ["correct", true], ["created_at", 2016-08-19 02:56:24 UTC], ["updated_at", 2016-08-19 02:56:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel"], ["question_id", 2173], ["correct", false], ["created_at", 2016-08-19 02:56:24 UTC], ["updated_at", 2016-08-19 02:56:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 2173], ["correct", false], ["created_at", 2016-08-19 02:56:24 UTC], ["updated_at", 2016-08-19 02:56:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caim"], ["question_id", 2173], ["correct", false], ["created_at", 2016-08-19 02:56:24 UTC], ["updated_at", 2016-08-19 02:56:24 UTC]]  (148.1ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Gólgota foi o local onde:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Gólgota foi o local onde:"], ["LIMIT", 1]] SQL (0.7ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O Gólgota foi o local onde:"], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus Foi Crucificado"], ["question_id", 2174], ["correct", true], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés Avistou A Terra Prometida"], ["question_id", 2174], ["correct", false], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão Construiu O Templo do Senhor"], ["question_id", 2174], ["correct", false], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi Cortou Um Pedaço da Túnica do Rei Saul"], ["question_id", 2174], ["correct", false], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]]  (140.0ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O imperador Nero mandou decapitar o apóstolo:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O imperador Nero mandou decapitar o apóstolo:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O imperador Nero mandou decapitar o apóstolo:"], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 2175], ["correct", true], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 2175], ["correct", false], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas"], ["question_id", 2175], ["correct", false], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 2175], ["correct", false], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]]  (114.5ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Mar Morto ficava em qual dos reinos:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Mar Morto ficava em qual dos reinos:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O Mar Morto ficava em qual dos reinos:"], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fazia Divisa Entre Israel e Judá"], ["question_id", 2176], ["correct", true], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judá"], ["question_id", 2176], ["correct", false], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Israel"], ["question_id", 2176], ["correct", false], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Suas Águas Não Banhavam Esses Reinos"], ["question_id", 2176], ["correct", false], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]]  (133.7ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Mar Vermelho foi aberto e dividido em 2 partes para permitir que o povo hebreu escapasse:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Mar Vermelho foi aberto e dividido em 2 partes para permitir que o povo hebreu escapasse:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O Mar Vermelho foi aberto e dividido em 2 partes para permitir que o povo hebreu escapasse:"], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Faraó"], ["question_id", 2177], ["correct", true], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dos Filisteus"], ["question_id", 2177], ["correct", false], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dos Babilônicos"], ["question_id", 2177], ["correct", false], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dos Assírios"], ["question_id", 2177], ["correct", false], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]]  (132.3ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O menino Jesus nasceu em um:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O menino Jesus nasceu em um:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O menino Jesus nasceu em um:"], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Estábulo"], ["question_id", 2178], ["correct", true], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cocheira"], ["question_id", 2178], ["correct", false], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porão"], ["question_id", 2178], ["correct", false], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sótão"], ["question_id", 2178], ["correct", false], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]]  (130.9ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Monte Carmelo ficava na tribo israelita de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Monte Carmelo ficava na tribo israelita de:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O Monte Carmelo ficava na tribo israelita de:"], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aser"], ["question_id", 2179], ["correct", true], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Efraim"], ["question_id", 2179], ["correct", false], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Simeão"], ["question_id", 2179], ["correct", false], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rúben"], ["question_id", 2179], ["correct", false], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]]  (139.9ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Monte Hermom marcava ao norte a fronteira de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Monte Hermom marcava ao norte a fronteira de:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O Monte Hermom marcava ao norte a fronteira de:"], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Israel"], ["question_id", 2180], ["correct", true], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônia"], ["question_id", 2180], ["correct", false], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Império Romano"], ["question_id", 2180], ["correct", false], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egito"], ["question_id", 2180], ["correct", false], ["created_at", 2016-08-19 02:56:25 UTC], ["updated_at", 2016-08-19 02:56:25 UTC]]  (122.7ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O nome de qual Sumo Sacerdote significava \"sumo, altíssimo\"?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O nome de qual Sumo Sacerdote significava \"sumo, altíssimo\"?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O nome de qual Sumo Sacerdote significava \"sumo, altíssimo\"?"], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eli"], ["question_id", 2181], ["correct", true], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ananias"], ["question_id", 2181], ["correct", false], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel"], ["question_id", 2181], ["correct", false], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 2181], ["correct", false], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]]  (131.5ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Novo Testamento foi escrito em:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Novo Testamento foi escrito em:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O Novo Testamento foi escrito em:"], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Grego"], ["question_id", 2182], ["correct", true], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aramaico"], ["question_id", 2182], ["correct", false], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Latim"], ["question_id", 2182], ["correct", false], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hebraico"], ["question_id", 2182], ["correct", false], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]]  (123.7ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O oficial Urias morto em batalha foi casado com:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O oficial Urias morto em batalha foi casado com:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O oficial Urias morto em batalha foi casado com:"], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bate-seba"], ["question_id", 2183], ["correct", true], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vasti"], ["question_id", 2183], ["correct", false], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elcana"], ["question_id", 2183], ["correct", false], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Priscila"], ["question_id", 2183], ["correct", false], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]]  (114.0ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O povo pediu a Pôncio Pilatos que soltassem Barrabás ao invés de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O povo pediu a Pôncio Pilatos que soltassem Barrabás ao invés de:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O povo pediu a Pôncio Pilatos que soltassem Barrabás ao invés de:"], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 2184], ["correct", true], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 2184], ["correct", false], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 2184], ["correct", false], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12 Apóstolos"], ["question_id", 2184], ["correct", false], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]]  (132.9ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O profeta Aías foi consultado pelo rei Jeroboão para saber sobre:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O profeta Aías foi consultado pelo rei Jeroboão para saber sobre:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O profeta Aías foi consultado pelo rei Jeroboão para saber sobre:"], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Condição de Saúde de Seu Filho"], ["question_id", 2185], ["correct", true], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Se A Seca Ainda Continuaria Por Muito Tempo"], ["question_id", 2185], ["correct", false], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Se A Colheita de Grãos Seria Suficiente Para Todos"], ["question_id", 2185], ["correct", false], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Se As Pragas do Egito Também Cairiam Sobre Eles"], ["question_id", 2185], ["correct", false], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]]  (130.6ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O profeta Namã questionou o rei Davi pelo fato deste ter mantido relações sexuais com:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O profeta Namã questionou o rei Davi pelo fato deste ter mantido relações sexuais com:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O profeta Namã questionou o rei Davi pelo fato deste ter mantido relações sexuais com:"], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bate-seba"], ["question_id", 2186], ["correct", true], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Urias"], ["question_id", 2186], ["correct", false], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 2186], ["correct", false], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elcana"], ["question_id", 2186], ["correct", false], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]]  (132.3ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O profeta Zacarias foi o pai de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O profeta Zacarias foi o pai de:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O profeta Zacarias foi o pai de:"], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 2187], ["correct", true], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas Iscariotes"], ["question_id", 2187], ["correct", false], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 2187], ["correct", false], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "André"], ["question_id", 2187], ["correct", false], ["created_at", 2016-08-19 02:56:26 UTC], ["updated_at", 2016-08-19 02:56:26 UTC]]  (130.5ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O profeta Zacarias impulsionou o povo judeu para que terminasse a construção:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O profeta Zacarias impulsionou o povo judeu para que terminasse a construção:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O profeta Zacarias impulsionou o povo judeu para que terminasse a construção:"], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Templo"], ["question_id", 2188], ["correct", true], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Palácio Real"], ["question_id", 2188], ["correct", false], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Da Ponte Sobre O Rio Jordão"], ["question_id", 2188], ["correct", false], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Muro da Cidade de Jerusalém"], ["question_id", 2188], ["correct", false], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]]  (130.5ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que a filha do Faraó encontrou preso junto aos juncos do rio Nilo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que a filha do Faraó encontrou preso junto aos juncos do rio Nilo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que a filha do Faraó encontrou preso junto aos juncos do rio Nilo?"], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Cesta"], ["question_id", 2189], ["correct", true], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Rolo de Papiro"], ["question_id", 2189], ["correct", false], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Cabeça do Deus Amon"], ["question_id", 2189], ["correct", false], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Muitas Rãs"], ["question_id", 2189], ["correct", false], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]]  (122.7ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que a mulher sunamita e seu marido ofereceram a Eliseu quando este os estava visitando?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que a mulher sunamita e seu marido ofereceram a Eliseu quando este os estava visitando?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que a mulher sunamita e seu marido ofereceram a Eliseu quando este os estava visitando?"], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Quarto Na Parte de Cima da Casa"], ["question_id", 2190], ["correct", true], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Refeição Especial"], ["question_id", 2190], ["correct", false], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lavar Suas Roupas"], ["question_id", 2190], ["correct", false], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assar Um Cozido de Javali"], ["question_id", 2190], ["correct", false], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]]  (123.4ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que a multidão gritou para Pôncio Pilatos após ele ter apresentado Jesus à esta?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que a multidão gritou para Pôncio Pilatos após ele ter apresentado Jesus à esta?"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que a multidão gritou para Pôncio Pilatos após ele ter apresentado Jesus à esta?"], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Crucifica-o!"], ["question_id", 2191], ["correct", true], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Liberta-o!"], ["question_id", 2191], ["correct", false], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Devolva-o Para Nós!"], ["question_id", 2191], ["correct", false], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Surre-o Mais!"], ["question_id", 2191], ["correct", false], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]]  (138.7ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Absalão cortava no fim de cada ano?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Absalão cortava no fim de cada ano?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Absalão cortava no fim de cada ano?"], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Cabelos"], ["question_id", 2192], ["correct", true], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Suas Unhas"], ["question_id", 2192], ["correct", false], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Mãos dos Seus Inimigos"], ["question_id", 2192], ["correct", false], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Sobrancelhas"], ["question_id", 2192], ["correct", false], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]]  (124.5ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceria aos animais se por ventura eles tocassem o monte Sinai no 3º dia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceria aos animais se por ventura eles tocassem o monte Sinai no 3º dia?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que aconteceria aos animais se por ventura eles tocassem o monte Sinai no 3º dia?"], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Morreriam"], ["question_id", 2193], ["correct", true], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seriam Petrificados"], ["question_id", 2193], ["correct", false], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Virariam Estátuas de Sal"], ["question_id", 2193], ["correct", false], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bolas de Fogo do Céu Os Atingiriam"], ["question_id", 2193], ["correct", false], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]]  (130.0ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Bate-Seba quando seu período de luto por Urias terminou?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Bate-Seba quando seu período de luto por Urias terminou?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que aconteceu a Bate-Seba quando seu período de luto por Urias terminou?"], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Desposada Por Davi"], ["question_id", 2194], ["correct", true], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Executada"], ["question_id", 2194], ["correct", false], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Levada Como Escrava"], ["question_id", 2194], ["correct", false], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Apredrejada"], ["question_id", 2194], ["correct", false], ["created_at", 2016-08-19 02:56:27 UTC], ["updated_at", 2016-08-19 02:56:27 UTC]]  (123.0ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Eliseu após ter sido oferecido ao mesmo um caldo venenoso por acidente?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Eliseu após ter sido oferecido ao mesmo um caldo venenoso por acidente?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que aconteceu a Eliseu após ter sido oferecido ao mesmo um caldo venenoso por acidente?"], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Sofreu Nada"], ["question_id", 2195], ["correct", true], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Morreu"], ["question_id", 2195], ["correct", false], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Xingou O Cozinheiro"], ["question_id", 2195], ["correct", false], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matou O Cozinheiro"], ["question_id", 2195], ["correct", false], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]]  (107.3ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Êutico após este ter adormecido enquanto ouvia a mensagem de Paulo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Êutico após este ter adormecido enquanto ouvia a mensagem de Paulo?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que aconteceu a Êutico após este ter adormecido enquanto ouvia a mensagem de Paulo?"], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caiu da Janela"], ["question_id", 2196], ["correct", true], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caiu da Cama"], ["question_id", 2196], ["correct", false], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caiu do Alpendre"], ["question_id", 2196], ["correct", false], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caiu da Escada"], ["question_id", 2196], ["correct", false], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]]  (131.2ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Êutico após ter caído de uma janela pelo fato de ter adormecido enquanto Paulo pregava?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Êutico após ter caído de uma janela pelo fato de ter adormecido enquanto Paulo pregava?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que aconteceu a Êutico após ter caído de uma janela pelo fato de ter adormecido enquanto Paulo pregava?"], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Morreu"], ["question_id", 2197], ["correct", true], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acordou Assustado"], ["question_id", 2197], ["correct", false], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quebrou As Pernas"], ["question_id", 2197], ["correct", false], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quebrou As Costelas"], ["question_id", 2197], ["correct", false], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]]  (132.1ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Jesus após os 2 discípulos O terem reconhecido após Sua ressurreição?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Jesus após os 2 discípulos O terem reconhecido após Sua ressurreição?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que aconteceu a Jesus após os 2 discípulos O terem reconhecido após Sua ressurreição?"], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Desapareceu"], ["question_id", 2198], ["correct", true], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Voou Para O Céu"], ["question_id", 2198], ["correct", false], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Abraçou"], ["question_id", 2198], ["correct", false], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saiu Correndo"], ["question_id", 2198], ["correct", false], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]]  (132.3ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Judas Iscariotes imediatamente após ter recebido um pedaço de pão diretamente de Jesus na Última Ceia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Judas Iscariotes imediatamente após ter recebido um pedaço de pão diretamente de Jesus na Última Ceia?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que aconteceu a Judas Iscariotes imediatamente após ter recebido um pedaço de pão diretamente de Jesus na Última Ceia?"], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Satanás Entrou Em Seu Corpo"], ["question_id", 2199], ["correct", true], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Comeu Verozmente O Pão"], ["question_id", 2199], ["correct", false], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jogou O Pão No Chão e Amaldiçoou-o"], ["question_id", 2199], ["correct", false], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Recusou, Pois Estava Sem Fome"], ["question_id", 2199], ["correct", false], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]]  (132.8ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Raquel, esposa de Jacó, após ter dado a luz a Benjamim?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu a Raquel, esposa de Jacó, após ter dado a luz a Benjamim?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que aconteceu a Raquel, esposa de Jacó, após ter dado a luz a Benjamim?"], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Morreu"], ["question_id", 2200], ["correct", true], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Teve Uma Visão"], ["question_id", 2200], ["correct", false], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pediu Que Sua Irmão Lia Casasse Com Jacó"], ["question_id", 2200], ["correct", false], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Levada Para Os Céus"], ["question_id", 2200], ["correct", false], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]]  (129.9ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu ao Egito pelo fato do Faraó ter negado a saída do povo hebreu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu ao Egito pelo fato do Faraó ter negado a saída do povo hebreu?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que aconteceu ao Egito pelo fato do Faraó ter negado a saída do povo hebreu?"], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caíram Pragas"], ["question_id", 2201], ["correct", true], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Conquistado Pela Babilônia"], ["question_id", 2201], ["correct", false], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Derrotado Pelos Assírios"], ["question_id", 2201], ["correct", false], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Rio Nilo Secou Por 25 Anos"], ["question_id", 2201], ["correct", false], ["created_at", 2016-08-19 02:56:28 UTC], ["updated_at", 2016-08-19 02:56:28 UTC]]  (172.3ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu ao rei Davi com a morte de Absalão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu ao rei Davi com a morte de Absalão?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que aconteceu ao rei Davi com a morte de Absalão?"], ["created_at", 2016-08-19 02:56:29 UTC], ["updated_at", 2016-08-19 02:56:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Trono Lhe Foi Restituído"], ["question_id", 2202], ["correct", true], ["created_at", 2016-08-19 02:56:29 UTC], ["updated_at", 2016-08-19 02:56:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Foi Para Um Esconderijo"], ["question_id", 2202], ["correct", false], ["created_at", 2016-08-19 02:56:29 UTC], ["updated_at", 2016-08-19 02:56:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Indicou Adonias Como Rei"], ["question_id", 2202], ["correct", false], ["created_at", 2016-08-19 02:56:29 UTC], ["updated_at", 2016-08-19 02:56:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Morto Pelo Chefe da Guarda"], ["question_id", 2202], ["correct", false], ["created_at", 2016-08-19 02:56:29 UTC], ["updated_at", 2016-08-19 02:56:29 UTC]]  (174.2ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu com a mentira de que \"o corpo de Jesus foi roubado pelos discípulos\"?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu com a mentira de que \"o corpo de Jesus foi roubado pelos discípulos\"?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que aconteceu com a mentira de que \"o corpo de Jesus foi roubado pelos discípulos\"?"], ["created_at", 2016-08-19 02:56:29 UTC], ["updated_at", 2016-08-19 02:56:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Espalhou-se Rapidamente Entre Os Judeus"], ["question_id", 2203], ["correct", true], ["created_at", 2016-08-19 02:56:29 UTC], ["updated_at", 2016-08-19 02:56:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ninguém Acreditou Nela"], ["question_id", 2203], ["correct", false], ["created_at", 2016-08-19 02:56:29 UTC], ["updated_at", 2016-08-19 02:56:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Discípulos Confessaram Ser Verdade"], ["question_id", 2203], ["correct", false], ["created_at", 2016-08-19 02:56:29 UTC], ["updated_at", 2016-08-19 02:56:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas A Família de Jesus Acreditou"], ["question_id", 2203], ["correct", false], ["created_at", 2016-08-19 02:56:29 UTC], ["updated_at", 2016-08-19 02:56:29 UTC]]  (139.0ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu com as rãs, no final da 2ª praga enviada por Deus contra os egípcios?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu com as rãs, no final da 2ª praga enviada por Deus contra os egípcios?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que aconteceu com as rãs, no final da 2ª praga enviada por Deus contra os egípcios?"], ["created_at", 2016-08-19 02:56:29 UTC], ["updated_at", 2016-08-19 02:56:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elas Morreram"], ["question_id", 2204], ["correct", true], ["created_at", 2016-08-19 02:56:29 UTC], ["updated_at", 2016-08-19 02:56:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elas Se Reproduziram Cada Vez Mais"], ["question_id", 2204], ["correct", false], ["created_at", 2016-08-19 02:56:29 UTC], ["updated_at", 2016-08-19 02:56:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elas Se Jogaram No Rio Nilo e Desapareceram"], ["question_id", 2204], ["correct", false], ["created_at", 2016-08-19 02:56:29 UTC], ["updated_at", 2016-08-19 02:56:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elas Entraram No Palácio do Faraó e Aprodreceram"], ["question_id", 2204], ["correct", false], ["created_at", 2016-08-19 02:56:29 UTC], ["updated_at", 2016-08-19 02:56:29 UTC]]  (230.7ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu com os 250 seguidores de Corá, em sua rebelião?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu com os 250 seguidores de Corá, em sua rebelião?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que aconteceu com os 250 seguidores de Corá, em sua rebelião?"], ["created_at", 2016-08-19 02:56:29 UTC], ["updated_at", 2016-08-19 02:56:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foram Consumidos Pelo Fogo"], ["question_id", 2205], ["correct", true], ["created_at", 2016-08-19 02:56:29 UTC], ["updated_at", 2016-08-19 02:56:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foram Lançados Ao Mar"], ["question_id", 2205], ["correct", false], ["created_at", 2016-08-19 02:56:29 UTC], ["updated_at", 2016-08-19 02:56:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foram Expulsos do Acampamento"], ["question_id", 2205], ["correct", false], ["created_at", 2016-08-19 02:56:29 UTC], ["updated_at", 2016-08-19 02:56:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foram Sepultados Vivos"], ["question_id", 2205], ["correct", false], ["created_at", 2016-08-19 02:56:29 UTC], ["updated_at", 2016-08-19 02:56:29 UTC]]  (132.8ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu com Saulo depois de seu encontro com Jesus na estrada para Damasco?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu com Saulo depois de seu encontro com Jesus na estrada para Damasco?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que aconteceu com Saulo depois de seu encontro com Jesus na estrada para Damasco?"], ["created_at", 2016-08-19 02:56:29 UTC], ["updated_at", 2016-08-19 02:56:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Ficou Cego"], ["question_id", 2206], ["correct", true], ["created_at", 2016-08-19 02:56:29 UTC], ["updated_at", 2016-08-19 02:56:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Ficou Mudo"], ["question_id", 2206], ["correct", false], ["created_at", 2016-08-19 02:56:29 UTC], ["updated_at", 2016-08-19 02:56:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Ficou Surdo"], ["question_id", 2206], ["correct", false], ["created_at", 2016-08-19 02:56:29 UTC], ["updated_at", 2016-08-19 02:56:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Ficou Tetraplégico"], ["question_id", 2206], ["correct", false], ["created_at", 2016-08-19 02:56:29 UTC], ["updated_at", 2016-08-19 02:56:29 UTC]]  (190.6ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu quando a esposa de Jeroboão entrou em sua casa após ter retornado da consulta ao profeta Aías?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu quando a esposa de Jeroboão entrou em sua casa após ter retornado da consulta ao profeta Aías?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que aconteceu quando a esposa de Jeroboão entrou em sua casa após ter retornado da consulta ao profeta Aías?"], ["created_at", 2016-08-19 02:56:29 UTC], ["updated_at", 2016-08-19 02:56:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Filho Morreu"], ["question_id", 2207], ["correct", true], ["created_at", 2016-08-19 02:56:29 UTC], ["updated_at", 2016-08-19 02:56:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Rei Jeroboão Morreu"], ["question_id", 2207], ["correct", false], ["created_at", 2016-08-19 02:56:29 UTC], ["updated_at", 2016-08-19 02:56:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Filho Que Estava Doente Recuperou A Saúde"], ["question_id", 2207], ["correct", false], ["created_at", 2016-08-19 02:56:29 UTC], ["updated_at", 2016-08-19 02:56:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todos Morreram"], ["question_id", 2207], ["correct", false], ["created_at", 2016-08-19 02:56:29 UTC], ["updated_at", 2016-08-19 02:56:29 UTC]]  (173.1ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu quando Jesus disse aos discípulos que jogassem suas redes do lado direito do barco?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu quando Jesus disse aos discípulos que jogassem suas redes do lado direito do barco?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que aconteceu quando Jesus disse aos discípulos que jogassem suas redes do lado direito do barco?"], ["created_at", 2016-08-19 02:56:30 UTC], ["updated_at", 2016-08-19 02:56:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eles Pegaram Muitos Peixes"], ["question_id", 2208], ["correct", true], ["created_at", 2016-08-19 02:56:30 UTC], ["updated_at", 2016-08-19 02:56:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Rede Se Rompeu de Tanto Peixe"], ["question_id", 2208], ["correct", false], ["created_at", 2016-08-19 02:56:30 UTC], ["updated_at", 2016-08-19 02:56:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eles Pegaram Poucos Peixes"], ["question_id", 2208], ["correct", false], ["created_at", 2016-08-19 02:56:30 UTC], ["updated_at", 2016-08-19 02:56:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eles Não Pegaram Nenhum Peixe"], ["question_id", 2208], ["correct", false], ["created_at", 2016-08-19 02:56:30 UTC], ["updated_at", 2016-08-19 02:56:30 UTC]]  (123.1ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu quando Jesus morreu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que aconteceu quando Jesus morreu?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que aconteceu quando Jesus morreu?"], ["created_at", 2016-08-19 02:56:30 UTC], ["updated_at", 2016-08-19 02:56:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Terremoto"], ["question_id", 2209], ["correct", true], ["created_at", 2016-08-19 02:56:30 UTC], ["updated_at", 2016-08-19 02:56:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Vendaval"], ["question_id", 2209], ["correct", false], ["created_at", 2016-08-19 02:56:30 UTC], ["updated_at", 2016-08-19 02:56:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Tsunâmi"], ["question_id", 2209], ["correct", false], ["created_at", 2016-08-19 02:56:30 UTC], ["updated_at", 2016-08-19 02:56:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Tempestade"], ["question_id", 2209], ["correct", false], ["created_at", 2016-08-19 02:56:30 UTC], ["updated_at", 2016-08-19 02:56:30 UTC]]  (122.8ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Ana fazia todos os anos para seu filho Samuel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Ana fazia todos os anos para seu filho Samuel?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Ana fazia todos os anos para seu filho Samuel?"], ["created_at", 2016-08-19 02:56:30 UTC], ["updated_at", 2016-08-19 02:56:30 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Túnica"], ["question_id", 2210], ["correct", true], ["created_at", 2016-08-19 02:56:30 UTC], ["updated_at", 2016-08-19 02:56:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Prato de Comida"], ["question_id", 2210], ["correct", false], ["created_at", 2016-08-19 02:56:30 UTC], ["updated_at", 2016-08-19 02:56:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Pão Sem Fermento"], ["question_id", 2210], ["correct", false], ["created_at", 2016-08-19 02:56:30 UTC], ["updated_at", 2016-08-19 02:56:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Visita"], ["question_id", 2210], ["correct", false], ["created_at", 2016-08-19 02:56:30 UTC], ["updated_at", 2016-08-19 02:56:30 UTC]]  (163.7ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Arão fez para o povo israelita enquanto Moisés estava no monte?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Arão fez para o povo israelita enquanto Moisés estava no monte?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Arão fez para o povo israelita enquanto Moisés estava no monte?"], ["created_at", 2016-08-19 02:56:30 UTC], ["updated_at", 2016-08-19 02:56:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bezerro de Ouro"], ["question_id", 2211], ["correct", true], ["created_at", 2016-08-19 02:56:30 UTC], ["updated_at", 2016-08-19 02:56:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Serpente de Ouro"], ["question_id", 2211], ["correct", false], ["created_at", 2016-08-19 02:56:30 UTC], ["updated_at", 2016-08-19 02:56:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Coluna de Fogo"], ["question_id", 2211], ["correct", false], ["created_at", 2016-08-19 02:56:30 UTC], ["updated_at", 2016-08-19 02:56:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tabernáculo do Deserto"], ["question_id", 2211], ["correct", false], ["created_at", 2016-08-19 02:56:30 UTC], ["updated_at", 2016-08-19 02:56:30 UTC]]  (172.3ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Arão possuía que havia brotado?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Arão possuía que havia brotado?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Arão possuía que havia brotado?"], ["created_at", 2016-08-19 02:56:30 UTC], ["updated_at", 2016-08-19 02:56:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Vara"], ["question_id", 2212], ["correct", true], ["created_at", 2016-08-19 02:56:30 UTC], ["updated_at", 2016-08-19 02:56:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Flor"], ["question_id", 2212], ["correct", false], ["created_at", 2016-08-19 02:56:30 UTC], ["updated_at", 2016-08-19 02:56:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Árvore"], ["question_id", 2212], ["correct", false], ["created_at", 2016-08-19 02:56:30 UTC], ["updated_at", 2016-08-19 02:56:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Semente"], ["question_id", 2212], ["correct", false], ["created_at", 2016-08-19 02:56:30 UTC], ["updated_at", 2016-08-19 02:56:30 UTC]]  (131.0ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Ararat, Sinai e Nebo têm em comum?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Ararat, Sinai e Nebo têm em comum?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Ararat, Sinai e Nebo têm em comum?"], ["created_at", 2016-08-19 02:56:30 UTC], ["updated_at", 2016-08-19 02:56:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "São Montanhas"], ["question_id", 2213], ["correct", true], ["created_at", 2016-08-19 02:56:30 UTC], ["updated_at", 2016-08-19 02:56:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "São Rios"], ["question_id", 2213], ["correct", false], ["created_at", 2016-08-19 02:56:30 UTC], ["updated_at", 2016-08-19 02:56:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "São Profetas"], ["question_id", 2213], ["correct", false], ["created_at", 2016-08-19 02:56:30 UTC], ["updated_at", 2016-08-19 02:56:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "São Vales"], ["question_id", 2213], ["correct", false], ["created_at", 2016-08-19 02:56:30 UTC], ["updated_at", 2016-08-19 02:56:30 UTC]]  (174.5ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que as esposas hetéias de Esaú levaram para Isaque e Rebeca?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que as esposas hetéias de Esaú levaram para Isaque e Rebeca?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que as esposas hetéias de Esaú levaram para Isaque e Rebeca?"], ["created_at", 2016-08-19 02:56:31 UTC], ["updated_at", 2016-08-19 02:56:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amargura de Espírito"], ["question_id", 2214], ["correct", true], ["created_at", 2016-08-19 02:56:31 UTC], ["updated_at", 2016-08-19 02:56:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dotes"], ["question_id", 2214], ["correct", false], ["created_at", 2016-08-19 02:56:31 UTC], ["updated_at", 2016-08-19 02:56:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Grande Alegria"], ["question_id", 2214], ["correct", false], ["created_at", 2016-08-19 02:56:31 UTC], ["updated_at", 2016-08-19 02:56:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Muitos Netos"], ["question_id", 2214], ["correct", false], ["created_at", 2016-08-19 02:56:31 UTC], ["updated_at", 2016-08-19 02:56:31 UTC]]  (199.7ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que cada chefe das tribos de Israel possuía?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que cada chefe das tribos de Israel possuía?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que cada chefe das tribos de Israel possuía?"], ["created_at", 2016-08-19 02:56:31 UTC], ["updated_at", 2016-08-19 02:56:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Vara"], ["question_id", 2215], ["correct", true], ["created_at", 2016-08-19 02:56:31 UTC], ["updated_at", 2016-08-19 02:56:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Família Numerosa"], ["question_id", 2215], ["correct", false], ["created_at", 2016-08-19 02:56:31 UTC], ["updated_at", 2016-08-19 02:56:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas 1 Único Filho"], ["question_id", 2215], ["correct", false], ["created_at", 2016-08-19 02:56:31 UTC], ["updated_at", 2016-08-19 02:56:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Cachorro"], ["question_id", 2215], ["correct", false], ["created_at", 2016-08-19 02:56:31 UTC], ["updated_at", 2016-08-19 02:56:31 UTC]]  (128.5ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que César Augusto decretou?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que César Augusto decretou?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que César Augusto decretou?"], ["created_at", 2016-08-19 02:56:31 UTC], ["updated_at", 2016-08-19 02:56:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Todos Deveriam Pagar Impostos"], ["question_id", 2216], ["correct", true], ["created_at", 2016-08-19 02:56:31 UTC], ["updated_at", 2016-08-19 02:56:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Os Cidadãos Romanos Não Deveriam Pagar Imposto"], ["question_id", 2216], ["correct", false], ["created_at", 2016-08-19 02:56:31 UTC], ["updated_at", 2016-08-19 02:56:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Ninguém Precisava Pagar Imposto"], ["question_id", 2216], ["correct", false], ["created_at", 2016-08-19 02:56:31 UTC], ["updated_at", 2016-08-19 02:56:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Apenas Os Estrangeiros Deveriam Pagar Imposto"], ["question_id", 2216], ["correct", false], ["created_at", 2016-08-19 02:56:31 UTC], ["updated_at", 2016-08-19 02:56:31 UTC]]  (155.8ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Davi ajuntou em um riacho próximo, antes de sua batalha contra Golias?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Davi ajuntou em um riacho próximo, antes de sua batalha contra Golias?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Davi ajuntou em um riacho próximo, antes de sua batalha contra Golias?"], ["created_at", 2016-08-19 02:56:31 UTC], ["updated_at", 2016-08-19 02:56:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5 Pedras Lisas"], ["question_id", 2217], ["correct", true], ["created_at", 2016-08-19 02:56:31 UTC], ["updated_at", 2016-08-19 02:56:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Peixe Grande"], ["question_id", 2217], ["correct", false], ["created_at", 2016-08-19 02:56:31 UTC], ["updated_at", 2016-08-19 02:56:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Junco"], ["question_id", 2217], ["correct", false], ["created_at", 2016-08-19 02:56:31 UTC], ["updated_at", 2016-08-19 02:56:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Feixe de Vime"], ["question_id", 2217], ["correct", false], ["created_at", 2016-08-19 02:56:31 UTC], ["updated_at", 2016-08-19 02:56:31 UTC]]  (189.3ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Deus disse a Moisés para tirar, quando este viu a sarça em chamas que não se consumia pelo fogo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Deus disse a Moisés para tirar, quando este viu a sarça em chamas que não se consumia pelo fogo?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Deus disse a Moisés para tirar, quando este viu a sarça em chamas que não se consumia pelo fogo?"], ["created_at", 2016-08-19 02:56:31 UTC], ["updated_at", 2016-08-19 02:56:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sandálias"], ["question_id", 2218], ["correct", true], ["created_at", 2016-08-19 02:56:31 UTC], ["updated_at", 2016-08-19 02:56:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Túnica"], ["question_id", 2218], ["correct", false], ["created_at", 2016-08-19 02:56:31 UTC], ["updated_at", 2016-08-19 02:56:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Barba"], ["question_id", 2218], ["correct", false], ["created_at", 2016-08-19 02:56:31 UTC], ["updated_at", 2016-08-19 02:56:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cabelo"], ["question_id", 2218], ["correct", false], ["created_at", 2016-08-19 02:56:31 UTC], ["updated_at", 2016-08-19 02:56:31 UTC]]  (182.2ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Deus fez aos 185.000 que estavam acampados ao redor da cidade de Jerusalém?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Deus fez aos 185.000 que estavam acampados ao redor da cidade de Jerusalém?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Deus fez aos 185.000 que estavam acampados ao redor da cidade de Jerusalém?"], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matou-os"], ["question_id", 2219], ["correct", true], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tornou-os Inválidos"], ["question_id", 2219], ["correct", false], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cegou-os"], ["question_id", 2219], ["correct", false], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tornou-os Leprosos"], ["question_id", 2219], ["correct", false], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]]  (114.3ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Deus fez no 7º dia da criação?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Deus fez no 7º dia da criação?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Deus fez no 7º dia da criação?"], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Descansou"], ["question_id", 2220], ["correct", true], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Criou Adão e Eva"], ["question_id", 2220], ["correct", false], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Criou Os Animais Terrestres"], ["question_id", 2220], ["correct", false], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Criou Os Pássaros"], ["question_id", 2220], ["correct", false], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]]  (115.2ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que devemos fazer com aqueles que nos amaldiçoam?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que devemos fazer com aqueles que nos amaldiçoam?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que devemos fazer com aqueles que nos amaldiçoam?"], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bendizê-los"], ["question_id", 2221], ["correct", true], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Confrontá-los"], ["question_id", 2221], ["correct", false], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ignorá-los"], ["question_id", 2221], ["correct", false], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Também Amaldiçoá-los"], ["question_id", 2221], ["correct", false], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]]  (124.2ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que devemos fazer com aqueles que nos maltratam?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que devemos fazer com aqueles que nos maltratam?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que devemos fazer com aqueles que nos maltratam?"], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Orar Por Eles"], ["question_id", 2222], ["correct", true], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Surrá-los"], ["question_id", 2222], ["correct", false], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jogá-los Na Prisão"], ["question_id", 2222], ["correct", false], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Denunciá-los Às Autoridades"], ["question_id", 2222], ["correct", false], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]]  (199.0ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que devemos nos vestir para nos proteger contra as tentações de Satanás?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que devemos nos vestir para nos proteger contra as tentações de Satanás?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que devemos nos vestir para nos proteger contra as tentações de Satanás?"], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Armadura de Deus"], ["question_id", 2223], ["correct", true], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Roupas Limpas"], ["question_id", 2223], ["correct", false], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Óculos Espirituais"], ["question_id", 2223], ["correct", false], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Justiça de Cristo"], ["question_id", 2223], ["correct", false], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]]  (197.3ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que dizia a placa que foi pregada na cruz de Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que dizia a placa que foi pregada na cruz de Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que dizia a placa que foi pregada na cruz de Jesus?"], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Rei dos Judeus"], ["question_id", 2224], ["correct", true], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Rei do Universo"], ["question_id", 2224], ["correct", false], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Príncipe da Terra"], ["question_id", 2224], ["correct", false], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deus dos Deuses"], ["question_id", 2224], ["correct", false], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]]  (132.4ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Eliseu fez para transformar o caldo venenoso novamente comestível?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Eliseu fez para transformar o caldo venenoso novamente comestível?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Eliseu fez para transformar o caldo venenoso novamente comestível?"], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Colocou Farinha"], ["question_id", 2225], ["correct", true], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jogou Fora e Fez Novo Caldo"], ["question_id", 2225], ["correct", false], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assoprou No Interior da Panela"], ["question_id", 2225], ["correct", false], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cuspiu No Caldo"], ["question_id", 2225], ["correct", false], ["created_at", 2016-08-19 02:56:32 UTC], ["updated_at", 2016-08-19 02:56:32 UTC]]  (132.2ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que En-dor era?\n1,"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que En-dor era?\n1,"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que En-dor era?\n1,"], ["created_at", 2016-08-19 02:56:33 UTC], ["updated_at", 2016-08-19 02:56:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Médium"], ["question_id", 2226], ["correct", true], ["created_at", 2016-08-19 02:56:33 UTC], ["updated_at", 2016-08-19 02:56:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sacerdotisa"], ["question_id", 2226], ["correct", false], ["created_at", 2016-08-19 02:56:33 UTC], ["updated_at", 2016-08-19 02:56:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rainha"], ["question_id", 2226], ["correct", false], ["created_at", 2016-08-19 02:56:33 UTC], ["updated_at", 2016-08-19 02:56:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esposa de Ló"], ["question_id", 2226], ["correct", false], ["created_at", 2016-08-19 02:56:33 UTC], ["updated_at", 2016-08-19 02:56:33 UTC]]  (130.9ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que era incomum na sarça em chamas que Moisés viu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que era incomum na sarça em chamas que Moisés viu?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que era incomum na sarça em chamas que Moisés viu?"], ["created_at", 2016-08-19 02:56:33 UTC], ["updated_at", 2016-08-19 02:56:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Se Consumia Com O Fogo"], ["question_id", 2227], ["correct", true], ["created_at", 2016-08-19 02:56:33 UTC], ["updated_at", 2016-08-19 02:56:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Era Extremamente Quente O Calor"], ["question_id", 2227], ["correct", false], ["created_at", 2016-08-19 02:56:33 UTC], ["updated_at", 2016-08-19 02:56:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caia Neve da Sarça"], ["question_id", 2227], ["correct", false], ["created_at", 2016-08-19 02:56:33 UTC], ["updated_at", 2016-08-19 02:56:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jorrava Água da Sarça"], ["question_id", 2227], ["correct", false], ["created_at", 2016-08-19 02:56:33 UTC], ["updated_at", 2016-08-19 02:56:33 UTC]]  (131.3ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Esaú vendeu a Jacó, seu irmão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Esaú vendeu a Jacó, seu irmão?"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Esaú vendeu a Jacó, seu irmão?"], ["created_at", 2016-08-19 02:56:33 UTC], ["updated_at", 2016-08-19 02:56:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Direito de Primogenitura"], ["question_id", 2228], ["correct", true], ["created_at", 2016-08-19 02:56:33 UTC], ["updated_at", 2016-08-19 02:56:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Bênção"], ["question_id", 2228], ["correct", false], ["created_at", 2016-08-19 02:56:33 UTC], ["updated_at", 2016-08-19 02:56:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carne"], ["question_id", 2228], ["correct", false], ["created_at", 2016-08-19 02:56:33 UTC], ["updated_at", 2016-08-19 02:56:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Propriedade Rural"], ["question_id", 2228], ["correct", false], ["created_at", 2016-08-19 02:56:33 UTC], ["updated_at", 2016-08-19 02:56:33 UTC]]  (140.4ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Esaú vendeu em troca de um ensopado?\n1,"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Esaú vendeu em troca de um ensopado?\n1,"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Esaú vendeu em troca de um ensopado?\n1,"], ["created_at", 2016-08-19 02:56:33 UTC], ["updated_at", 2016-08-19 02:56:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Direito de Filho Mais Velho"], ["question_id", 2229], ["correct", true], ["created_at", 2016-08-19 02:56:33 UTC], ["updated_at", 2016-08-19 02:56:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "24 Camêlos"], ["question_id", 2229], ["correct", false], ["created_at", 2016-08-19 02:56:33 UTC], ["updated_at", 2016-08-19 02:56:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1.300 Côvados de Terra Fértil"], ["question_id", 2229], ["correct", false], ["created_at", 2016-08-19 02:56:33 UTC], ["updated_at", 2016-08-19 02:56:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oásis"], ["question_id", 2229], ["correct", false], ["created_at", 2016-08-19 02:56:33 UTC], ["updated_at", 2016-08-19 02:56:33 UTC]]  (214.6ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que estava dentro da Arca da Aliança?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que estava dentro da Arca da Aliança?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que estava dentro da Arca da Aliança?"], ["created_at", 2016-08-19 02:56:33 UTC], ["updated_at", 2016-08-19 02:56:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Tábuas da Lei de Deus"], ["question_id", 2230], ["correct", true], ["created_at", 2016-08-19 02:56:33 UTC], ["updated_at", 2016-08-19 02:56:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Manto de Arão"], ["question_id", 2230], ["correct", false], ["created_at", 2016-08-19 02:56:33 UTC], ["updated_at", 2016-08-19 02:56:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Cajado de Moisés"], ["question_id", 2230], ["correct", false], ["created_at", 2016-08-19 02:56:33 UTC], ["updated_at", 2016-08-19 02:56:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Manto de Moisés"], ["question_id", 2230], ["correct", false], ["created_at", 2016-08-19 02:56:33 UTC], ["updated_at", 2016-08-19 02:56:33 UTC]]  (132.0ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Ezequias, rei de Judá, sabiamente retirou de seu reino?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Ezequias, rei de Judá, sabiamente retirou de seu reino?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Ezequias, rei de Judá, sabiamente retirou de seu reino?"], ["created_at", 2016-08-19 02:56:33 UTC], ["updated_at", 2016-08-19 02:56:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Altares dos Deuses Pagãos"], ["question_id", 2231], ["correct", true], ["created_at", 2016-08-19 02:56:33 UTC], ["updated_at", 2016-08-19 02:56:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Sucessores Ao Trono Real"], ["question_id", 2231], ["correct", false], ["created_at", 2016-08-19 02:56:33 UTC], ["updated_at", 2016-08-19 02:56:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todos Os Fracos Espiritualmente"], ["question_id", 2231], ["correct", false], ["created_at", 2016-08-19 02:56:33 UTC], ["updated_at", 2016-08-19 02:56:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todos Os Escravos Conquistados"], ["question_id", 2231], ["correct", false], ["created_at", 2016-08-19 02:56:33 UTC], ["updated_at", 2016-08-19 02:56:33 UTC]]  (140.8ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que foi pregado na cruz acima da cabeça de Jesus Cristo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que foi pregado na cruz acima da cabeça de Jesus Cristo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que foi pregado na cruz acima da cabeça de Jesus Cristo?"], ["created_at", 2016-08-19 02:56:34 UTC], ["updated_at", 2016-08-19 02:56:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Placa Contendo Uma Inscrição"], ["question_id", 2232], ["correct", true], ["created_at", 2016-08-19 02:56:34 UTC], ["updated_at", 2016-08-19 02:56:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Coroa de Espinhos"], ["question_id", 2232], ["correct", false], ["created_at", 2016-08-19 02:56:34 UTC], ["updated_at", 2016-08-19 02:56:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Cajado de Arão"], ["question_id", 2232], ["correct", false], ["created_at", 2016-08-19 02:56:34 UTC], ["updated_at", 2016-08-19 02:56:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Túnica Real"], ["question_id", 2232], ["correct", false], ["created_at", 2016-08-19 02:56:34 UTC], ["updated_at", 2016-08-19 02:56:34 UTC]]  (172.1ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Golias disse a Davi quando viu o cajado na mão de Davi?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Golias disse a Davi quando viu o cajado na mão de Davi?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Golias disse a Davi quando viu o cajado na mão de Davi?"], ["created_at", 2016-08-19 02:56:34 UTC], ["updated_at", 2016-08-19 02:56:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sou Eu Um Cão, Para Que Venhas A Mim Com Cajados?"], ["question_id", 2233], ["correct", true], ["created_at", 2016-08-19 02:56:34 UTC], ["updated_at", 2016-08-19 02:56:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Acaso Sou Ovelha Para Ser Pastoreada Por Ti?"], ["question_id", 2233], ["correct", false], ["created_at", 2016-08-19 02:56:34 UTC], ["updated_at", 2016-08-19 02:56:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isso É O Melhor Que Você Tem Para Me Enfrentar?"], ["question_id", 2233], ["correct", false], ["created_at", 2016-08-19 02:56:34 UTC], ["updated_at", 2016-08-19 02:56:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Usarei Seu Cajado Para Tirar Sua Cabeça!"], ["question_id", 2233], ["correct", false], ["created_at", 2016-08-19 02:56:34 UTC], ["updated_at", 2016-08-19 02:56:34 UTC]]  (157.9ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que guiou os reis Magos em sua jornada a partir do oriente?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que guiou os reis Magos em sua jornada a partir do oriente?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que guiou os reis Magos em sua jornada a partir do oriente?"], ["created_at", 2016-08-19 02:56:34 UTC], ["updated_at", 2016-08-19 02:56:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Estrela"], ["question_id", 2234], ["correct", true], ["created_at", 2016-08-19 02:56:34 UTC], ["updated_at", 2016-08-19 02:56:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Pomba"], ["question_id", 2234], ["correct", false], ["created_at", 2016-08-19 02:56:34 UTC], ["updated_at", 2016-08-19 02:56:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Nuvem"], ["question_id", 2234], ["correct", false], ["created_at", 2016-08-19 02:56:34 UTC], ["updated_at", 2016-08-19 02:56:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Anjo"], ["question_id", 2234], ["correct", false], ["created_at", 2016-08-19 02:56:34 UTC], ["updated_at", 2016-08-19 02:56:34 UTC]]  (140.4ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que houve durante as últimas 3 horas em que Jesus esteve crucificado?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que houve durante as últimas 3 horas em que Jesus esteve crucificado?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que houve durante as últimas 3 horas em que Jesus esteve crucificado?"], ["created_at", 2016-08-19 02:56:34 UTC], ["updated_at", 2016-08-19 02:56:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escuridão"], ["question_id", 2235], ["correct", true], ["created_at", 2016-08-19 02:56:34 UTC], ["updated_at", 2016-08-19 02:56:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Muitos Gemidos de Jesus"], ["question_id", 2235], ["correct", false], ["created_at", 2016-08-19 02:56:34 UTC], ["updated_at", 2016-08-19 02:56:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Muita Oração Por Parte dos Discípulos"], ["question_id", 2235], ["correct", false], ["created_at", 2016-08-19 02:56:34 UTC], ["updated_at", 2016-08-19 02:56:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus Foi Surrado Mais Algumas Vezes"], ["question_id", 2235], ["correct", false], ["created_at", 2016-08-19 02:56:34 UTC], ["updated_at", 2016-08-19 02:56:34 UTC]]  (131.7ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jacó comprou de seu irmão, Esaú?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jacó comprou de seu irmão, Esaú?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Jacó comprou de seu irmão, Esaú?"], ["created_at", 2016-08-19 02:56:34 UTC], ["updated_at", 2016-08-19 02:56:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Direito À Primogenitura"], ["question_id", 2236], ["correct", true], ["created_at", 2016-08-19 02:56:34 UTC], ["updated_at", 2016-08-19 02:56:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carne"], ["question_id", 2236], ["correct", false], ["created_at", 2016-08-19 02:56:34 UTC], ["updated_at", 2016-08-19 02:56:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bênção"], ["question_id", 2236], ["correct", false], ["created_at", 2016-08-19 02:56:34 UTC], ["updated_at", 2016-08-19 02:56:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Grande Propriedade Rural"], ["question_id", 2236], ["correct", false], ["created_at", 2016-08-19 02:56:34 UTC], ["updated_at", 2016-08-19 02:56:34 UTC]]  (139.2ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jacó tomou de Esaú?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jacó tomou de Esaú?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Jacó tomou de Esaú?"], ["created_at", 2016-08-19 02:56:34 UTC], ["updated_at", 2016-08-19 02:56:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Bênção"], ["question_id", 2237], ["correct", true], ["created_at", 2016-08-19 02:56:34 UTC], ["updated_at", 2016-08-19 02:56:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Direito de Primogenitura"], ["question_id", 2237], ["correct", false], ["created_at", 2016-08-19 02:56:34 UTC], ["updated_at", 2016-08-19 02:56:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Lugar Na Família"], ["question_id", 2237], ["correct", false], ["created_at", 2016-08-19 02:56:34 UTC], ["updated_at", 2016-08-19 02:56:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Grandes Propriedades Rurais"], ["question_id", 2237], ["correct", false], ["created_at", 2016-08-19 02:56:34 UTC], ["updated_at", 2016-08-19 02:56:34 UTC]]  (248.9ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus disse à mulher pecadora, em resposta pelo fato da mesma ter-lhe ungido seus pés?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus disse à mulher pecadora, em resposta pelo fato da mesma ter-lhe ungido seus pés?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Jesus disse à mulher pecadora, em resposta pelo fato da mesma ter-lhe ungido seus pés?"], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Teus Pecados Estão Perdoados"], ["question_id", 2238], ["correct", true], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tu É Muito Gentil"], ["question_id", 2238], ["correct", false], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tua Vida Agora É Minha"], ["question_id", 2238], ["correct", false], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vá Em Paz"], ["question_id", 2238], ["correct", false], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]]  (132.8ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus disse quando Ele apareceu para os discípulos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus disse quando Ele apareceu para os discípulos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Jesus disse quando Ele apareceu para os discípulos?"], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Paz Esteja Convosco"], ["question_id", 2239], ["correct", true], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vocês Não Me Reconhecem?"], ["question_id", 2239], ["correct", false], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Duvidem!"], ["question_id", 2239], ["correct", false], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Desejam Me Tocar?"], ["question_id", 2239], ["correct", false], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]]  (155.7ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus disse que as pessoas haviam transformado o Templo de Deus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus disse que as pessoas haviam transformado o Templo de Deus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Jesus disse que as pessoas haviam transformado o Templo de Deus?"], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Um Antro de Ladrões"], ["question_id", 2240], ["correct", true], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Um Covil de Lobos"], ["question_id", 2240], ["correct", false], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Um Cemitério Com Túmulos Abertos"], ["question_id", 2240], ["correct", false], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Uma Casa de Oração"], ["question_id", 2240], ["correct", false], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]]  (116.2ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus disse que havia superado?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus disse que havia superado?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Jesus disse que havia superado?"], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Mundo"], ["question_id", 2241], ["correct", true], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Fome"], ["question_id", 2241], ["correct", false], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Sono"], ["question_id", 2241], ["correct", false], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Inimizade"], ["question_id", 2241], ["correct", false], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]]  (132.9ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus ensinou que acontecerá à uma casa ou cidade que estiver dividida?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus ensinou que acontecerá à uma casa ou cidade que estiver dividida?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Jesus ensinou que acontecerá à uma casa ou cidade que estiver dividida?"], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Substistirá"], ["question_id", 2242], ["correct", true], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Será Mais Fácil de Ser Governada"], ["question_id", 2242], ["correct", false], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Parecerá Maior"], ["question_id", 2242], ["correct", false], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Será Melhor Conhecida"], ["question_id", 2242], ["correct", false], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]]  (131.7ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus ensinou que devemos fazer quando forçados a andar 1 milha?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus ensinou que devemos fazer quando forçados a andar 1 milha?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Jesus ensinou que devemos fazer quando forçados a andar 1 milha?"], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Andarmos Duas"], ["question_id", 2243], ["correct", true], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marcharmos"], ["question_id", 2243], ["correct", false], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nos Recusarmos A Ir"], ["question_id", 2243], ["correct", false], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sair Correndo"], ["question_id", 2243], ["correct", false], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]]  (122.7ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus fez para ensinar os seus discípulos sobre servir ao próximo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus fez para ensinar os seus discípulos sobre servir ao próximo?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Jesus fez para ensinar os seus discípulos sobre servir ao próximo?"], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Lavou Os Pés de Seus Discípulos"], ["question_id", 2244], ["correct", true], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Discípulos Lavaram Os Pés de Jesus"], ["question_id", 2244], ["correct", false], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todos Lavaram Os Pés Uns dos Outros"], ["question_id", 2244], ["correct", false], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas Foram Lavados Os Pés de Judas, O Traidor"], ["question_id", 2244], ["correct", false], ["created_at", 2016-08-19 02:56:35 UTC], ["updated_at", 2016-08-19 02:56:35 UTC]]  (115.4ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus instruiu a seus discípulos a dizerem se alguém se recusasse a emprestar o jumento?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus instruiu a seus discípulos a dizerem se alguém se recusasse a emprestar o jumento?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Jesus instruiu a seus discípulos a dizerem se alguém se recusasse a emprestar o jumento?"], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Senhor Precisa Dele"], ["question_id", 2245], ["correct", true], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vamos Trocá-lo Por Alimento"], ["question_id", 2245], ["correct", false], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pagaremos Depois"], ["question_id", 2245], ["correct", false], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Temos Dinheiro Para Comprar"], ["question_id", 2245], ["correct", false], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]]  (131.2ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus nos diz para não arremessar aos porcos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus nos diz para não arremessar aos porcos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Jesus nos diz para não arremessar aos porcos?"], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pérolas"], ["question_id", 2246], ["correct", true], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Diamantes"], ["question_id", 2246], ["correct", false], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moedas"], ["question_id", 2246], ["correct", false], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lavagem"], ["question_id", 2246], ["correct", false], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]]  (130.5ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus nos ensinou se alguém nos pede nossa camisa?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus nos ensinou se alguém nos pede nossa camisa?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Jesus nos ensinou se alguém nos pede nossa camisa?"], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dar O Nosso Casaco Também"], ["question_id", 2247], ["correct", true], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vendê-lo A Quem Pediu"], ["question_id", 2247], ["correct", false], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dá-la A Quem Pediu"], ["question_id", 2247], ["correct", false], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Emprestá-la A Quem Pediu"], ["question_id", 2247], ["correct", false], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]]  (139.4ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus nos instruiu a fazer quando nos batem na face direita?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus nos instruiu a fazer quando nos batem na face direita?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Jesus nos instruiu a fazer quando nos batem na face direita?"], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dar A Outra Face"], ["question_id", 2248], ["correct", true], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Revidar"], ["question_id", 2248], ["correct", false], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Buscar Ajuda Legal"], ["question_id", 2248], ["correct", false], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matar O Agressor"], ["question_id", 2248], ["correct", false], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]]  (140.9ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus oferecia para aqueles que o seguiam?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jesus oferecia para aqueles que o seguiam?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Jesus oferecia para aqueles que o seguiam?"], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Vida Eterna"], ["question_id", 2249], ["correct", true], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tudo O Que Eles Queriam"], ["question_id", 2249], ["correct", false], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Vida de Luxo"], ["question_id", 2249], ["correct", false], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Vida de Pobreza e Perseguição"], ["question_id", 2249], ["correct", false], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]]  (138.8ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Joabe fez a seu irmão enquanto o beijava?\n1,"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Joabe fez a seu irmão enquanto o beijava?\n1,"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Joabe fez a seu irmão enquanto o beijava?\n1,"], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matou-o"], ["question_id", 2250], ["correct", true], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraçou-o"], ["question_id", 2250], ["correct", false], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Coroou-o Rei"], ["question_id", 2250], ["correct", false], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Desferiu-lhe Um Tapa"], ["question_id", 2250], ["correct", false], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]]  (140.9ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jônatas foi?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Jônatas foi?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Jônatas foi?"], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todas As Alternativas Estão Corretas"], ["question_id", 2251], ["correct", true], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Melhor Amigo de Davi"], ["question_id", 2251], ["correct", false], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filho de Saul"], ["question_id", 2251], ["correct", false], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cunhado de Davi"], ["question_id", 2251], ["correct", false], ["created_at", 2016-08-19 02:56:36 UTC], ["updated_at", 2016-08-19 02:56:36 UTC]]  (122.4ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que José disse ao Faraó sobre o significado dos sonhos que este tivera?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que José disse ao Faraó sobre o significado dos sonhos que este tivera?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que José disse ao Faraó sobre o significado dos sonhos que este tivera?"], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "De Que Haveria Um Grande Período de Fome No Egito"], ["question_id", 2252], ["correct", true], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "De Que Haveria Uma Grande Tempestade"], ["question_id", 2252], ["correct", false], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "De Que Haveria Uma Pestilência Muito Grave"], ["question_id", 2252], ["correct", false], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Da Necessidade Em Libertar O Povo Hebreu"], ["question_id", 2252], ["correct", false], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]]  (122.8ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que José fez com seus irmãos por 3 dias, quando estes foram comprar grãos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que José fez com seus irmãos por 3 dias, quando estes foram comprar grãos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que José fez com seus irmãos por 3 dias, quando estes foram comprar grãos?"], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Manteve-os Preso Em Uma Prisão"], ["question_id", 2253], ["correct", true], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hospedou-os No Palácio do Faraó"], ["question_id", 2253], ["correct", false], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mandou Açoitá-los"], ["question_id", 2253], ["correct", false], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Impediu Que Falassem"], ["question_id", 2253], ["correct", false], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]]  (147.6ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que José ganhou de seu pai que deixou seus irmãos com muito ciúme?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que José ganhou de seu pai que deixou seus irmãos com muito ciúme?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que José ganhou de seu pai que deixou seus irmãos com muito ciúme?"], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Túnica de Muitas Cores"], ["question_id", 2254], ["correct", true], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Rebanho de Ovelhas"], ["question_id", 2254], ["correct", false], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Bênção da Primogenitura"], ["question_id", 2254], ["correct", false], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Herança de Toda A Família"], ["question_id", 2254], ["correct", false], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]]  (114.0ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que José, filho de Jaco, interpretou para o Faraó?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que José, filho de Jaco, interpretou para o Faraó?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que José, filho de Jaco, interpretou para o Faraó?"], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sonhos"], ["question_id", 2255], ["correct", true], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Livros"], ["question_id", 2255], ["correct", false], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Escrita Na Parede"], ["question_id", 2255], ["correct", false], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Língua Estrangeira"], ["question_id", 2255], ["correct", false], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]]  (132.5ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Josué enviou para a cidade de Jericó?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Josué enviou para a cidade de Jericó?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Josué enviou para a cidade de Jericó?"], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Espias"], ["question_id", 2256], ["correct", true], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Presentes"], ["question_id", 2256], ["correct", false], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gado"], ["question_id", 2256], ["correct", false], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Cavalo de Tróia"], ["question_id", 2256], ["correct", false], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]]  (132.6ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o servo de Abraão deu a Rebeca como agradecimento, próximo ao poço?\n1,"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que o servo de Abraão deu a Rebeca como agradecimento, próximo ao poço?\n1,"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que o servo de Abraão deu a Rebeca como agradecimento, próximo ao poço?\n1,"], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Argola de Ouro e 2 Pulseiras de Ouro"], ["question_id", 2257], ["correct", true], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "24 Kg de Ouro"], ["question_id", 2257], ["correct", false], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12 Camêlos"], ["question_id", 2257], ["correct", false], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1.300 Côvados de Terra Fértil"], ["question_id", 2257], ["correct", false], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]]  (132.4ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que ocorreu durante o reinado de Oséias?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que ocorreu durante o reinado de Oséias?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que ocorreu durante o reinado de Oséias?"], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Reino Foi Conquistado Pelos Assírios"], ["question_id", 2258], ["correct", true], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Reino Enfrentou Uma Grande Revolução"], ["question_id", 2258], ["correct", false], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Perseguido Pela Própria Família Real"], ["question_id", 2258], ["correct", false], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Sacerdotes do Templo Desejavam Expulsá-lo"], ["question_id", 2258], ["correct", false], ["created_at", 2016-08-19 02:56:37 UTC], ["updated_at", 2016-08-19 02:56:37 UTC]]  (115.2ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os apóstolos deveriam fazer se uma casa ou cidade não os recebesse?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os apóstolos deveriam fazer se uma casa ou cidade não os recebesse?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que os apóstolos deveriam fazer se uma casa ou cidade não os recebesse?"], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sacudir O Pó dos Pés"], ["question_id", 2259], ["correct", true], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Voltar Outro Dia"], ["question_id", 2259], ["correct", false], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ficar e Orar Por Eles"], ["question_id", 2259], ["correct", false], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sair Correndo"], ["question_id", 2259], ["correct", false], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]]  (115.7ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os discípulos de Jesus fizeram ao verem Jesus ser levado preso pelos soldados romanos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os discípulos de Jesus fizeram ao verem Jesus ser levado preso pelos soldados romanos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que os discípulos de Jesus fizeram ao verem Jesus ser levado preso pelos soldados romanos?"], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fugiram"], ["question_id", 2260], ["correct", true], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Investiram Contra Os Soldados"], ["question_id", 2260], ["correct", false], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jogaram Lanças Sobre Os Soldados"], ["question_id", 2260], ["correct", false], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Xingaram Os Soldados"], ["question_id", 2260], ["correct", false], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]]  (114.6ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os filisteus colocaram dentro da Arca da Aliança quando a devolveram aos israelitas?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os filisteus colocaram dentro da Arca da Aliança quando a devolveram aos israelitas?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que os filisteus colocaram dentro da Arca da Aliança quando a devolveram aos israelitas?"], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5 Camundongos de Ouro"], ["question_id", 2261], ["correct", true], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 Sapos de Ouro"], ["question_id", 2261], ["correct", false], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Bezerro de Ouro"], ["question_id", 2261], ["correct", false], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Gatos de Ouro"], ["question_id", 2261], ["correct", false], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]]  (132.0ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os irmãos de José foram fazer no Egito?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os irmãos de José foram fazer no Egito?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que os irmãos de José foram fazer no Egito?"], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Comprar Grãos"], ["question_id", 2262], ["correct", true], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Comprar Água do Rio Nilo"], ["question_id", 2262], ["correct", false], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Comprar Uma Esposa Para José"], ["question_id", 2262], ["correct", false], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Comprar Novamente A José Que Foi Vendido Escravo"], ["question_id", 2262], ["correct", false], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]]  (183.4ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os israelitas fizeram a Jericó após a queda do muro?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os israelitas fizeram a Jericó após a queda do muro?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que os israelitas fizeram a Jericó após a queda do muro?"], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Queimaram"], ["question_id", 2263], ["correct", true], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Limparam"], ["question_id", 2263], ["correct", false], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Se Mudaram Para Lá"], ["question_id", 2263], ["correct", false], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Reconstruíram O Muro"], ["question_id", 2263], ["correct", false], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]]  (132.4ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os israelitas fizeram para derrubar as muralhas de Jericó?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os israelitas fizeram para derrubar as muralhas de Jericó?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que os israelitas fizeram para derrubar as muralhas de Jericó?"], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gritaram"], ["question_id", 2264], ["correct", true], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jogaram Tochas de Fogo"], ["question_id", 2264], ["correct", false], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pularam Sobre A Mesma"], ["question_id", 2264], ["correct", false], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jogaram Água Fervente"], ["question_id", 2264], ["correct", false], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]]  (172.4ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os outros 2 Presidentes nomeados pelo rei Dario sentiam em relação ao cargo de Daniel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os outros 2 Presidentes nomeados pelo rei Dario sentiam em relação ao cargo de Daniel?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que os outros 2 Presidentes nomeados pelo rei Dario sentiam em relação ao cargo de Daniel?"], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Inveja"], ["question_id", 2265], ["correct", true], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Indiferença"], ["question_id", 2265], ["correct", false], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Simpatia"], ["question_id", 2265], ["correct", false], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amizade"], ["question_id", 2265], ["correct", false], ["created_at", 2016-08-19 02:56:38 UTC], ["updated_at", 2016-08-19 02:56:38 UTC]]  (147.9ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os pastores fizeram logo após terem recebido a notícia do nascimento do menino Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os pastores fizeram logo após terem recebido a notícia do nascimento do menino Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que os pastores fizeram logo após terem recebido a notícia do nascimento do menino Jesus?"], ["created_at", 2016-08-19 02:56:39 UTC], ["updated_at", 2016-08-19 02:56:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foram Ver O Messias"], ["question_id", 2266], ["correct", true], ["created_at", 2016-08-19 02:56:39 UTC], ["updated_at", 2016-08-19 02:56:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fugiram de Medo"], ["question_id", 2266], ["correct", false], ["created_at", 2016-08-19 02:56:39 UTC], ["updated_at", 2016-08-19 02:56:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Desmaiaram de Terror"], ["question_id", 2266], ["correct", false], ["created_at", 2016-08-19 02:56:39 UTC], ["updated_at", 2016-08-19 02:56:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foram Atrás das Ovelhas Que Se Perderam"], ["question_id", 2266], ["correct", false], ["created_at", 2016-08-19 02:56:39 UTC], ["updated_at", 2016-08-19 02:56:39 UTC]]  (113.5ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os soldados romanos disseram a Jesus quando colocaram a coroa de espinhos sobre Sua cabeça?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os soldados romanos disseram a Jesus quando colocaram a coroa de espinhos sobre Sua cabeça?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que os soldados romanos disseram a Jesus quando colocaram a coroa de espinhos sobre Sua cabeça?"], ["created_at", 2016-08-19 02:56:39 UTC], ["updated_at", 2016-08-19 02:56:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salve, Rei dos Judeus!"], ["question_id", 2267], ["correct", true], ["created_at", 2016-08-19 02:56:39 UTC], ["updated_at", 2016-08-19 02:56:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fique Em Pé Como Um Rei!"], ["question_id", 2267], ["correct", false], ["created_at", 2016-08-19 02:56:39 UTC], ["updated_at", 2016-08-19 02:56:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Onde Estão Seus Amigos Agora, Ó Rei?"], ["question_id", 2267], ["correct", false], ["created_at", 2016-08-19 02:56:39 UTC], ["updated_at", 2016-08-19 02:56:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Querem Que Façamos, Vossa Majestade?"], ["question_id", 2267], ["correct", false], ["created_at", 2016-08-19 02:56:39 UTC], ["updated_at", 2016-08-19 02:56:39 UTC]]  (197.6ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os soldados romanos faziam para apressar a morte das pessoas crucificadas?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os soldados romanos faziam para apressar a morte das pessoas crucificadas?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que os soldados romanos faziam para apressar a morte das pessoas crucificadas?"], ["created_at", 2016-08-19 02:56:39 UTC], ["updated_at", 2016-08-19 02:56:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quebravam Suas Pernas"], ["question_id", 2268], ["correct", true], ["created_at", 2016-08-19 02:56:39 UTC], ["updated_at", 2016-08-19 02:56:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Drogavam-nas"], ["question_id", 2268], ["correct", false], ["created_at", 2016-08-19 02:56:39 UTC], ["updated_at", 2016-08-19 02:56:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Açoitavam-nas"], ["question_id", 2268], ["correct", false], ["created_at", 2016-08-19 02:56:39 UTC], ["updated_at", 2016-08-19 02:56:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quebravam Suas Costelas"], ["question_id", 2268], ["correct", false], ["created_at", 2016-08-19 02:56:39 UTC], ["updated_at", 2016-08-19 02:56:39 UTC]]  (158.3ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os soldados romanos fizeram com Jesus enquanto batiam-No com a cana em sua cabeça?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que os soldados romanos fizeram com Jesus enquanto batiam-No com a cana em sua cabeça?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que os soldados romanos fizeram com Jesus enquanto batiam-No com a cana em sua cabeça?"], ["created_at", 2016-08-19 02:56:39 UTC], ["updated_at", 2016-08-19 02:56:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cuspiam-no"], ["question_id", 2269], ["correct", true], ["created_at", 2016-08-19 02:56:39 UTC], ["updated_at", 2016-08-19 02:56:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Xingavam-no"], ["question_id", 2269], ["correct", false], ["created_at", 2016-08-19 02:56:39 UTC], ["updated_at", 2016-08-19 02:56:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Açoitavam-no"], ["question_id", 2269], ["correct", false], ["created_at", 2016-08-19 02:56:39 UTC], ["updated_at", 2016-08-19 02:56:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Soqueavam-no"], ["question_id", 2269], ["correct", false], ["created_at", 2016-08-19 02:56:39 UTC], ["updated_at", 2016-08-19 02:56:39 UTC]]  (164.0ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Pedro encontrou dentro da boca de um peixe?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Pedro encontrou dentro da boca de um peixe?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Pedro encontrou dentro da boca de um peixe?"], ["created_at", 2016-08-19 02:56:39 UTC], ["updated_at", 2016-08-19 02:56:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Moeda"], ["question_id", 2270], ["correct", true], ["created_at", 2016-08-19 02:56:39 UTC], ["updated_at", 2016-08-19 02:56:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Diamante"], ["question_id", 2270], ["correct", false], ["created_at", 2016-08-19 02:56:39 UTC], ["updated_at", 2016-08-19 02:56:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Outro Peixe Menor"], ["question_id", 2270], ["correct", false], ["created_at", 2016-08-19 02:56:39 UTC], ["updated_at", 2016-08-19 02:56:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Recado de Jonas"], ["question_id", 2270], ["correct", false], ["created_at", 2016-08-19 02:56:39 UTC], ["updated_at", 2016-08-19 02:56:39 UTC]]  (140.7ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Pedro, Tiago e João fizeram como resposta após Jesus tê-los instruídos para vigiarem no Jardim do Getsêmani?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Pedro, Tiago e João fizeram como resposta após Jesus tê-los instruídos para vigiarem no Jardim do Getsêmani?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Pedro, Tiago e João fizeram como resposta após Jesus tê-los instruídos para vigiarem no Jardim do Getsêmani?"], ["created_at", 2016-08-19 02:56:39 UTC], ["updated_at", 2016-08-19 02:56:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dormiram"], ["question_id", 2271], ["correct", true], ["created_at", 2016-08-19 02:56:39 UTC], ["updated_at", 2016-08-19 02:56:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ficaram Conversando Entre Si"], ["question_id", 2271], ["correct", false], ["created_at", 2016-08-19 02:56:39 UTC], ["updated_at", 2016-08-19 02:56:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Discutiram Quem Era O Maior Dentre Eles"], ["question_id", 2271], ["correct", false], ["created_at", 2016-08-19 02:56:39 UTC], ["updated_at", 2016-08-19 02:56:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oraram"], ["question_id", 2271], ["correct", false], ["created_at", 2016-08-19 02:56:39 UTC], ["updated_at", 2016-08-19 02:56:39 UTC]]  (157.7ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que pertencia a Esaú que lhe foi tomado por seu irmão Jacó?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que pertencia a Esaú que lhe foi tomado por seu irmão Jacó?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que pertencia a Esaú que lhe foi tomado por seu irmão Jacó?"], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Bênção"], ["question_id", 2272], ["correct", true], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Direito de Primogenitura"], ["question_id", 2272], ["correct", false], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Maiores Propriedades Rurais da Família"], ["question_id", 2272], ["correct", false], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Filhos"], ["question_id", 2272], ["correct", false], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]]  (131.3ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Pôncio Pilatos disse quando trouxe Jesus do Pretório e O apresetou à multidão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Pôncio Pilatos disse quando trouxe Jesus do Pretório e O apresetou à multidão?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Pôncio Pilatos disse quando trouxe Jesus do Pretório e O apresetou à multidão?"], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eis O Homem!"], ["question_id", 2273], ["correct", true], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Confessou!"], ["question_id", 2273], ["correct", false], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Já Foi Punido O Suficiente!"], ["question_id", 2273], ["correct", false], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Querem Ele Ou Barrabás?"], ["question_id", 2273], ["correct", false], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]]  (114.7ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Pôncio Pilatos fez enquanto disse: \"Sou inocente do sangue deste homem\"?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Pôncio Pilatos fez enquanto disse: \"Sou inocente do sangue deste homem\"?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Pôncio Pilatos fez enquanto disse: \"Sou inocente do sangue deste homem\"?"], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lavou As Mãos"], ["question_id", 2274], ["correct", true], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Chorou"], ["question_id", 2274], ["correct", false], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fugiu da Presença de Jesus"], ["question_id", 2274], ["correct", false], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Consultou Seus Conselheiros"], ["question_id", 2274], ["correct", false], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]]  (123.4ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Raabe fez descer quando os israelitas invadiram a cidade de Jericó?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Raabe fez descer quando os israelitas invadiram a cidade de Jericó?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Raabe fez descer quando os israelitas invadiram a cidade de Jericó?"], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Corda"], ["question_id", 2275], ["correct", true], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Escada"], ["question_id", 2275], ["correct", false], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Porta"], ["question_id", 2275], ["correct", false], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Espada"], ["question_id", 2275], ["correct", false], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]]  (122.6ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Raabe pediu aos espias em troca de sua colaboração em escondê-los?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Raabe pediu aos espias em troca de sua colaboração em escondê-los?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Raabe pediu aos espias em troca de sua colaboração em escondê-los?"], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Sua Família Fosse Poupada"], ["question_id", 2276], ["correct", true], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Perdão das Dívidas Que Possuía"], ["question_id", 2276], ["correct", false], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Recompensa Financeira"], ["question_id", 2276], ["correct", false], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Casar-se Com Josué"], ["question_id", 2276], ["correct", false], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]]  (140.2ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que representavam os 5 camundongos de ouro que foram colocados pelos filisteus dentro da Arca da Aliança?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que representavam os 5 camundongos de ouro que foram colocados pelos filisteus dentro da Arca da Aliança?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que representavam os 5 camundongos de ouro que foram colocados pelos filisteus dentro da Arca da Aliança?"], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os 5 Chefes dos Filisteus"], ["question_id", 2277], ["correct", true], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As 5 Vitórias Obtidas Em Batalhas"], ["question_id", 2277], ["correct", false], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Os Israelitas Deveriam Pagar 5 Baús de Ouro"], ["question_id", 2277], ["correct", false], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todas As Alternativas"], ["question_id", 2277], ["correct", false], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]]  (140.1ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Rubens, o filho mais velho de Jacó, perdeu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Rubens, o filho mais velho de Jacó, perdeu?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Rubens, o filho mais velho de Jacó, perdeu?"], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Primogenitura"], ["question_id", 2278], ["correct", true], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Mãe Em Um Acidente"], ["question_id", 2278], ["correct", false], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Irmão José Na Cova dos Leões"], ["question_id", 2278], ["correct", false], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Direito de Comprar Novamente A José"], ["question_id", 2278], ["correct", false], ["created_at", 2016-08-19 02:56:40 UTC], ["updated_at", 2016-08-19 02:56:40 UTC]]  (139.7ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Salomão construiu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Salomão construiu?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Salomão construiu?"], ["created_at", 2016-08-19 02:56:41 UTC], ["updated_at", 2016-08-19 02:56:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Templo de Deus"], ["question_id", 2279], ["correct", true], ["created_at", 2016-08-19 02:56:41 UTC], ["updated_at", 2016-08-19 02:56:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Jardins da Babilônia"], ["question_id", 2279], ["correct", false], ["created_at", 2016-08-19 02:56:41 UTC], ["updated_at", 2016-08-19 02:56:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Torre de Babel"], ["question_id", 2279], ["correct", false], ["created_at", 2016-08-19 02:56:41 UTC], ["updated_at", 2016-08-19 02:56:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Arca da Aliança"], ["question_id", 2279], ["correct", false], ["created_at", 2016-08-19 02:56:41 UTC], ["updated_at", 2016-08-19 02:56:41 UTC]]  (182.1ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Sansão amarrou nas caudas de 300 raposas?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Sansão amarrou nas caudas de 300 raposas?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Sansão amarrou nas caudas de 300 raposas?"], ["created_at", 2016-08-19 02:56:41 UTC], ["updated_at", 2016-08-19 02:56:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fachos Incendiados"], ["question_id", 2280], ["correct", true], ["created_at", 2016-08-19 02:56:41 UTC], ["updated_at", 2016-08-19 02:56:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Coleira"], ["question_id", 2280], ["correct", false], ["created_at", 2016-08-19 02:56:41 UTC], ["updated_at", 2016-08-19 02:56:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sino"], ["question_id", 2280], ["correct", false], ["created_at", 2016-08-19 02:56:41 UTC], ["updated_at", 2016-08-19 02:56:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sapo"], ["question_id", 2280], ["correct", false], ["created_at", 2016-08-19 02:56:41 UTC], ["updated_at", 2016-08-19 02:56:41 UTC]]  (198.9ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Sansão e seus pais encontraram quando estavam a caminho de Timnate?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Sansão e seus pais encontraram quando estavam a caminho de Timnate?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Sansão e seus pais encontraram quando estavam a caminho de Timnate?"], ["created_at", 2016-08-19 02:56:41 UTC], ["updated_at", 2016-08-19 02:56:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Leão"], ["question_id", 2281], ["correct", true], ["created_at", 2016-08-19 02:56:41 UTC], ["updated_at", 2016-08-19 02:56:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Multidão Enfurecida"], ["question_id", 2281], ["correct", false], ["created_at", 2016-08-19 02:56:41 UTC], ["updated_at", 2016-08-19 02:56:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Serpente"], ["question_id", 2281], ["correct", false], ["created_at", 2016-08-19 02:56:41 UTC], ["updated_at", 2016-08-19 02:56:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Queixada de Jumento"], ["question_id", 2281], ["correct", false], ["created_at", 2016-08-19 02:56:41 UTC], ["updated_at", 2016-08-19 02:56:41 UTC]]  (139.3ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Sansão fez ao leão com o qual lutou?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Sansão fez ao leão com o qual lutou?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Sansão fez ao leão com o qual lutou?"], ["created_at", 2016-08-19 02:56:41 UTC], ["updated_at", 2016-08-19 02:56:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Despedaçou-o"], ["question_id", 2282], ["correct", true], ["created_at", 2016-08-19 02:56:41 UTC], ["updated_at", 2016-08-19 02:56:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cortou Sua Juba"], ["question_id", 2282], ["correct", false], ["created_at", 2016-08-19 02:56:41 UTC], ["updated_at", 2016-08-19 02:56:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cortou Sua Língua"], ["question_id", 2282], ["correct", false], ["created_at", 2016-08-19 02:56:41 UTC], ["updated_at", 2016-08-19 02:56:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quebrou-lhe As Pernas"], ["question_id", 2282], ["correct", false], ["created_at", 2016-08-19 02:56:41 UTC], ["updated_at", 2016-08-19 02:56:41 UTC]]  (147.2ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Sansão fez com a queixada de um jumento?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que Sansão fez com a queixada de um jumento?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que Sansão fez com a queixada de um jumento?"], ["created_at", 2016-08-19 02:56:41 UTC], ["updated_at", 2016-08-19 02:56:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Usou Para Matar 1.000 Homens"], ["question_id", 2283], ["correct", true], ["created_at", 2016-08-19 02:56:41 UTC], ["updated_at", 2016-08-19 02:56:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Usou Para Cavar Um Túnel e Fugir"], ["question_id", 2283], ["correct", false], ["created_at", 2016-08-19 02:56:41 UTC], ["updated_at", 2016-08-19 02:56:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Usou Para Cavar Um Poço Para Matar Sua Sede"], ["question_id", 2283], ["correct", false], ["created_at", 2016-08-19 02:56:41 UTC], ["updated_at", 2016-08-19 02:56:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Usou Para Colher Uma Plantação de Trigo"], ["question_id", 2283], ["correct", false], ["created_at", 2016-08-19 02:56:41 UTC], ["updated_at", 2016-08-19 02:56:41 UTC]]  (139.2ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que se apossou de Sansão quando este encontrou-se com um leão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que se apossou de Sansão quando este encontrou-se com um leão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que se apossou de Sansão quando este encontrou-se com um leão?"], ["created_at", 2016-08-19 02:56:41 UTC], ["updated_at", 2016-08-19 02:56:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Espírito do Senhor"], ["question_id", 2284], ["correct", true], ["created_at", 2016-08-19 02:56:41 UTC], ["updated_at", 2016-08-19 02:56:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Medo da Morte"], ["question_id", 2284], ["correct", false], ["created_at", 2016-08-19 02:56:41 UTC], ["updated_at", 2016-08-19 02:56:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Visão"], ["question_id", 2284], ["correct", false], ["created_at", 2016-08-19 02:56:42 UTC], ["updated_at", 2016-08-19 02:56:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Vontade de Fugir Muito Grande"], ["question_id", 2284], ["correct", false], ["created_at", 2016-08-19 02:56:42 UTC], ["updated_at", 2016-08-19 02:56:42 UTC]]  (124.0ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que siginica o nome de Abraão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que siginica o nome de Abraão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que siginica o nome de Abraão?"], ["created_at", 2016-08-19 02:56:42 UTC], ["updated_at", 2016-08-19 02:56:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pai de Uma Multidão"], ["question_id", 2285], ["correct", true], ["created_at", 2016-08-19 02:56:42 UTC], ["updated_at", 2016-08-19 02:56:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Homem de Fé"], ["question_id", 2285], ["correct", false], ["created_at", 2016-08-19 02:56:42 UTC], ["updated_at", 2016-08-19 02:56:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caráter Elevado"], ["question_id", 2285], ["correct", false], ["created_at", 2016-08-19 02:56:42 UTC], ["updated_at", 2016-08-19 02:56:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Servo Bom e Fiel"], ["question_id", 2285], ["correct", false], ["created_at", 2016-08-19 02:56:42 UTC], ["updated_at", 2016-08-19 02:56:42 UTC]]  (139.0ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que significavam os sonhos do Faraó do Egito, interpretados por José?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que significavam os sonhos do Faraó do Egito, interpretados por José?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que significavam os sonhos do Faraó do Egito, interpretados por José?"], ["created_at", 2016-08-19 02:56:42 UTC], ["updated_at", 2016-08-19 02:56:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Períodos de Fartura e Estiagem Na Terra do Egito"], ["question_id", 2286], ["correct", true], ["created_at", 2016-08-19 02:56:42 UTC], ["updated_at", 2016-08-19 02:56:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Animais Domésticos Contrairiam Uma Doença"], ["question_id", 2286], ["correct", false], ["created_at", 2016-08-19 02:56:42 UTC], ["updated_at", 2016-08-19 02:56:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Pessoas Contrairiam Doença dos Animais"], ["question_id", 2286], ["correct", false], ["created_at", 2016-08-19 02:56:42 UTC], ["updated_at", 2016-08-19 02:56:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Rio Nilo Iria Se Transformar Em Sangue"], ["question_id", 2286], ["correct", false], ["created_at", 2016-08-19 02:56:42 UTC], ["updated_at", 2016-08-19 02:56:42 UTC]]  (132.1ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que um jovem chamado Êutico estava fazendo enquanto Paulo estava dando uma mensagem em Trôade?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O que um jovem chamado Êutico estava fazendo enquanto Paulo estava dando uma mensagem em Trôade?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O que um jovem chamado Êutico estava fazendo enquanto Paulo estava dando uma mensagem em Trôade?"], ["created_at", 2016-08-19 02:56:42 UTC], ["updated_at", 2016-08-19 02:56:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dormindo"], ["question_id", 2287], ["correct", true], ["created_at", 2016-08-19 02:56:42 UTC], ["updated_at", 2016-08-19 02:56:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gritando"], ["question_id", 2287], ["correct", false], ["created_at", 2016-08-19 02:56:42 UTC], ["updated_at", 2016-08-19 02:56:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Comendo"], ["question_id", 2287], ["correct", false], ["created_at", 2016-08-19 02:56:42 UTC], ["updated_at", 2016-08-19 02:56:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Interrompendo-o A Todo Instante"], ["question_id", 2287], ["correct", false], ["created_at", 2016-08-19 02:56:42 UTC], ["updated_at", 2016-08-19 02:56:42 UTC]]  (105.5ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Acabe foi morto pelo fato de ter sido alvo ao acaso de uma:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Acabe foi morto pelo fato de ter sido alvo ao acaso de uma:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O rei Acabe foi morto pelo fato de ter sido alvo ao acaso de uma:"], ["created_at", 2016-08-19 02:56:42 UTC], ["updated_at", 2016-08-19 02:56:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Flecha"], ["question_id", 2288], ["correct", true], ["created_at", 2016-08-19 02:56:42 UTC], ["updated_at", 2016-08-19 02:56:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedra"], ["question_id", 2288], ["correct", false], ["created_at", 2016-08-19 02:56:42 UTC], ["updated_at", 2016-08-19 02:56:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cuspida"], ["question_id", 2288], ["correct", false], ["created_at", 2016-08-19 02:56:42 UTC], ["updated_at", 2016-08-19 02:56:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Surra"], ["question_id", 2288], ["correct", false], ["created_at", 2016-08-19 02:56:42 UTC], ["updated_at", 2016-08-19 02:56:42 UTC]]  (239.2ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Davi viajou pelo Monte das Oliveiras pois estava fugindo:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Davi viajou pelo Monte das Oliveiras pois estava fugindo:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O rei Davi viajou pelo Monte das Oliveiras pois estava fugindo:"], ["created_at", 2016-08-19 02:56:42 UTC], ["updated_at", 2016-08-19 02:56:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Seu Filho Rebelde"], ["question_id", 2289], ["correct", true], ["created_at", 2016-08-19 02:56:42 UTC], ["updated_at", 2016-08-19 02:56:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Povo Filisteu"], ["question_id", 2289], ["correct", false], ["created_at", 2016-08-19 02:56:42 UTC], ["updated_at", 2016-08-19 02:56:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Da Revolta do Povo Hebreu"], ["question_id", 2289], ["correct", false], ["created_at", 2016-08-19 02:56:42 UTC], ["updated_at", 2016-08-19 02:56:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "De Deus"], ["question_id", 2289], ["correct", false], ["created_at", 2016-08-19 02:56:42 UTC], ["updated_at", 2016-08-19 02:56:42 UTC]]  (174.0ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Ezequias construiu um túnel para abastecer de água a cidade de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Ezequias construiu um túnel para abastecer de água a cidade de:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O rei Ezequias construiu um túnel para abastecer de água a cidade de:"], ["created_at", 2016-08-19 02:56:42 UTC], ["updated_at", 2016-08-19 02:56:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 2290], ["correct", true], ["created_at", 2016-08-19 02:56:42 UTC], ["updated_at", 2016-08-19 02:56:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nazaré"], ["question_id", 2290], ["correct", false], ["created_at", 2016-08-19 02:56:42 UTC], ["updated_at", 2016-08-19 02:56:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 2290], ["correct", false], ["created_at", 2016-08-19 02:56:42 UTC], ["updated_at", 2016-08-19 02:56:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cafarnaum"], ["question_id", 2290], ["correct", false], ["created_at", 2016-08-19 02:56:42 UTC], ["updated_at", 2016-08-19 02:56:42 UTC]]  (205.7ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Herodes Agripa I mandou decapitar à espada o apóstolo:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Herodes Agripa I mandou decapitar à espada o apóstolo:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O rei Herodes Agripa I mandou decapitar à espada o apóstolo:"], ["created_at", 2016-08-19 02:56:43 UTC], ["updated_at", 2016-08-19 02:56:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 2291], ["correct", true], ["created_at", 2016-08-19 02:56:43 UTC], ["updated_at", 2016-08-19 02:56:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 2291], ["correct", false], ["created_at", 2016-08-19 02:56:43 UTC], ["updated_at", 2016-08-19 02:56:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 2291], ["correct", false], ["created_at", 2016-08-19 02:56:43 UTC], ["updated_at", 2016-08-19 02:56:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas"], ["question_id", 2291], ["correct", false], ["created_at", 2016-08-19 02:56:43 UTC], ["updated_at", 2016-08-19 02:56:43 UTC]]  (197.5ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Nabucodonosor mandou chamar magos e adivinhos para decifrar?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Nabucodonosor mandou chamar magos e adivinhos para decifrar?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O rei Nabucodonosor mandou chamar magos e adivinhos para decifrar?"], ["created_at", 2016-08-19 02:56:43 UTC], ["updated_at", 2016-08-19 02:56:43 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sonhos"], ["question_id", 2292], ["correct", true], ["created_at", 2016-08-19 02:56:43 UTC], ["updated_at", 2016-08-19 02:56:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cartas Enigmáticas"], ["question_id", 2292], ["correct", false], ["created_at", 2016-08-19 02:56:43 UTC], ["updated_at", 2016-08-19 02:56:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Manuscritos Na Parede"], ["question_id", 2292], ["correct", false], ["created_at", 2016-08-19 02:56:43 UTC], ["updated_at", 2016-08-19 02:56:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pergaminhos"], ["question_id", 2292], ["correct", false], ["created_at", 2016-08-19 02:56:43 UTC], ["updated_at", 2016-08-19 02:56:43 UTC]]  (147.1ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Nabucodonosor viu uma grande estátua quando:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei Nabucodonosor viu uma grande estátua quando:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O rei Nabucodonosor viu uma grande estátua quando:"], ["created_at", 2016-08-19 02:56:43 UTC], ["updated_at", 2016-08-19 02:56:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Estava Sonhando"], ["question_id", 2293], ["correct", true], ["created_at", 2016-08-19 02:56:43 UTC], ["updated_at", 2016-08-19 02:56:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Estava Viajando Em Outra Nação"], ["question_id", 2293], ["correct", false], ["created_at", 2016-08-19 02:56:43 UTC], ["updated_at", 2016-08-19 02:56:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Apriosonado Pelos Assírios"], ["question_id", 2293], ["correct", false], ["created_at", 2016-08-19 02:56:43 UTC], ["updated_at", 2016-08-19 02:56:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Comido Por Um Grande Peixe"], ["question_id", 2293], ["correct", false], ["created_at", 2016-08-19 02:56:43 UTC], ["updated_at", 2016-08-19 02:56:43 UTC]]  (113.6ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei persa Dario jogou Daniel em uma cova infestada de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O rei persa Dario jogou Daniel em uma cova infestada de:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O rei persa Dario jogou Daniel em uma cova infestada de:"], ["created_at", 2016-08-19 02:56:43 UTC], ["updated_at", 2016-08-19 02:56:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Leões"], ["question_id", 2294], ["correct", true], ["created_at", 2016-08-19 02:56:43 UTC], ["updated_at", 2016-08-19 02:56:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ursos"], ["question_id", 2294], ["correct", false], ["created_at", 2016-08-19 02:56:43 UTC], ["updated_at", 2016-08-19 02:56:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cobras"], ["question_id", 2294], ["correct", false], ["created_at", 2016-08-19 02:56:43 UTC], ["updated_at", 2016-08-19 02:56:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aranhas"], ["question_id", 2294], ["correct", false], ["created_at", 2016-08-19 02:56:43 UTC], ["updated_at", 2016-08-19 02:56:43 UTC]]  (131.2ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O sacerdote Zadoque ungiu qual rei?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O sacerdote Zadoque ungiu qual rei?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O sacerdote Zadoque ungiu qual rei?"], ["created_at", 2016-08-19 02:56:43 UTC], ["updated_at", 2016-08-19 02:56:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2295], ["correct", true], ["created_at", 2016-08-19 02:56:43 UTC], ["updated_at", 2016-08-19 02:56:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 2295], ["correct", false], ["created_at", 2016-08-19 02:56:43 UTC], ["updated_at", 2016-08-19 02:56:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 2295], ["correct", false], ["created_at", 2016-08-19 02:56:43 UTC], ["updated_at", 2016-08-19 02:56:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 2295], ["correct", false], ["created_at", 2016-08-19 02:56:43 UTC], ["updated_at", 2016-08-19 02:56:43 UTC]]  (130.7ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Templo de Jerusalém encheu-se de uma nuvem após ter sido colocada:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "O Templo de Jerusalém encheu-se de uma nuvem após ter sido colocada:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "O Templo de Jerusalém encheu-se de uma nuvem após ter sido colocada:"], ["created_at", 2016-08-19 02:56:43 UTC], ["updated_at", 2016-08-19 02:56:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Arca da Aliança"], ["question_id", 2296], ["correct", true], ["created_at", 2016-08-19 02:56:43 UTC], ["updated_at", 2016-08-19 02:56:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Castiçal de Ouro"], ["question_id", 2296], ["correct", false], ["created_at", 2016-08-19 02:56:43 UTC], ["updated_at", 2016-08-19 02:56:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Porta Anti-fogo"], ["question_id", 2296], ["correct", false], ["created_at", 2016-08-19 02:56:43 UTC], ["updated_at", 2016-08-19 02:56:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Cortina Púrpura"], ["question_id", 2296], ["correct", false], ["created_at", 2016-08-19 02:56:43 UTC], ["updated_at", 2016-08-19 02:56:43 UTC]]  (122.6ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Abraão nasceu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Abraão nasceu?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde Abraão nasceu?"], ["created_at", 2016-08-19 02:56:44 UTC], ["updated_at", 2016-08-19 02:56:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ur"], ["question_id", 2297], ["correct", true], ["created_at", 2016-08-19 02:56:44 UTC], ["updated_at", 2016-08-19 02:56:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tâmis"], ["question_id", 2297], ["correct", false], ["created_at", 2016-08-19 02:56:44 UTC], ["updated_at", 2016-08-19 02:56:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônia"], ["question_id", 2297], ["correct", false], ["created_at", 2016-08-19 02:56:44 UTC], ["updated_at", 2016-08-19 02:56:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Canaã"], ["question_id", 2297], ["correct", false], ["created_at", 2016-08-19 02:56:44 UTC], ["updated_at", 2016-08-19 02:56:44 UTC]]  (147.1ms) commit transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde aconteceu o primeiro milagre de Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde aconteceu o primeiro milagre de Jesus?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde aconteceu o primeiro milagre de Jesus?"], ["created_at", 2016-08-19 02:56:44 UTC], ["updated_at", 2016-08-19 02:56:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caná"], ["question_id", 2298], ["correct", true], ["created_at", 2016-08-19 02:56:44 UTC], ["updated_at", 2016-08-19 02:56:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nazaré"], ["question_id", 2298], ["correct", false], ["created_at", 2016-08-19 02:56:44 UTC], ["updated_at", 2016-08-19 02:56:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 2298], ["correct", false], ["created_at", 2016-08-19 02:56:44 UTC], ["updated_at", 2016-08-19 02:56:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mar da Galiléia"], ["question_id", 2298], ["correct", false], ["created_at", 2016-08-19 02:56:44 UTC], ["updated_at", 2016-08-19 02:56:44 UTC]]  (140.6ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde estava a força de Sansão:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde estava a força de Sansão:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde estava a força de Sansão:"], ["created_at", 2016-08-19 02:56:44 UTC], ["updated_at", 2016-08-19 02:56:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Seus Cabelos"], ["question_id", 2299], ["correct", true], ["created_at", 2016-08-19 02:56:44 UTC], ["updated_at", 2016-08-19 02:56:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Seus Olhos"], ["question_id", 2299], ["correct", false], ["created_at", 2016-08-19 02:56:44 UTC], ["updated_at", 2016-08-19 02:56:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Suas Mãos"], ["question_id", 2299], ["correct", false], ["created_at", 2016-08-19 02:56:44 UTC], ["updated_at", 2016-08-19 02:56:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Seus Braços"], ["question_id", 2299], ["correct", false], ["created_at", 2016-08-19 02:56:44 UTC], ["updated_at", 2016-08-19 02:56:44 UTC]]  (130.6ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Êutico estava sentado e caiu após ter adormecido enquanto ouvia a mensagem de Paulo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Êutico estava sentado e caiu após ter adormecido enquanto ouvia a mensagem de Paulo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde Êutico estava sentado e caiu após ter adormecido enquanto ouvia a mensagem de Paulo?"], ["created_at", 2016-08-19 02:56:44 UTC], ["updated_at", 2016-08-19 02:56:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Janela"], ["question_id", 2300], ["correct", true], ["created_at", 2016-08-19 02:56:44 UTC], ["updated_at", 2016-08-19 02:56:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Alpendre"], ["question_id", 2300], ["correct", false], ["created_at", 2016-08-19 02:56:44 UTC], ["updated_at", 2016-08-19 02:56:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escada"], ["question_id", 2300], ["correct", false], ["created_at", 2016-08-19 02:56:44 UTC], ["updated_at", 2016-08-19 02:56:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cama"], ["question_id", 2300], ["correct", false], ["created_at", 2016-08-19 02:56:44 UTC], ["updated_at", 2016-08-19 02:56:44 UTC]]  (115.0ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Felipe encontrou o eunuco etíope ao qual batizou?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Felipe encontrou o eunuco etíope ao qual batizou?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde Felipe encontrou o eunuco etíope ao qual batizou?"], ["created_at", 2016-08-19 02:56:44 UTC], ["updated_at", 2016-08-19 02:56:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Caminho Para Gaza"], ["question_id", 2301], ["correct", true], ["created_at", 2016-08-19 02:56:44 UTC], ["updated_at", 2016-08-19 02:56:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Estrada de Damasco"], ["question_id", 2301], ["correct", false], ["created_at", 2016-08-19 02:56:44 UTC], ["updated_at", 2016-08-19 02:56:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Caminho Para Jerusalém"], ["question_id", 2301], ["correct", false], ["created_at", 2016-08-19 02:56:44 UTC], ["updated_at", 2016-08-19 02:56:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Estrada de Samaria"], ["question_id", 2301], ["correct", false], ["created_at", 2016-08-19 02:56:44 UTC], ["updated_at", 2016-08-19 02:56:44 UTC]]  (197.7ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde foi celebrada pela 1ª vez a Páscoa?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde foi celebrada pela 1ª vez a Páscoa?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde foi celebrada pela 1ª vez a Páscoa?"], ["created_at", 2016-08-19 02:56:44 UTC], ["updated_at", 2016-08-19 02:56:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deserto do Sinai"], ["question_id", 2302], ["correct", true], ["created_at", 2016-08-19 02:56:44 UTC], ["updated_at", 2016-08-19 02:56:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mar Vermelho"], ["question_id", 2302], ["correct", false], ["created_at", 2016-08-19 02:56:44 UTC], ["updated_at", 2016-08-19 02:56:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mar da Galiléia"], ["question_id", 2302], ["correct", false], ["created_at", 2016-08-19 02:56:44 UTC], ["updated_at", 2016-08-19 02:56:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jardim do Éden"], ["question_id", 2302], ["correct", false], ["created_at", 2016-08-19 02:56:44 UTC], ["updated_at", 2016-08-19 02:56:44 UTC]]  (172.1ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jesus foi preso?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jesus foi preso?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde Jesus foi preso?"], ["created_at", 2016-08-19 02:56:45 UTC], ["updated_at", 2016-08-19 02:56:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Getsêmani"], ["question_id", 2303], ["correct", true], ["created_at", 2016-08-19 02:56:45 UTC], ["updated_at", 2016-08-19 02:56:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gólgota"], ["question_id", 2303], ["correct", false], ["created_at", 2016-08-19 02:56:45 UTC], ["updated_at", 2016-08-19 02:56:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Monte das Oliveiras"], ["question_id", 2303], ["correct", false], ["created_at", 2016-08-19 02:56:45 UTC], ["updated_at", 2016-08-19 02:56:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Templo"], ["question_id", 2303], ["correct", false], ["created_at", 2016-08-19 02:56:45 UTC], ["updated_at", 2016-08-19 02:56:45 UTC]]  (114.1ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jesus foi rejeitado pela 1ª fez, quando iniciou suas orações?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jesus foi rejeitado pela 1ª fez, quando iniciou suas orações?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde Jesus foi rejeitado pela 1ª fez, quando iniciou suas orações?"], ["created_at", 2016-08-19 02:56:45 UTC], ["updated_at", 2016-08-19 02:56:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nazaré"], ["question_id", 2304], ["correct", true], ["created_at", 2016-08-19 02:56:45 UTC], ["updated_at", 2016-08-19 02:56:45 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cafarmaum"], ["question_id", 2304], ["correct", false], ["created_at", 2016-08-19 02:56:45 UTC], ["updated_at", 2016-08-19 02:56:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Betânia"], ["question_id", 2304], ["correct", false], ["created_at", 2016-08-19 02:56:45 UTC], ["updated_at", 2016-08-19 02:56:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 2304], ["correct", false], ["created_at", 2016-08-19 02:56:45 UTC], ["updated_at", 2016-08-19 02:56:45 UTC]]  (247.8ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jesus pediu aos seus discípulos que tomassem um jumento emprestado para entrar em Jerusalém?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jesus pediu aos seus discípulos que tomassem um jumento emprestado para entrar em Jerusalém?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde Jesus pediu aos seus discípulos que tomassem um jumento emprestado para entrar em Jerusalém?"], ["created_at", 2016-08-19 02:56:45 UTC], ["updated_at", 2016-08-19 02:56:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Betfagé"], ["question_id", 2305], ["correct", true], ["created_at", 2016-08-19 02:56:45 UTC], ["updated_at", 2016-08-19 02:56:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 2305], ["correct", false], ["created_at", 2016-08-19 02:56:45 UTC], ["updated_at", 2016-08-19 02:56:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 2305], ["correct", false], ["created_at", 2016-08-19 02:56:45 UTC], ["updated_at", 2016-08-19 02:56:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cafarnaum"], ["question_id", 2305], ["correct", false], ["created_at", 2016-08-19 02:56:45 UTC], ["updated_at", 2016-08-19 02:56:45 UTC]]  (132.2ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jesus se encontrava quando foi preso pelos soldados romanos, a mando dos líderes religiosos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jesus se encontrava quando foi preso pelos soldados romanos, a mando dos líderes religiosos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde Jesus se encontrava quando foi preso pelos soldados romanos, a mando dos líderes religiosos?"], ["created_at", 2016-08-19 02:56:45 UTC], ["updated_at", 2016-08-19 02:56:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Jardim do Getsêmani"], ["question_id", 2306], ["correct", true], ["created_at", 2016-08-19 02:56:45 UTC], ["updated_at", 2016-08-19 02:56:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Templo de Jerusalém"], ["question_id", 2306], ["correct", false], ["created_at", 2016-08-19 02:56:45 UTC], ["updated_at", 2016-08-19 02:56:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Palácio de Pôncio Pilatos"], ["question_id", 2306], ["correct", false], ["created_at", 2016-08-19 02:56:45 UTC], ["updated_at", 2016-08-19 02:56:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Casa de Um dos Discípulos"], ["question_id", 2306], ["correct", false], ["created_at", 2016-08-19 02:56:45 UTC], ["updated_at", 2016-08-19 02:56:45 UTC]]  (122.7ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jesus se encontrava quando Satanás o tentou a saltar, informando que os anjos de Deus o segurariam?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jesus se encontrava quando Satanás o tentou a saltar, informando que os anjos de Deus o segurariam?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde Jesus se encontrava quando Satanás o tentou a saltar, informando que os anjos de Deus o segurariam?"], ["created_at", 2016-08-19 02:56:45 UTC], ["updated_at", 2016-08-19 02:56:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Pináculo do Templo"], ["question_id", 2307], ["correct", true], ["created_at", 2016-08-19 02:56:45 UTC], ["updated_at", 2016-08-19 02:56:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Monte Sinai"], ["question_id", 2307], ["correct", false], ["created_at", 2016-08-19 02:56:45 UTC], ["updated_at", 2016-08-19 02:56:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Torre de Babel"], ["question_id", 2307], ["correct", false], ["created_at", 2016-08-19 02:56:45 UTC], ["updated_at", 2016-08-19 02:56:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Monte Ararat"], ["question_id", 2307], ["correct", false], ["created_at", 2016-08-19 02:56:45 UTC], ["updated_at", 2016-08-19 02:56:45 UTC]]  (122.3ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jonas passou 3 dias e 3 noites?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Jonas passou 3 dias e 3 noites?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde Jonas passou 3 dias e 3 noites?"], ["created_at", 2016-08-19 02:56:45 UTC], ["updated_at", 2016-08-19 02:56:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dentro de Um Grande Peixe"], ["question_id", 2308], ["correct", true], ["created_at", 2016-08-19 02:56:45 UTC], ["updated_at", 2016-08-19 02:56:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Uma Caverna"], ["question_id", 2308], ["correct", false], ["created_at", 2016-08-19 02:56:45 UTC], ["updated_at", 2016-08-19 02:56:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Porão de Um Navio"], ["question_id", 2308], ["correct", false], ["created_at", 2016-08-19 02:56:45 UTC], ["updated_at", 2016-08-19 02:56:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deitado Embaixo de Uma Árvore"], ["question_id", 2308], ["correct", false], ["created_at", 2016-08-19 02:56:45 UTC], ["updated_at", 2016-08-19 02:56:45 UTC]]  (132.3ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Moisés recebeu as tábuas dos 10 Mandamentos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Moisés recebeu as tábuas dos 10 Mandamentos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde Moisés recebeu as tábuas dos 10 Mandamentos?"], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Monte Sinai"], ["question_id", 2309], ["correct", true], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Monte Carmelo"], ["question_id", 2309], ["correct", false], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Monte Ararat"], ["question_id", 2309], ["correct", false], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Monte Nebo"], ["question_id", 2309], ["correct", false], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]]  (130.8ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde o anjo Gabriel comunicou a Zacarias de que ele teria um filho?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde o anjo Gabriel comunicou a Zacarias de que ele teria um filho?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde o anjo Gabriel comunicou a Zacarias de que ele teria um filho?"], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Templo de Deus"], ["question_id", 2310], ["correct", true], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Sua Própria Casa"], ["question_id", 2310], ["correct", false], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Caminho Para Emaús"], ["question_id", 2310], ["correct", false], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Estrada Para Damasco"], ["question_id", 2310], ["correct", false], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]]  (148.8ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde o profeta Jeremias foi atirado para morrer?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde o profeta Jeremias foi atirado para morrer?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde o profeta Jeremias foi atirado para morrer?"], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Uma Cisterna Com Lama"], ["question_id", 2311], ["correct", true], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Um Precipício"], ["question_id", 2311], ["correct", false], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Uma Lagoa"], ["question_id", 2311], ["correct", false], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Mar Morto"], ["question_id", 2311], ["correct", false], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]]  (130.5ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde o rei de Babilônia mandou jogar os amigos de Daniel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde o rei de Babilônia mandou jogar os amigos de Daniel?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde o rei de Babilônia mandou jogar os amigos de Daniel?"], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Uma Fornalha Ardente"], ["question_id", 2312], ["correct", true], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Cova dos Leões"], ["question_id", 2312], ["correct", false], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Uma Cisterna"], ["question_id", 2312], ["correct", false], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Um Precipício"], ["question_id", 2312], ["correct", false], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]]  (123.5ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde os discípulos foram chamados de cristãos pela primeira vez?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde os discípulos foram chamados de cristãos pela primeira vez?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde os discípulos foram chamados de cristãos pela primeira vez?"], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Antioquia"], ["question_id", 2313], ["correct", true], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 2313], ["correct", false], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judéia"], ["question_id", 2313], ["correct", false], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 2313], ["correct", false], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]]  (123.1ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde os Reis Magos estavam procurando o bebê que nasceu \"Rei dos Judeus\"?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde os Reis Magos estavam procurando o bebê que nasceu \"Rei dos Judeus\"?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde os Reis Magos estavam procurando o bebê que nasceu \"Rei dos Judeus\"?"], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 2314], ["correct", true], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belém"], ["question_id", 2314], ["correct", false], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nazaré"], ["question_id", 2314], ["correct", false], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Masada"], ["question_id", 2314], ["correct", false], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]]  (132.1ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Paulo foi proclamado publicamente Rei?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Paulo foi proclamado publicamente Rei?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde Paulo foi proclamado publicamente Rei?"], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gilgal"], ["question_id", 2315], ["correct", true], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Efraim"], ["question_id", 2315], ["correct", false], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Qumram"], ["question_id", 2315], ["correct", false], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "En-gedi"], ["question_id", 2315], ["correct", false], ["created_at", 2016-08-19 02:56:46 UTC], ["updated_at", 2016-08-19 02:56:46 UTC]]  (132.0ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Pedro estava quando ele cortou a orelha de um homem?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Pedro estava quando ele cortou a orelha de um homem?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde Pedro estava quando ele cortou a orelha de um homem?"], ["created_at", 2016-08-19 02:56:47 UTC], ["updated_at", 2016-08-19 02:56:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Jardim do Getsêmani"], ["question_id", 2316], ["correct", true], ["created_at", 2016-08-19 02:56:47 UTC], ["updated_at", 2016-08-19 02:56:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Monte Carmelo"], ["question_id", 2316], ["correct", false], ["created_at", 2016-08-19 02:56:47 UTC], ["updated_at", 2016-08-19 02:56:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Monte Gólgota"], ["question_id", 2316], ["correct", false], ["created_at", 2016-08-19 02:56:47 UTC], ["updated_at", 2016-08-19 02:56:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Templo"], ["question_id", 2316], ["correct", false], ["created_at", 2016-08-19 02:56:47 UTC], ["updated_at", 2016-08-19 02:56:47 UTC]]  (130.6ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Sansão construiu o Templo de Deus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Onde Sansão construiu o Templo de Deus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Onde Sansão construiu o Templo de Deus?"], ["created_at", 2016-08-19 02:56:47 UTC], ["updated_at", 2016-08-19 02:56:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Jerusalém"], ["question_id", 2317], ["correct", true], ["created_at", 2016-08-19 02:56:47 UTC], ["updated_at", 2016-08-19 02:56:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Deserto"], ["question_id", 2317], ["correct", false], ["created_at", 2016-08-19 02:56:47 UTC], ["updated_at", 2016-08-19 02:56:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Galiléia"], ["question_id", 2317], ["correct", false], ["created_at", 2016-08-19 02:56:47 UTC], ["updated_at", 2016-08-19 02:56:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Judá"], ["question_id", 2317], ["correct", false], ["created_at", 2016-08-19 02:56:47 UTC], ["updated_at", 2016-08-19 02:56:47 UTC]]  (139.4ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os 10 Mandamentos dados por Deus a Moisés foram escritos em:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os 10 Mandamentos dados por Deus a Moisés foram escritos em:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Os 10 Mandamentos dados por Deus a Moisés foram escritos em:"], ["created_at", 2016-08-19 02:56:47 UTC], ["updated_at", 2016-08-19 02:56:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 Tábuas de Pedra"], ["question_id", 2318], ["correct", true], ["created_at", 2016-08-19 02:56:47 UTC], ["updated_at", 2016-08-19 02:56:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 Tábuas de Madeira"], ["question_id", 2318], ["correct", false], ["created_at", 2016-08-19 02:56:47 UTC], ["updated_at", 2016-08-19 02:56:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 Rolos de Pergaminho"], ["question_id", 2318], ["correct", false], ["created_at", 2016-08-19 02:56:47 UTC], ["updated_at", 2016-08-19 02:56:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Tábua de Pedra e 1 Tábua de Madeira"], ["question_id", 2318], ["correct", false], ["created_at", 2016-08-19 02:56:47 UTC], ["updated_at", 2016-08-19 02:56:47 UTC]]  (215.8ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os anciãos da igreja primitiva deviam ungir os enfermos com:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os anciãos da igreja primitiva deviam ungir os enfermos com:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Os anciãos da igreja primitiva deviam ungir os enfermos com:"], ["created_at", 2016-08-19 02:56:47 UTC], ["updated_at", 2016-08-19 02:56:47 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Óleo"], ["question_id", 2319], ["correct", true], ["created_at", 2016-08-19 02:56:47 UTC], ["updated_at", 2016-08-19 02:56:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vinho"], ["question_id", 2319], ["correct", false], ["created_at", 2016-08-19 02:56:47 UTC], ["updated_at", 2016-08-19 02:56:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Água Benta"], ["question_id", 2319], ["correct", false], ["created_at", 2016-08-19 02:56:47 UTC], ["updated_at", 2016-08-19 02:56:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Azeite"], ["question_id", 2319], ["correct", false], ["created_at", 2016-08-19 02:56:47 UTC], ["updated_at", 2016-08-19 02:56:47 UTC]]  (172.2ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os guardas que estavam guardando o sepulcro de Jesus receberam uma grande quantia de dinheiro para dizer:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os guardas que estavam guardando o sepulcro de Jesus receberam uma grande quantia de dinheiro para dizer:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Os guardas que estavam guardando o sepulcro de Jesus receberam uma grande quantia de dinheiro para dizer:"], ["created_at", 2016-08-19 02:56:47 UTC], ["updated_at", 2016-08-19 02:56:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Os Discípulos Haviam Roubado O Corpo"], ["question_id", 2320], ["correct", true], ["created_at", 2016-08-19 02:56:47 UTC], ["updated_at", 2016-08-19 02:56:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que A Família de Jesus Havia Levado O Corpo"], ["question_id", 2320], ["correct", false], ["created_at", 2016-08-19 02:56:47 UTC], ["updated_at", 2016-08-19 02:56:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Jesus Havia Ressuscitado dos Mortos"], ["question_id", 2320], ["correct", false], ["created_at", 2016-08-19 02:56:47 UTC], ["updated_at", 2016-08-19 02:56:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Os Líderes Judeus Haviam Roubado O Corpo"], ["question_id", 2320], ["correct", false], ["created_at", 2016-08-19 02:56:47 UTC], ["updated_at", 2016-08-19 02:56:47 UTC]]  (306.7ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os israelitas, em sua peregrinação pelo deserto, foi provido por Deus com:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os israelitas, em sua peregrinação pelo deserto, foi provido por Deus com:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Os israelitas, em sua peregrinação pelo deserto, foi provido por Deus com:"], ["created_at", 2016-08-19 02:56:48 UTC], ["updated_at", 2016-08-19 02:56:48 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maná"], ["question_id", 2321], ["correct", true], ["created_at", 2016-08-19 02:56:48 UTC], ["updated_at", 2016-08-19 02:56:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Figos e Tâmaras"], ["question_id", 2321], ["correct", false], ["created_at", 2016-08-19 02:56:48 UTC], ["updated_at", 2016-08-19 02:56:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pão"], ["question_id", 2321], ["correct", false], ["created_at", 2016-08-19 02:56:48 UTC], ["updated_at", 2016-08-19 02:56:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uvas"], ["question_id", 2321], ["correct", false], ["created_at", 2016-08-19 02:56:48 UTC], ["updated_at", 2016-08-19 02:56:48 UTC]]  (288.7ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os livros de Mateus, Marcos, Lucas e João também são conhecidos como:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os livros de Mateus, Marcos, Lucas e João também são conhecidos como:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Os livros de Mateus, Marcos, Lucas e João também são conhecidos como:"], ["created_at", 2016-08-19 02:56:48 UTC], ["updated_at", 2016-08-19 02:56:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Evangelhos"], ["question_id", 2322], ["correct", true], ["created_at", 2016-08-19 02:56:48 UTC], ["updated_at", 2016-08-19 02:56:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apostólicos"], ["question_id", 2322], ["correct", false], ["created_at", 2016-08-19 02:56:48 UTC], ["updated_at", 2016-08-19 02:56:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Narrativa da Vida de Jesus"], ["question_id", 2322], ["correct", false], ["created_at", 2016-08-19 02:56:48 UTC], ["updated_at", 2016-08-19 02:56:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Biografia de Jesus"], ["question_id", 2322], ["correct", false], ["created_at", 2016-08-19 02:56:48 UTC], ["updated_at", 2016-08-19 02:56:48 UTC]]  (140.2ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os muros de qual cidade caíram quando os israelitas gritaram?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os muros de qual cidade caíram quando os israelitas gritaram?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Os muros de qual cidade caíram quando os israelitas gritaram?"], ["created_at", 2016-08-19 02:56:48 UTC], ["updated_at", 2016-08-19 02:56:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jericó"], ["question_id", 2323], ["correct", true], ["created_at", 2016-08-19 02:56:48 UTC], ["updated_at", 2016-08-19 02:56:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 2323], ["correct", false], ["created_at", 2016-08-19 02:56:48 UTC], ["updated_at", 2016-08-19 02:56:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jizreel"], ["question_id", 2323], ["correct", false], ["created_at", 2016-08-19 02:56:48 UTC], ["updated_at", 2016-08-19 02:56:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 2323], ["correct", false], ["created_at", 2016-08-19 02:56:48 UTC], ["updated_at", 2016-08-19 02:56:48 UTC]]  (155.5ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os piolhos que Deus havia enviado aos egípcios eram feitos:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os piolhos que Deus havia enviado aos egípcios eram feitos:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Os piolhos que Deus havia enviado aos egípcios eram feitos:"], ["created_at", 2016-08-19 02:56:48 UTC], ["updated_at", 2016-08-19 02:56:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Pó da Terra"], ["question_id", 2324], ["correct", true], ["created_at", 2016-08-19 02:56:48 UTC], ["updated_at", 2016-08-19 02:56:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Da Saliva dos Animais"], ["question_id", 2324], ["correct", false], ["created_at", 2016-08-19 02:56:48 UTC], ["updated_at", 2016-08-19 02:56:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Das Águas do Rio Nilo"], ["question_id", 2324], ["correct", false], ["created_at", 2016-08-19 02:56:48 UTC], ["updated_at", 2016-08-19 02:56:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Das Areias do Deserto"], ["question_id", 2324], ["correct", false], ["created_at", 2016-08-19 02:56:48 UTC], ["updated_at", 2016-08-19 02:56:48 UTC]]  (172.2ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os Presidentes invejosos enganaram ao rei Dario, fazendo-o assinar um decreto que duraria:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os Presidentes invejosos enganaram ao rei Dario, fazendo-o assinar um decreto que duraria:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Os Presidentes invejosos enganaram ao rei Dario, fazendo-o assinar um decreto que duraria:"], ["created_at", 2016-08-19 02:56:48 UTC], ["updated_at", 2016-08-19 02:56:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "30 Dias"], ["question_id", 2325], ["correct", true], ["created_at", 2016-08-19 02:56:48 UTC], ["updated_at", 2016-08-19 02:56:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Semana"], ["question_id", 2325], ["correct", false], ["created_at", 2016-08-19 02:56:48 UTC], ["updated_at", 2016-08-19 02:56:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Meses"], ["question_id", 2325], ["correct", false], ["created_at", 2016-08-19 02:56:48 UTC], ["updated_at", 2016-08-19 02:56:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Ano"], ["question_id", 2325], ["correct", false], ["created_at", 2016-08-19 02:56:48 UTC], ["updated_at", 2016-08-19 02:56:48 UTC]]  (130.9ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os primeiros filhos de Jó foram mortos através de um:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os primeiros filhos de Jó foram mortos através de um:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Os primeiros filhos de Jó foram mortos através de um:"], ["created_at", 2016-08-19 02:56:48 UTC], ["updated_at", 2016-08-19 02:56:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tufão"], ["question_id", 2326], ["correct", true], ["created_at", 2016-08-19 02:56:48 UTC], ["updated_at", 2016-08-19 02:56:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Terremoto"], ["question_id", 2326], ["correct", false], ["created_at", 2016-08-19 02:56:48 UTC], ["updated_at", 2016-08-19 02:56:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Atropelamento"], ["question_id", 2326], ["correct", false], ["created_at", 2016-08-19 02:56:48 UTC], ["updated_at", 2016-08-19 02:56:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Incêndio"], ["question_id", 2326], ["correct", false], ["created_at", 2016-08-19 02:56:48 UTC], ["updated_at", 2016-08-19 02:56:48 UTC]]  (138.8ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os raptores de Jesus vendaram-no e disseram para Ele fazer o quê?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Os raptores de Jesus vendaram-no e disseram para Ele fazer o quê?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Os raptores de Jesus vendaram-no e disseram para Ele fazer o quê?"], ["created_at", 2016-08-19 02:56:49 UTC], ["updated_at", 2016-08-19 02:56:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Profetizar Quem Iria Bater Nele"], ["question_id", 2327], ["correct", true], ["created_at", 2016-08-19 02:56:49 UTC], ["updated_at", 2016-08-19 02:56:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Curvar-se Diante Deles"], ["question_id", 2327], ["correct", false], ["created_at", 2016-08-19 02:56:49 UTC], ["updated_at", 2016-08-19 02:56:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Preparar-se Para Morrer"], ["question_id", 2327], ["correct", false], ["created_at", 2016-08-19 02:56:49 UTC], ["updated_at", 2016-08-19 02:56:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abaixa A Cabeça Para Receber Sua Coroa"], ["question_id", 2327], ["correct", false], ["created_at", 2016-08-19 02:56:49 UTC], ["updated_at", 2016-08-19 02:56:49 UTC]]  (157.0ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para a construção do Templo de Deus em Jerusalém, o que Salomão contratou de Hirão, rei de Tiro?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para a construção do Templo de Deus em Jerusalém, o que Salomão contratou de Hirão, rei de Tiro?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para a construção do Templo de Deus em Jerusalém, o que Salomão contratou de Hirão, rei de Tiro?"], ["created_at", 2016-08-19 02:56:49 UTC], ["updated_at", 2016-08-19 02:56:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cedros"], ["question_id", 2328], ["correct", true], ["created_at", 2016-08-19 02:56:49 UTC], ["updated_at", 2016-08-19 02:56:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Romãs"], ["question_id", 2328], ["correct", false], ["created_at", 2016-08-19 02:56:49 UTC], ["updated_at", 2016-08-19 02:56:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Palmeiras"], ["question_id", 2328], ["correct", false], ["created_at", 2016-08-19 02:56:49 UTC], ["updated_at", 2016-08-19 02:56:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Prataria"], ["question_id", 2328], ["correct", false], ["created_at", 2016-08-19 02:56:49 UTC], ["updated_at", 2016-08-19 02:56:49 UTC]]  (123.4ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para a construção do Templo de Jerusalém, qual rei forneceu a Salomão árvores de cedro?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para a construção do Templo de Jerusalém, qual rei forneceu a Salomão árvores de cedro?"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para a construção do Templo de Jerusalém, qual rei forneceu a Salomão árvores de cedro?"], ["created_at", 2016-08-19 02:56:49 UTC], ["updated_at", 2016-08-19 02:56:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hirão"], ["question_id", 2329], ["correct", true], ["created_at", 2016-08-19 02:56:49 UTC], ["updated_at", 2016-08-19 02:56:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiglete-pileser"], ["question_id", 2329], ["correct", false], ["created_at", 2016-08-19 02:56:49 UTC], ["updated_at", 2016-08-19 02:56:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 2329], ["correct", false], ["created_at", 2016-08-19 02:56:49 UTC], ["updated_at", 2016-08-19 02:56:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Faraó"], ["question_id", 2329], ["correct", false], ["created_at", 2016-08-19 02:56:49 UTC], ["updated_at", 2016-08-19 02:56:49 UTC]]  (130.9ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para ajudar uma viúva pobre, Eliseu pediu à ela tomasse emprestadas várias vasilhas, que foram enchidas com:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para ajudar uma viúva pobre, Eliseu pediu à ela tomasse emprestadas várias vasilhas, que foram enchidas com:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para ajudar uma viúva pobre, Eliseu pediu à ela tomasse emprestadas várias vasilhas, que foram enchidas com:"], ["created_at", 2016-08-19 02:56:49 UTC], ["updated_at", 2016-08-19 02:56:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Azeite"], ["question_id", 2330], ["correct", true], ["created_at", 2016-08-19 02:56:49 UTC], ["updated_at", 2016-08-19 02:56:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Perfume"], ["question_id", 2330], ["correct", false], ["created_at", 2016-08-19 02:56:49 UTC], ["updated_at", 2016-08-19 02:56:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Farinha"], ["question_id", 2330], ["correct", false], ["created_at", 2016-08-19 02:56:49 UTC], ["updated_at", 2016-08-19 02:56:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mel"], ["question_id", 2330], ["correct", false], ["created_at", 2016-08-19 02:56:49 UTC], ["updated_at", 2016-08-19 02:56:49 UTC]]  (131.7ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para capturar Elias, o rei Acazias enviou:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para capturar Elias, o rei Acazias enviou:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para capturar Elias, o rei Acazias enviou:"], ["created_at", 2016-08-19 02:56:49 UTC], ["updated_at", 2016-08-19 02:56:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Capitão e 50 Homens"], ["question_id", 2331], ["correct", true], ["created_at", 2016-08-19 02:56:49 UTC], ["updated_at", 2016-08-19 02:56:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Pelotão de 500 Homens"], ["question_id", 2331], ["correct", false], ["created_at", 2016-08-19 02:56:49 UTC], ["updated_at", 2016-08-19 02:56:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Exército de 5.000 Homens"], ["question_id", 2331], ["correct", false], ["created_at", 2016-08-19 02:56:49 UTC], ["updated_at", 2016-08-19 02:56:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 General, 5 Capitães e 250 Homens"], ["question_id", 2331], ["correct", false], ["created_at", 2016-08-19 02:56:49 UTC], ["updated_at", 2016-08-19 02:56:49 UTC]]  (138.4ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para causar os tumores na 6ª praga a ser enviada contra os egípcios, Moisés e Arão foram instruídos por Deus a usar:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para causar os tumores na 6ª praga a ser enviada contra os egípcios, Moisés e Arão foram instruídos por Deus a usar:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para causar os tumores na 6ª praga a ser enviada contra os egípcios, Moisés e Arão foram instruídos por Deus a usar:"], ["created_at", 2016-08-19 02:56:49 UTC], ["updated_at", 2016-08-19 02:56:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cinzas do Forno"], ["question_id", 2332], ["correct", true], ["created_at", 2016-08-19 02:56:49 UTC], ["updated_at", 2016-08-19 02:56:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pólen"], ["question_id", 2332], ["correct", false], ["created_at", 2016-08-19 02:56:49 UTC], ["updated_at", 2016-08-19 02:56:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pó da Terra"], ["question_id", 2332], ["correct", false], ["created_at", 2016-08-19 02:56:49 UTC], ["updated_at", 2016-08-19 02:56:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lama"], ["question_id", 2332], ["correct", false], ["created_at", 2016-08-19 02:56:49 UTC], ["updated_at", 2016-08-19 02:56:49 UTC]]  (140.6ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para não ir à Nínive dar a advertência final, Jonas se escondeu em um:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para não ir à Nínive dar a advertência final, Jonas se escondeu em um:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para não ir à Nínive dar a advertência final, Jonas se escondeu em um:"], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Navio"], ["question_id", 2333], ["correct", true], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tonel de Vinho"], ["question_id", 2333], ["correct", false], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Odre de Água"], ["question_id", 2333], ["correct", false], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carro de Boi"], ["question_id", 2333], ["correct", false], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]]  (130.1ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para obrigar o povo a prestar obediência à sua autoridade, o rei Nabucodonosor construiu:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para obrigar o povo a prestar obediência à sua autoridade, o rei Nabucodonosor construiu:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para obrigar o povo a prestar obediência à sua autoridade, o rei Nabucodonosor construiu:"], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Estátua de Ouro de Si Próprio"], ["question_id", 2334], ["correct", true], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Serpente de Ouro"], ["question_id", 2334], ["correct", false], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Bezerro de Ouro"], ["question_id", 2334], ["correct", false], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Vaca de Ouro"], ["question_id", 2334], ["correct", false], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]]  (122.6ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para onde Abraão enviou Eliezer em busca de uma esposa para Isaque?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para onde Abraão enviou Eliezer em busca de uma esposa para Isaque?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para onde Abraão enviou Eliezer em busca de uma esposa para Isaque?"], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mesopotâmia"], ["question_id", 2335], ["correct", true], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assíria"], ["question_id", 2335], ["correct", false], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egito"], ["question_id", 2335], ["correct", false], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arábia"], ["question_id", 2335], ["correct", false], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]]  (138.8ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para onde Jonas foi após ter sido vomitado pelo grande peixe?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para onde Jonas foi após ter sido vomitado pelo grande peixe?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para onde Jonas foi após ter sido vomitado pelo grande peixe?"], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nínive"], ["question_id", 2336], ["correct", true], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 2336], ["correct", false], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 2336], ["correct", false], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Galiléia"], ["question_id", 2336], ["correct", false], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]]  (139.1ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para onde o profeta Isaías predisse que os tesouros do Templo seriam levados?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para onde o profeta Isaías predisse que os tesouros do Templo seriam levados?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para onde o profeta Isaías predisse que os tesouros do Templo seriam levados?"], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para A Babilônia"], ["question_id", 2337], ["correct", true], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para A Medo-persa"], ["question_id", 2337], ["correct", false], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para A Grécia"], ["question_id", 2337], ["correct", false], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para A Síria"], ["question_id", 2337], ["correct", false], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]]  (155.4ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para onde os porcos que receberam a legião de demônios expulsos por Jesus se atiraram?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para onde os porcos que receberam a legião de demônios expulsos por Jesus se atiraram?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para onde os porcos que receberam a legião de demônios expulsos por Jesus se atiraram?"], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Mar da Galiléia"], ["question_id", 2338], ["correct", true], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Mar Morto"], ["question_id", 2338], ["correct", false], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Precipício do Monte Gólgota"], ["question_id", 2338], ["correct", false], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Poço de Jacó"], ["question_id", 2338], ["correct", false], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]]  (147.6ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para onde Sansão foi levado após ter sido cegado pelos filisteus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para onde Sansão foi levado após ter sido cegado pelos filisteus?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para onde Sansão foi levado após ter sido cegado pelos filisteus?"], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gaza"], ["question_id", 2339], ["correct", true], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hebrom"], ["question_id", 2339], ["correct", false], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Masada"], ["question_id", 2339], ["correct", false], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filipéia"], ["question_id", 2339], ["correct", false], ["created_at", 2016-08-19 02:56:50 UTC], ["updated_at", 2016-08-19 02:56:50 UTC]]  (148.2ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para poder enxergar melhor a jesus no meio da multidão, Zaqueu subiu em uma:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para poder enxergar melhor a jesus no meio da multidão, Zaqueu subiu em uma:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para poder enxergar melhor a jesus no meio da multidão, Zaqueu subiu em uma:"], ["created_at", 2016-08-19 02:56:51 UTC], ["updated_at", 2016-08-19 02:56:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Árvore"], ["question_id", 2340], ["correct", true], ["created_at", 2016-08-19 02:56:51 UTC], ["updated_at", 2016-08-19 02:56:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escada"], ["question_id", 2340], ["correct", false], ["created_at", 2016-08-19 02:56:51 UTC], ["updated_at", 2016-08-19 02:56:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Janela"], ["question_id", 2340], ["correct", false], ["created_at", 2016-08-19 02:56:51 UTC], ["updated_at", 2016-08-19 02:56:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porta"], ["question_id", 2340], ["correct", false], ["created_at", 2016-08-19 02:56:51 UTC], ["updated_at", 2016-08-19 02:56:51 UTC]]  (163.4ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para proteger Moisés, onde sua mãe o escondeu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para proteger Moisés, onde sua mãe o escondeu?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para proteger Moisés, onde sua mãe o escondeu?"], ["created_at", 2016-08-19 02:56:51 UTC], ["updated_at", 2016-08-19 02:56:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Uma Cesta"], ["question_id", 2341], ["correct", true], ["created_at", 2016-08-19 02:56:51 UTC], ["updated_at", 2016-08-19 02:56:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Uma Caverna"], ["question_id", 2341], ["correct", false], ["created_at", 2016-08-19 02:56:51 UTC], ["updated_at", 2016-08-19 02:56:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Um Baú"], ["question_id", 2341], ["correct", false], ["created_at", 2016-08-19 02:56:51 UTC], ["updated_at", 2016-08-19 02:56:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Em Um Armário"], ["question_id", 2341], ["correct", false], ["created_at", 2016-08-19 02:56:51 UTC], ["updated_at", 2016-08-19 02:56:51 UTC]]  (173.3ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para provocar a profanação do altar eregido ao deus Moleque, o que Josias queimou neste altar?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para provocar a profanação do altar eregido ao deus Moleque, o que Josias queimou neste altar?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para provocar a profanação do altar eregido ao deus Moleque, o que Josias queimou neste altar?"], ["created_at", 2016-08-19 02:56:51 UTC], ["updated_at", 2016-08-19 02:56:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ossos Humanos"], ["question_id", 2342], ["correct", true], ["created_at", 2016-08-19 02:56:51 UTC], ["updated_at", 2016-08-19 02:56:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vinha"], ["question_id", 2342], ["correct", false], ["created_at", 2016-08-19 02:56:51 UTC], ["updated_at", 2016-08-19 02:56:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arvoredo"], ["question_id", 2342], ["correct", false], ["created_at", 2016-08-19 02:56:51 UTC], ["updated_at", 2016-08-19 02:56:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carne Imunda"], ["question_id", 2342], ["correct", false], ["created_at", 2016-08-19 02:56:51 UTC], ["updated_at", 2016-08-19 02:56:51 UTC]]  (148.4ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para qual cidade Josué enviou espias?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para qual cidade Josué enviou espias?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para qual cidade Josué enviou espias?"], ["created_at", 2016-08-19 02:56:51 UTC], ["updated_at", 2016-08-19 02:56:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jericó"], ["question_id", 2343], ["correct", true], ["created_at", 2016-08-19 02:56:51 UTC], ["updated_at", 2016-08-19 02:56:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hebrom"], ["question_id", 2343], ["correct", false], ["created_at", 2016-08-19 02:56:51 UTC], ["updated_at", 2016-08-19 02:56:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 2343], ["correct", false], ["created_at", 2016-08-19 02:56:51 UTC], ["updated_at", 2016-08-19 02:56:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sodoma"], ["question_id", 2343], ["correct", false], ["created_at", 2016-08-19 02:56:51 UTC], ["updated_at", 2016-08-19 02:56:51 UTC]]  (155.3ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para qual cidade os reis Magos foram conduzidos por uma estrela?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para qual cidade os reis Magos foram conduzidos por uma estrela?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para qual cidade os reis Magos foram conduzidos por uma estrela?"], ["created_at", 2016-08-19 02:56:51 UTC], ["updated_at", 2016-08-19 02:56:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belém"], ["question_id", 2344], ["correct", true], ["created_at", 2016-08-19 02:56:51 UTC], ["updated_at", 2016-08-19 02:56:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nazaré"], ["question_id", 2344], ["correct", false], ["created_at", 2016-08-19 02:56:51 UTC], ["updated_at", 2016-08-19 02:56:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 2344], ["correct", false], ["created_at", 2016-08-19 02:56:51 UTC], ["updated_at", 2016-08-19 02:56:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 2344], ["correct", false], ["created_at", 2016-08-19 02:56:51 UTC], ["updated_at", 2016-08-19 02:56:51 UTC]]  (122.3ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para qual país Daniel foi levado como cativo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para qual país Daniel foi levado como cativo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para qual país Daniel foi levado como cativo?"], ["created_at", 2016-08-19 02:56:51 UTC], ["updated_at", 2016-08-19 02:56:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônia"], ["question_id", 2345], ["correct", true], ["created_at", 2016-08-19 02:56:51 UTC], ["updated_at", 2016-08-19 02:56:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egito"], ["question_id", 2345], ["correct", false], ["created_at", 2016-08-19 02:56:51 UTC], ["updated_at", 2016-08-19 02:56:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assíria"], ["question_id", 2345], ["correct", false], ["created_at", 2016-08-19 02:56:51 UTC], ["updated_at", 2016-08-19 02:56:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenícia"], ["question_id", 2345], ["correct", false], ["created_at", 2016-08-19 02:56:51 UTC], ["updated_at", 2016-08-19 02:56:51 UTC]]  (131.8ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para qual país foi Abraão durante a fome?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para qual país foi Abraão durante a fome?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para qual país foi Abraão durante a fome?"], ["created_at", 2016-08-19 02:56:52 UTC], ["updated_at", 2016-08-19 02:56:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egito"], ["question_id", 2346], ["correct", true], ["created_at", 2016-08-19 02:56:52 UTC], ["updated_at", 2016-08-19 02:56:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assíria"], ["question_id", 2346], ["correct", false], ["created_at", 2016-08-19 02:56:52 UTC], ["updated_at", 2016-08-19 02:56:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arábia"], ["question_id", 2346], ["correct", false], ["created_at", 2016-08-19 02:56:52 UTC], ["updated_at", 2016-08-19 02:56:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenícia"], ["question_id", 2346], ["correct", false], ["created_at", 2016-08-19 02:56:52 UTC], ["updated_at", 2016-08-19 02:56:52 UTC]]  (139.5ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para que região Moisés fugiu após ter matado o egípcio?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para que região Moisés fugiu após ter matado o egípcio?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para que região Moisés fugiu após ter matado o egípcio?"], ["created_at", 2016-08-19 02:56:52 UTC], ["updated_at", 2016-08-19 02:56:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Midiã"], ["question_id", 2347], ["correct", true], ["created_at", 2016-08-19 02:56:52 UTC], ["updated_at", 2016-08-19 02:56:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Edom"], ["question_id", 2347], ["correct", false], ["created_at", 2016-08-19 02:56:52 UTC], ["updated_at", 2016-08-19 02:56:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moabe"], ["question_id", 2347], ["correct", false], ["created_at", 2016-08-19 02:56:52 UTC], ["updated_at", 2016-08-19 02:56:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Canaã"], ["question_id", 2347], ["correct", false], ["created_at", 2016-08-19 02:56:52 UTC], ["updated_at", 2016-08-19 02:56:52 UTC]]  (147.7ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para se apresentar a Isaque, seu futuro marido, Rebeca foi até:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para se apresentar a Isaque, seu futuro marido, Rebeca foi até:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para se apresentar a Isaque, seu futuro marido, Rebeca foi até:"], ["created_at", 2016-08-19 02:56:52 UTC], ["updated_at", 2016-08-19 02:56:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Canaã"], ["question_id", 2348], ["correct", true], ["created_at", 2016-08-19 02:56:52 UTC], ["updated_at", 2016-08-19 02:56:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 2348], ["correct", false], ["created_at", 2016-08-19 02:56:52 UTC], ["updated_at", 2016-08-19 02:56:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mesopotâmia"], ["question_id", 2348], ["correct", false], ["created_at", 2016-08-19 02:56:52 UTC], ["updated_at", 2016-08-19 02:56:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Terra Prometida"], ["question_id", 2348], ["correct", false], ["created_at", 2016-08-19 02:56:52 UTC], ["updated_at", 2016-08-19 02:56:52 UTC]]  (142.4ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para ter certeza de que o gigante Golias estava morto, o que Davi fez após ter jogado a pedra?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para ter certeza de que o gigante Golias estava morto, o que Davi fez após ter jogado a pedra?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para ter certeza de que o gigante Golias estava morto, o que Davi fez após ter jogado a pedra?"], ["created_at", 2016-08-19 02:56:52 UTC], ["updated_at", 2016-08-19 02:56:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cortou A Cabeça Com Uma Espada"], ["question_id", 2349], ["correct", true], ["created_at", 2016-08-19 02:56:52 UTC], ["updated_at", 2016-08-19 02:56:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jogou As Outras 4 Pedras Sobre Golias"], ["question_id", 2349], ["correct", false], ["created_at", 2016-08-19 02:56:52 UTC], ["updated_at", 2016-08-19 02:56:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Chamou Os Outros Soldados Para Acabar de Matá-lo"], ["question_id", 2349], ["correct", false], ["created_at", 2016-08-19 02:56:52 UTC], ["updated_at", 2016-08-19 02:56:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arrancou O Coração do Golias"], ["question_id", 2349], ["correct", false], ["created_at", 2016-08-19 02:56:52 UTC], ["updated_at", 2016-08-19 02:56:52 UTC]]  (139.1ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para tirar a força de Sansão, Dalila:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Para tirar a força de Sansão, Dalila:"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Para tirar a força de Sansão, Dalila:"], ["created_at", 2016-08-19 02:56:52 UTC], ["updated_at", 2016-08-19 02:56:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cortou Os Cabelos de Sansão"], ["question_id", 2350], ["correct", true], ["created_at", 2016-08-19 02:56:52 UTC], ["updated_at", 2016-08-19 02:56:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Furou Os Olhos de Sansão"], ["question_id", 2350], ["correct", false], ["created_at", 2016-08-19 02:56:52 UTC], ["updated_at", 2016-08-19 02:56:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Costurou A Boca de Sansão"], ["question_id", 2350], ["correct", false], ["created_at", 2016-08-19 02:56:52 UTC], ["updated_at", 2016-08-19 02:56:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cortou As Duas Mãos de Sansão"], ["question_id", 2350], ["correct", false], ["created_at", 2016-08-19 02:56:52 UTC], ["updated_at", 2016-08-19 02:56:52 UTC]]  (155.5ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Paulo ficou cego enquanto caminhava em qual estrada?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Paulo ficou cego enquanto caminhava em qual estrada?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Paulo ficou cego enquanto caminhava em qual estrada?"], ["created_at", 2016-08-19 02:56:52 UTC], ["updated_at", 2016-08-19 02:56:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Damasco"], ["question_id", 2351], ["correct", true], ["created_at", 2016-08-19 02:56:52 UTC], ["updated_at", 2016-08-19 02:56:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 2351], ["correct", false], ["created_at", 2016-08-19 02:56:52 UTC], ["updated_at", 2016-08-19 02:56:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 2351], ["correct", false], ["created_at", 2016-08-19 02:56:52 UTC], ["updated_at", 2016-08-19 02:56:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nazaré"], ["question_id", 2351], ["correct", false], ["created_at", 2016-08-19 02:56:52 UTC], ["updated_at", 2016-08-19 02:56:52 UTC]]  (157.8ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Paulo foi curado da sua cegueira por:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Paulo foi curado da sua cegueira por:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Paulo foi curado da sua cegueira por:"], ["created_at", 2016-08-19 02:56:52 UTC], ["updated_at", 2016-08-19 02:56:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ananias"], ["question_id", 2352], ["correct", true], ["created_at", 2016-08-19 02:56:52 UTC], ["updated_at", 2016-08-19 02:56:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 2352], ["correct", false], ["created_at", 2016-08-19 02:56:53 UTC], ["updated_at", 2016-08-19 02:56:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 2352], ["correct", false], ["created_at", 2016-08-19 02:56:53 UTC], ["updated_at", 2016-08-19 02:56:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 2352], ["correct", false], ["created_at", 2016-08-19 02:56:53 UTC], ["updated_at", 2016-08-19 02:56:53 UTC]]  (181.5ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pedro, apóstolo de Jesus, tinha um irmão pescador que também aceitou o chamado do Mestre. Seu nome era:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pedro, apóstolo de Jesus, tinha um irmão pescador que também aceitou o chamado do Mestre. Seu nome era:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Pedro, apóstolo de Jesus, tinha um irmão pescador que também aceitou o chamado do Mestre. Seu nome era:"], ["created_at", 2016-08-19 02:56:53 UTC], ["updated_at", 2016-08-19 02:56:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "André"], ["question_id", 2353], ["correct", true], ["created_at", 2016-08-19 02:56:53 UTC], ["updated_at", 2016-08-19 02:56:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 2353], ["correct", false], ["created_at", 2016-08-19 02:56:53 UTC], ["updated_at", 2016-08-19 02:56:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 2353], ["correct", false], ["created_at", 2016-08-19 02:56:53 UTC], ["updated_at", 2016-08-19 02:56:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tomé"], ["question_id", 2353], ["correct", false], ["created_at", 2016-08-19 02:56:53 UTC], ["updated_at", 2016-08-19 02:56:53 UTC]]  (122.2ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pelo fato de Mefibosete ser o último descendente da casa de Saul, o que o rei Davi lhe devolveu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pelo fato de Mefibosete ser o último descendente da casa de Saul, o que o rei Davi lhe devolveu?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Pelo fato de Mefibosete ser o último descendente da casa de Saul, o que o rei Davi lhe devolveu?"], ["created_at", 2016-08-19 02:56:53 UTC], ["updated_at", 2016-08-19 02:56:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Propriedades Pessoais de Saul"], ["question_id", 2354], ["correct", true], ["created_at", 2016-08-19 02:56:53 UTC], ["updated_at", 2016-08-19 02:56:53 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Esposas de Saul"], ["question_id", 2354], ["correct", false], ["created_at", 2016-08-19 02:56:53 UTC], ["updated_at", 2016-08-19 02:56:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Jumentos de Saul"], ["question_id", 2354], ["correct", false], ["created_at", 2016-08-19 02:56:53 UTC], ["updated_at", 2016-08-19 02:56:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Vinhas de Saul"], ["question_id", 2354], ["correct", false], ["created_at", 2016-08-19 02:56:53 UTC], ["updated_at", 2016-08-19 02:56:53 UTC]]  (130.2ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pelo fato de ter olhado para trás desobedecendo à instrução divina enquanto fugiam, em que a esposa de Ló foi transformada?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pelo fato de ter olhado para trás desobedecendo à instrução divina enquanto fugiam, em que a esposa de Ló foi transformada?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Pelo fato de ter olhado para trás desobedecendo à instrução divina enquanto fugiam, em que a esposa de Ló foi transformada?"], ["created_at", 2016-08-19 02:56:53 UTC], ["updated_at", 2016-08-19 02:56:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Estátua de Sal"], ["question_id", 2355], ["correct", true], ["created_at", 2016-08-19 02:56:53 UTC], ["updated_at", 2016-08-19 02:56:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Estátua de Pedra"], ["question_id", 2355], ["correct", false], ["created_at", 2016-08-19 02:56:53 UTC], ["updated_at", 2016-08-19 02:56:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Estátua de Bronze"], ["question_id", 2355], ["correct", false], ["created_at", 2016-08-19 02:56:53 UTC], ["updated_at", 2016-08-19 02:56:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Estátua de Cobre"], ["question_id", 2355], ["correct", false], ["created_at", 2016-08-19 02:56:53 UTC], ["updated_at", 2016-08-19 02:56:53 UTC]]  (113.6ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pelo que cada árvore é conhecida?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pelo que cada árvore é conhecida?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Pelo que cada árvore é conhecida?"], ["created_at", 2016-08-19 02:56:53 UTC], ["updated_at", 2016-08-19 02:56:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pelos Seus Frutos"], ["question_id", 2356], ["correct", true], ["created_at", 2016-08-19 02:56:53 UTC], ["updated_at", 2016-08-19 02:56:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pelas Suas Folhas"], ["question_id", 2356], ["correct", false], ["created_at", 2016-08-19 02:56:53 UTC], ["updated_at", 2016-08-19 02:56:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pelas Suas Raízes"], ["question_id", 2356], ["correct", false], ["created_at", 2016-08-19 02:56:53 UTC], ["updated_at", 2016-08-19 02:56:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pelos Seus Ramos"], ["question_id", 2356], ["correct", false], ["created_at", 2016-08-19 02:56:53 UTC], ["updated_at", 2016-08-19 02:56:53 UTC]]  (138.9ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pôncio Pilatos foi governador de qual região, na época que Jesus viveu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pôncio Pilatos foi governador de qual região, na época que Jesus viveu?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Pôncio Pilatos foi governador de qual região, na época que Jesus viveu?"], ["created_at", 2016-08-19 02:56:53 UTC], ["updated_at", 2016-08-19 02:56:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judéia"], ["question_id", 2357], ["correct", true], ["created_at", 2016-08-19 02:56:53 UTC], ["updated_at", 2016-08-19 02:56:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 2357], ["correct", false], ["created_at", 2016-08-19 02:56:53 UTC], ["updated_at", 2016-08-19 02:56:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Iduméia"], ["question_id", 2357], ["correct", false], ["created_at", 2016-08-19 02:56:53 UTC], ["updated_at", 2016-08-19 02:56:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cafarnaum"], ["question_id", 2357], ["correct", false], ["created_at", 2016-08-19 02:56:53 UTC], ["updated_at", 2016-08-19 02:56:53 UTC]]  (182.2ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pôncio Pilatos ordenou que Jesus fosse:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Pôncio Pilatos ordenou que Jesus fosse:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Pôncio Pilatos ordenou que Jesus fosse:"], ["created_at", 2016-08-19 02:56:53 UTC], ["updated_at", 2016-08-19 02:56:53 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Crucificado"], ["question_id", 2358], ["correct", true], ["created_at", 2016-08-19 02:56:53 UTC], ["updated_at", 2016-08-19 02:56:53 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Enforcado"], ["question_id", 2358], ["correct", false], ["created_at", 2016-08-19 02:56:53 UTC], ["updated_at", 2016-08-19 02:56:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Decapitado"], ["question_id", 2358], ["correct", false], ["created_at", 2016-08-19 02:56:53 UTC], ["updated_at", 2016-08-19 02:56:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Enterrado Vivo"], ["question_id", 2358], ["correct", false], ["created_at", 2016-08-19 02:56:53 UTC], ["updated_at", 2016-08-19 02:56:53 UTC]]  (172.3ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por causa do decreto de César Augusto, José e Maria precisaram mudar-se para:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por causa do decreto de César Augusto, José e Maria precisaram mudar-se para:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por causa do decreto de César Augusto, José e Maria precisaram mudar-se para:"], ["created_at", 2016-08-19 02:56:54 UTC], ["updated_at", 2016-08-19 02:56:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belém"], ["question_id", 2359], ["correct", true], ["created_at", 2016-08-19 02:56:54 UTC], ["updated_at", 2016-08-19 02:56:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nazaré"], ["question_id", 2359], ["correct", false], ["created_at", 2016-08-19 02:56:54 UTC], ["updated_at", 2016-08-19 02:56:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 2359], ["correct", false], ["created_at", 2016-08-19 02:56:54 UTC], ["updated_at", 2016-08-19 02:56:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cafarnaum"], ["question_id", 2359], ["correct", false], ["created_at", 2016-08-19 02:56:54 UTC], ["updated_at", 2016-08-19 02:56:54 UTC]]  (139.2ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por causa do pecado de Acã, quantos homens de Josué morreram?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por causa do pecado de Acã, quantos homens de Josué morreram?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por causa do pecado de Acã, quantos homens de Josué morreram?"], ["created_at", 2016-08-19 02:56:54 UTC], ["updated_at", 2016-08-19 02:56:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "36"], ["question_id", 2360], ["correct", true], ["created_at", 2016-08-19 02:56:54 UTC], ["updated_at", 2016-08-19 02:56:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "300"], ["question_id", 2360], ["correct", false], ["created_at", 2016-08-19 02:56:54 UTC], ["updated_at", 2016-08-19 02:56:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas Acã"], ["question_id", 2360], ["correct", false], ["created_at", 2016-08-19 02:56:54 UTC], ["updated_at", 2016-08-19 02:56:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhum"], ["question_id", 2360], ["correct", false], ["created_at", 2016-08-19 02:56:54 UTC], ["updated_at", 2016-08-19 02:56:54 UTC]]  (174.7ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por ciúmes e ódio, os irmãos de José o venderam à uma caravana como:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por ciúmes e ódio, os irmãos de José o venderam à uma caravana como:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por ciúmes e ódio, os irmãos de José o venderam à uma caravana como:"], ["created_at", 2016-08-19 02:56:54 UTC], ["updated_at", 2016-08-19 02:56:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escravo"], ["question_id", 2361], ["correct", true], ["created_at", 2016-08-19 02:56:54 UTC], ["updated_at", 2016-08-19 02:56:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Exímio Economista"], ["question_id", 2361], ["correct", false], ["created_at", 2016-08-19 02:56:54 UTC], ["updated_at", 2016-08-19 02:56:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Patrão"], ["question_id", 2361], ["correct", false], ["created_at", 2016-08-19 02:56:54 UTC], ["updated_at", 2016-08-19 02:56:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ótimo Funcionário"], ["question_id", 2361], ["correct", false], ["created_at", 2016-08-19 02:56:54 UTC], ["updated_at", 2016-08-19 02:56:54 UTC]]  (189.2ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por dinheiro, Judas Iscariotes traiu a:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por dinheiro, Judas Iscariotes traiu a:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por dinheiro, Judas Iscariotes traiu a:"], ["created_at", 2016-08-19 02:56:54 UTC], ["updated_at", 2016-08-19 02:56:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 2362], ["correct", true], ["created_at", 2016-08-19 02:56:54 UTC], ["updated_at", 2016-08-19 02:56:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 2362], ["correct", false], ["created_at", 2016-08-19 02:56:54 UTC], ["updated_at", 2016-08-19 02:56:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José de Arimatéia"], ["question_id", 2362], ["correct", false], ["created_at", 2016-08-19 02:56:54 UTC], ["updated_at", 2016-08-19 02:56:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zaqueu"], ["question_id", 2362], ["correct", false], ["created_at", 2016-08-19 02:56:54 UTC], ["updated_at", 2016-08-19 02:56:54 UTC]]  (139.1ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por onde os israelitas vagaram durante 40 anos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por onde os israelitas vagaram durante 40 anos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por onde os israelitas vagaram durante 40 anos?"], ["created_at", 2016-08-19 02:56:54 UTC], ["updated_at", 2016-08-19 02:56:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pelo Deserto"], ["question_id", 2363], ["correct", true], ["created_at", 2016-08-19 02:56:54 UTC], ["updated_at", 2016-08-19 02:56:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pelas Montanhas"], ["question_id", 2363], ["correct", false], ["created_at", 2016-08-19 02:56:54 UTC], ["updated_at", 2016-08-19 02:56:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pelos Vales"], ["question_id", 2363], ["correct", false], ["created_at", 2016-08-19 02:56:54 UTC], ["updated_at", 2016-08-19 02:56:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pelos Penhascos"], ["question_id", 2363], ["correct", false], ["created_at", 2016-08-19 02:56:54 UTC], ["updated_at", 2016-08-19 02:56:54 UTC]]  (156.1ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por qual Monte o rei Davi passou em sua fuga de seu filho rebelde?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por qual Monte o rei Davi passou em sua fuga de seu filho rebelde?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por qual Monte o rei Davi passou em sua fuga de seu filho rebelde?"], ["created_at", 2016-08-19 02:56:54 UTC], ["updated_at", 2016-08-19 02:56:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Monte das Oliveiras"], ["question_id", 2364], ["correct", true], ["created_at", 2016-08-19 02:56:54 UTC], ["updated_at", 2016-08-19 02:56:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Monte Ararat"], ["question_id", 2364], ["correct", false], ["created_at", 2016-08-19 02:56:54 UTC], ["updated_at", 2016-08-19 02:56:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Monte Sinai"], ["question_id", 2364], ["correct", false], ["created_at", 2016-08-19 02:56:54 UTC], ["updated_at", 2016-08-19 02:56:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Monte Moriá"], ["question_id", 2364], ["correct", false], ["created_at", 2016-08-19 02:56:54 UTC], ["updated_at", 2016-08-19 02:56:54 UTC]]  (155.5ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por qual motivo Daniel não se alimentava com os alimentos que eram oferecidos na mesa do rei?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por qual motivo Daniel não se alimentava com os alimentos que eram oferecidos na mesa do rei?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por qual motivo Daniel não se alimentava com os alimentos que eram oferecidos na mesa do rei?"], ["created_at", 2016-08-19 02:56:55 UTC], ["updated_at", 2016-08-19 02:56:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Eram Impuros"], ["question_id", 2365], ["correct", true], ["created_at", 2016-08-19 02:56:55 UTC], ["updated_at", 2016-08-19 02:56:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Não Eram Lavados"], ["question_id", 2365], ["correct", false], ["created_at", 2016-08-19 02:56:55 UTC], ["updated_at", 2016-08-19 02:56:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Não Eram Totalmente Crus"], ["question_id", 2365], ["correct", false], ["created_at", 2016-08-19 02:56:55 UTC], ["updated_at", 2016-08-19 02:56:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Não Havia Higiene Na Preparação dos Mesmos"], ["question_id", 2365], ["correct", false], ["created_at", 2016-08-19 02:56:55 UTC], ["updated_at", 2016-08-19 02:56:55 UTC]]  (131.6ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto anos aproximadamente o povo israelita foi escravo do povo egípcio?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto anos aproximadamente o povo israelita foi escravo do povo egípcio?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por quanto anos aproximadamente o povo israelita foi escravo do povo egípcio?"], ["created_at", 2016-08-19 02:56:55 UTC], ["updated_at", 2016-08-19 02:56:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "400"], ["question_id", 2366], ["correct", true], ["created_at", 2016-08-19 02:56:55 UTC], ["updated_at", 2016-08-19 02:56:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "200"], ["question_id", 2366], ["correct", false], ["created_at", 2016-08-19 02:56:55 UTC], ["updated_at", 2016-08-19 02:56:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "100"], ["question_id", 2366], ["correct", false], ["created_at", 2016-08-19 02:56:55 UTC], ["updated_at", 2016-08-19 02:56:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "700"], ["question_id", 2366], ["correct", false], ["created_at", 2016-08-19 02:56:55 UTC], ["updated_at", 2016-08-19 02:56:55 UTC]]  (206.0ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto anos Moisés viveu em Midiã?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto anos Moisés viveu em Midiã?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por quanto anos Moisés viveu em Midiã?"], ["created_at", 2016-08-19 02:56:55 UTC], ["updated_at", 2016-08-19 02:56:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "40"], ["question_id", 2367], ["correct", true], ["created_at", 2016-08-19 02:56:55 UTC], ["updated_at", 2016-08-19 02:56:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "30"], ["question_id", 2367], ["correct", false], ["created_at", 2016-08-19 02:56:55 UTC], ["updated_at", 2016-08-19 02:56:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "20"], ["question_id", 2367], ["correct", false], ["created_at", 2016-08-19 02:56:55 UTC], ["updated_at", 2016-08-19 02:56:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10"], ["question_id", 2367], ["correct", false], ["created_at", 2016-08-19 02:56:55 UTC], ["updated_at", 2016-08-19 02:56:55 UTC]]  (147.2ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto Moisés foi escondido por sua mãe, enquanto era bebê?\n1,"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto Moisés foi escondido por sua mãe, enquanto era bebê?\n1,"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por quanto Moisés foi escondido por sua mãe, enquanto era bebê?\n1,"], ["created_at", 2016-08-19 02:56:55 UTC], ["updated_at", 2016-08-19 02:56:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Meses"], ["question_id", 2368], ["correct", true], ["created_at", 2016-08-19 02:56:55 UTC], ["updated_at", 2016-08-19 02:56:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5 Meses"], ["question_id", 2368], ["correct", false], ["created_at", 2016-08-19 02:56:55 UTC], ["updated_at", 2016-08-19 02:56:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Mês"], ["question_id", 2368], ["correct", false], ["created_at", 2016-08-19 02:56:55 UTC], ["updated_at", 2016-08-19 02:56:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7 Meses"], ["question_id", 2368], ["correct", false], ["created_at", 2016-08-19 02:56:55 UTC], ["updated_at", 2016-08-19 02:56:55 UTC]]  (105.5ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo Absalão refugiou-se na cidade de Gesur, pelo fato de ter matado a Amnom?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo Absalão refugiou-se na cidade de Gesur, pelo fato de ter matado a Amnom?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por quanto tempo Absalão refugiou-se na cidade de Gesur, pelo fato de ter matado a Amnom?"], ["created_at", 2016-08-19 02:56:55 UTC], ["updated_at", 2016-08-19 02:56:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Anos"], ["question_id", 2369], ["correct", true], ["created_at", 2016-08-19 02:56:55 UTC], ["updated_at", 2016-08-19 02:56:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Meses"], ["question_id", 2369], ["correct", false], ["created_at", 2016-08-19 02:56:55 UTC], ["updated_at", 2016-08-19 02:56:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Dias"], ["question_id", 2369], ["correct", false], ["created_at", 2016-08-19 02:56:55 UTC], ["updated_at", 2016-08-19 02:56:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Semanas"], ["question_id", 2369], ["correct", false], ["created_at", 2016-08-19 02:56:55 UTC], ["updated_at", 2016-08-19 02:56:55 UTC]]  (122.1ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo durou o período de teste da alimentação de Daniel e seus amigos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo durou o período de teste da alimentação de Daniel e seus amigos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por quanto tempo durou o período de teste da alimentação de Daniel e seus amigos?"], ["created_at", 2016-08-19 02:56:55 UTC], ["updated_at", 2016-08-19 02:56:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10 Dias"], ["question_id", 2370], ["correct", true], ["created_at", 2016-08-19 02:56:55 UTC], ["updated_at", 2016-08-19 02:56:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10 Meses"], ["question_id", 2370], ["correct", false], ["created_at", 2016-08-19 02:56:55 UTC], ["updated_at", 2016-08-19 02:56:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "40 Dias"], ["question_id", 2370], ["correct", false], ["created_at", 2016-08-19 02:56:55 UTC], ["updated_at", 2016-08-19 02:56:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4 Meses"], ["question_id", 2370], ["correct", false], ["created_at", 2016-08-19 02:56:55 UTC], ["updated_at", 2016-08-19 02:56:55 UTC]]  (131.1ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo Jonas ficou preso dentro da barriga de um grande peixe?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo Jonas ficou preso dentro da barriga de um grande peixe?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por quanto tempo Jonas ficou preso dentro da barriga de um grande peixe?"], ["created_at", 2016-08-19 02:56:56 UTC], ["updated_at", 2016-08-19 02:56:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Dias"], ["question_id", 2371], ["correct", true], ["created_at", 2016-08-19 02:56:56 UTC], ["updated_at", 2016-08-19 02:56:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Horas"], ["question_id", 2371], ["correct", false], ["created_at", 2016-08-19 02:56:56 UTC], ["updated_at", 2016-08-19 02:56:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Semanas"], ["question_id", 2371], ["correct", false], ["created_at", 2016-08-19 02:56:56 UTC], ["updated_at", 2016-08-19 02:56:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Pôr-do-sóis"], ["question_id", 2371], ["correct", false], ["created_at", 2016-08-19 02:56:56 UTC], ["updated_at", 2016-08-19 02:56:56 UTC]]  (132.5ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo o gigante Golias provocou os israelitas?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo o gigante Golias provocou os israelitas?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por quanto tempo o gigante Golias provocou os israelitas?"], ["created_at", 2016-08-19 02:56:56 UTC], ["updated_at", 2016-08-19 02:56:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "40 Dias"], ["question_id", 2372], ["correct", true], ["created_at", 2016-08-19 02:56:56 UTC], ["updated_at", 2016-08-19 02:56:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4 Dias"], ["question_id", 2372], ["correct", false], ["created_at", 2016-08-19 02:56:56 UTC], ["updated_at", 2016-08-19 02:56:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4 Semanas"], ["question_id", 2372], ["correct", false], ["created_at", 2016-08-19 02:56:56 UTC], ["updated_at", 2016-08-19 02:56:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4 Meses"], ["question_id", 2372], ["correct", false], ["created_at", 2016-08-19 02:56:56 UTC], ["updated_at", 2016-08-19 02:56:56 UTC]]  (141.1ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo o povo de Nínive recebeu as advertências de Jonas?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo o povo de Nínive recebeu as advertências de Jonas?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por quanto tempo o povo de Nínive recebeu as advertências de Jonas?"], ["created_at", 2016-08-19 02:56:56 UTC], ["updated_at", 2016-08-19 02:56:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "40 Dias"], ["question_id", 2373], ["correct", true], ["created_at", 2016-08-19 02:56:56 UTC], ["updated_at", 2016-08-19 02:56:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4 Dias"], ["question_id", 2373], ["correct", false], ["created_at", 2016-08-19 02:56:56 UTC], ["updated_at", 2016-08-19 02:56:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Semana"], ["question_id", 2373], ["correct", false], ["created_at", 2016-08-19 02:56:56 UTC], ["updated_at", 2016-08-19 02:56:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Ano"], ["question_id", 2373], ["correct", false], ["created_at", 2016-08-19 02:56:56 UTC], ["updated_at", 2016-08-19 02:56:56 UTC]]  (139.0ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo o rei Davi jejuou e orou para que Deus mantivesse seu filho vivo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo o rei Davi jejuou e orou para que Deus mantivesse seu filho vivo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por quanto tempo o rei Davi jejuou e orou para que Deus mantivesse seu filho vivo?"], ["created_at", 2016-08-19 02:56:56 UTC], ["updated_at", 2016-08-19 02:56:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7 Dias"], ["question_id", 2374], ["correct", true], ["created_at", 2016-08-19 02:56:56 UTC], ["updated_at", 2016-08-19 02:56:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Dias"], ["question_id", 2374], ["correct", false], ["created_at", 2016-08-19 02:56:56 UTC], ["updated_at", 2016-08-19 02:56:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "30 Dias"], ["question_id", 2374], ["correct", false], ["created_at", 2016-08-19 02:56:56 UTC], ["updated_at", 2016-08-19 02:56:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Semanas"], ["question_id", 2374], ["correct", false], ["created_at", 2016-08-19 02:56:56 UTC], ["updated_at", 2016-08-19 02:56:56 UTC]]  (147.4ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo os espias enviados por Josué ficaram escondidos em um monte?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quanto tempo os espias enviados por Josué ficaram escondidos em um monte?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por quanto tempo os espias enviados por Josué ficaram escondidos em um monte?"], ["created_at", 2016-08-19 02:56:56 UTC], ["updated_at", 2016-08-19 02:56:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Dias"], ["question_id", 2375], ["correct", true], ["created_at", 2016-08-19 02:56:56 UTC], ["updated_at", 2016-08-19 02:56:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Horas"], ["question_id", 2375], ["correct", false], ["created_at", 2016-08-19 02:56:56 UTC], ["updated_at", 2016-08-19 02:56:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Semanas"], ["question_id", 2375], ["correct", false], ["created_at", 2016-08-19 02:56:56 UTC], ["updated_at", 2016-08-19 02:56:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Meses"], ["question_id", 2375], ["correct", false], ["created_at", 2016-08-19 02:56:56 UTC], ["updated_at", 2016-08-19 02:56:56 UTC]]  (291.8ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quantos anos Daniel e seus amigos deviam ser educados no serviço do rei?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quantos anos Daniel e seus amigos deviam ser educados no serviço do rei?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por quantos anos Daniel e seus amigos deviam ser educados no serviço do rei?"], ["created_at", 2016-08-19 02:56:56 UTC], ["updated_at", 2016-08-19 02:56:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 2376], ["correct", true], ["created_at", 2016-08-19 02:56:56 UTC], ["updated_at", 2016-08-19 02:56:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 2376], ["correct", false], ["created_at", 2016-08-19 02:56:56 UTC], ["updated_at", 2016-08-19 02:56:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 2376], ["correct", false], ["created_at", 2016-08-19 02:56:56 UTC], ["updated_at", 2016-08-19 02:56:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "8"], ["question_id", 2376], ["correct", false], ["created_at", 2016-08-19 02:56:56 UTC], ["updated_at", 2016-08-19 02:56:56 UTC]]  (155.6ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quantos anos José ficou na prisão antes do Faraó chamá-lo para interpretar seus sonhos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quantos anos José ficou na prisão antes do Faraó chamá-lo para interpretar seus sonhos?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por quantos anos José ficou na prisão antes do Faraó chamá-lo para interpretar seus sonhos?"], ["created_at", 2016-08-19 02:56:57 UTC], ["updated_at", 2016-08-19 02:56:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 2377], ["correct", true], ["created_at", 2016-08-19 02:56:57 UTC], ["updated_at", 2016-08-19 02:56:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 2377], ["correct", false], ["created_at", 2016-08-19 02:56:57 UTC], ["updated_at", 2016-08-19 02:56:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "6"], ["question_id", 2377], ["correct", false], ["created_at", 2016-08-19 02:56:57 UTC], ["updated_at", 2016-08-19 02:56:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12"], ["question_id", 2377], ["correct", false], ["created_at", 2016-08-19 02:56:57 UTC], ["updated_at", 2016-08-19 02:56:57 UTC]]  (132.2ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quantos dias durou a praga enviada por Deus contra os egícpios que transformava a água em sangue?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quantos dias durou a praga enviada por Deus contra os egícpios que transformava a água em sangue?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por quantos dias durou a praga enviada por Deus contra os egícpios que transformava a água em sangue?"], ["created_at", 2016-08-19 02:56:57 UTC], ["updated_at", 2016-08-19 02:56:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7"], ["question_id", 2378], ["correct", true], ["created_at", 2016-08-19 02:56:57 UTC], ["updated_at", 2016-08-19 02:56:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "14"], ["question_id", 2378], ["correct", false], ["created_at", 2016-08-19 02:56:57 UTC], ["updated_at", 2016-08-19 02:56:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "21"], ["question_id", 2378], ["correct", false], ["created_at", 2016-08-19 02:56:57 UTC], ["updated_at", 2016-08-19 02:56:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 2378], ["correct", false], ["created_at", 2016-08-19 02:56:57 UTC], ["updated_at", 2016-08-19 02:56:57 UTC]]  (188.8ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que Daniel foi atirado na cova dos leões?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que Daniel foi atirado na cova dos leões?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por que Daniel foi atirado na cova dos leões?"], ["created_at", 2016-08-19 02:56:57 UTC], ["updated_at", 2016-08-19 02:56:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Ter Orado A Deus"], ["question_id", 2379], ["correct", true], ["created_at", 2016-08-19 02:56:57 UTC], ["updated_at", 2016-08-19 02:56:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Não Ter Se Alimentado da Comida do Rei"], ["question_id", 2379], ["correct", false], ["created_at", 2016-08-19 02:56:57 UTC], ["updated_at", 2016-08-19 02:56:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Era Um Estrangeiro Israelita"], ["question_id", 2379], ["correct", false], ["created_at", 2016-08-19 02:56:57 UTC], ["updated_at", 2016-08-19 02:56:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Não Ajoelhou-se À Estátua do Rei"], ["question_id", 2379], ["correct", false], ["created_at", 2016-08-19 02:56:57 UTC], ["updated_at", 2016-08-19 02:56:57 UTC]]  (148.6ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que Jesus nasceu em um estábulo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que Jesus nasceu em um estábulo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por que Jesus nasceu em um estábulo?"], ["created_at", 2016-08-19 02:56:57 UTC], ["updated_at", 2016-08-19 02:56:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Não Havia Mais Lugar Na Estalagem"], ["question_id", 2380], ["correct", true], ["created_at", 2016-08-19 02:56:57 UTC], ["updated_at", 2016-08-19 02:56:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Era Mais Conveniente"], ["question_id", 2380], ["correct", false], ["created_at", 2016-08-19 02:56:57 UTC], ["updated_at", 2016-08-19 02:56:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Maria Gostava de Animais"], ["question_id", 2380], ["correct", false], ["created_at", 2016-08-19 02:56:57 UTC], ["updated_at", 2016-08-19 02:56:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois José Reformou O Estábulo"], ["question_id", 2380], ["correct", false], ["created_at", 2016-08-19 02:56:57 UTC], ["updated_at", 2016-08-19 02:56:57 UTC]]  (138.7ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que José e Maria precisaram viajar para Belém?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que José e Maria precisaram viajar para Belém?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por que José e Maria precisaram viajar para Belém?"], ["created_at", 2016-08-19 02:56:57 UTC], ["updated_at", 2016-08-19 02:56:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Participar de Um Recenseamento"], ["question_id", 2381], ["correct", true], ["created_at", 2016-08-19 02:56:57 UTC], ["updated_at", 2016-08-19 02:56:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Visitar A Família"], ["question_id", 2381], ["correct", false], ["created_at", 2016-08-19 02:56:57 UTC], ["updated_at", 2016-08-19 02:56:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Eles Moravam Lá"], ["question_id", 2381], ["correct", false], ["created_at", 2016-08-19 02:56:57 UTC], ["updated_at", 2016-08-19 02:56:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Causa de Um Trabalho Para José"], ["question_id", 2381], ["correct", false], ["created_at", 2016-08-19 02:56:57 UTC], ["updated_at", 2016-08-19 02:56:57 UTC]]  (123.8ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que Nadabe e Abiú morreram?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que Nadabe e Abiú morreram?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por que Nadabe e Abiú morreram?"], ["created_at", 2016-08-19 02:56:57 UTC], ["updated_at", 2016-08-19 02:56:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Trouxeram Fogo Estranho Na Presença de Deus"], ["question_id", 2382], ["correct", true], ["created_at", 2016-08-19 02:56:57 UTC], ["updated_at", 2016-08-19 02:56:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Haviam Roubado"], ["question_id", 2382], ["correct", false], ["created_at", 2016-08-19 02:56:57 UTC], ["updated_at", 2016-08-19 02:56:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Haviam Mcasado Com Mulheres Filistéias"], ["question_id", 2382], ["correct", false], ["created_at", 2016-08-19 02:56:57 UTC], ["updated_at", 2016-08-19 02:56:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Conspiravam Para Tomar A Coroa de Judá"], ["question_id", 2382], ["correct", false], ["created_at", 2016-08-19 02:56:57 UTC], ["updated_at", 2016-08-19 02:56:57 UTC]]  (149.5ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que o faraó mandou matar todos os bebês hebreus do sexo masculino que nascessem?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que o faraó mandou matar todos os bebês hebreus do sexo masculino que nascessem?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por que o faraó mandou matar todos os bebês hebreus do sexo masculino que nascessem?"], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Os Hebreus Estavam Crescendo Mui Rapidamente"], ["question_id", 2383], ["correct", true], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Havia Pouquiíssimas Meninas Para Casamento"], ["question_id", 2383], ["correct", false], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Os Meninos Eram Considerados Impuros"], ["question_id", 2383], ["correct", false], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Os Deuses Egípcios Exigiam Sacrifícios"], ["question_id", 2383], ["correct", false], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]]  (130.7ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que os irmãos de José decidiram vendê-lo como escravo por 20 moedas de prata?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que os irmãos de José decidiram vendê-lo como escravo por 20 moedas de prata?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por que os irmãos de José decidiram vendê-lo como escravo por 20 moedas de prata?"], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Queriam Se Livrar Dele"], ["question_id", 2384], ["correct", true], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Precisavam do Dinheiro"], ["question_id", 2384], ["correct", false], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque José Tinha Uma Doença Incurável"], ["question_id", 2384], ["correct", false], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque José Tinha Muitas Dívidas Para Pagar"], ["question_id", 2384], ["correct", false], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]]  (131.1ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que os irmãos de José o venderam como escravo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que os irmãos de José o venderam como escravo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por que os irmãos de José o venderam como escravo?"], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todas As Alternativas Estão Corretas"], ["question_id", 2385], ["correct", true], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Tinham Ciúmes Dele"], ["question_id", 2385], ["correct", false], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Tinham Ódio Dele"], ["question_id", 2385], ["correct", false], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Queriam Se Livrar Dele"], ["question_id", 2385], ["correct", false], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]]  (131.6ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que Pôncio Pilatos ordenou a colocação de guardas no sepulcro de Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que Pôncio Pilatos ordenou a colocação de guardas no sepulcro de Jesus?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por que Pôncio Pilatos ordenou a colocação de guardas no sepulcro de Jesus?"], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Evitar Que O Corpo Fosse Roubado"], ["question_id", 2386], ["correct", true], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Era Lei"], ["question_id", 2386], ["correct", false], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Era Hábito No Sepultamento de Judeus"], ["question_id", 2386], ["correct", false], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Manter O Corpo Em Segurança"], ["question_id", 2386], ["correct", false], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]]  (132.0ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que Rubens, o filho mais velho de Jacó, perdeu a sua primogenitura?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por que Rubens, o filho mais velho de Jacó, perdeu a sua primogenitura?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por que Rubens, o filho mais velho de Jacó, perdeu a sua primogenitura?"], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Ter Profanado O Leito do Seu Pai."], ["question_id", 2387], ["correct", true], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Ter Assassinado Seu Irmão"], ["question_id", 2387], ["correct", false], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Ter Vendido José Como Escravo Ao Egito"], ["question_id", 2387], ["correct", false], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Ser Filho Bastardo"], ["question_id", 2387], ["correct", false], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]]  (139.8ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quem um homem cego não pode ser guiado?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por quem um homem cego não pode ser guiado?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por quem um homem cego não pode ser guiado?"], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Um Homem Cego"], ["question_id", 2388], ["correct", true], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Um Homem Manco"], ["question_id", 2388], ["correct", false], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Um Homem Morto"], ["question_id", 2388], ["correct", false], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Por Um Homem Burro"], ["question_id", 2388], ["correct", false], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]]  (132.2ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por várias vezes, quem sofreu várias tentativas de assassinato por parte de Saul, rei de Israel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Por várias vezes, quem sofreu várias tentativas de assassinato por parte de Saul, rei de Israel?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Por várias vezes, quem sofreu várias tentativas de assassinato por parte de Saul, rei de Israel?"], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 2389], ["correct", true], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei Assuero"], ["question_id", 2389], ["correct", false], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei Nabucodonosor"], ["question_id", 2389], ["correct", false], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei Tiro"], ["question_id", 2389], ["correct", false], ["created_at", 2016-08-19 02:56:58 UTC], ["updated_at", 2016-08-19 02:56:58 UTC]]  (180.7ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque Deus pediu a Moisés para que tirasse as sandálias quando este viu a sarça ardente?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque Deus pediu a Moisés para que tirasse as sandálias quando este viu a sarça ardente?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Porque Deus pediu a Moisés para que tirasse as sandálias quando este viu a sarça ardente?"], ["created_at", 2016-08-19 02:56:59 UTC], ["updated_at", 2016-08-19 02:56:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Era Solo Sagrado"], ["question_id", 2390], ["correct", true], ["created_at", 2016-08-19 02:56:59 UTC], ["updated_at", 2016-08-19 02:56:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Estava Limpo"], ["question_id", 2390], ["correct", false], ["created_at", 2016-08-19 02:56:59 UTC], ["updated_at", 2016-08-19 02:56:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois As Sandálias Estavam Cheias de Barro"], ["question_id", 2390], ["correct", false], ["created_at", 2016-08-19 02:56:59 UTC], ["updated_at", 2016-08-19 02:56:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Deus Iria Dar Um Outro Par de Sandálias"], ["question_id", 2390], ["correct", false], ["created_at", 2016-08-19 02:56:59 UTC], ["updated_at", 2016-08-19 02:56:59 UTC]]  (182.0ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque Deus santificou e descansou no 7º dia da semana da criação?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque Deus santificou e descansou no 7º dia da semana da criação?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Porque Deus santificou e descansou no 7º dia da semana da criação?"], ["created_at", 2016-08-19 02:56:59 UTC], ["updated_at", 2016-08-19 02:56:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "P/ Dar Ao Homem Um Padrão Com Relação Ao Trabalho"], ["question_id", 2391], ["correct", true], ["created_at", 2016-08-19 02:56:59 UTC], ["updated_at", 2016-08-19 02:56:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Deus Estava Cansado"], ["question_id", 2391], ["correct", false], ["created_at", 2016-08-19 02:56:59 UTC], ["updated_at", 2016-08-19 02:56:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Tudo O Que Ele Faz É Santo"], ["question_id", 2391], ["correct", false], ["created_at", 2016-08-19 02:56:59 UTC], ["updated_at", 2016-08-19 02:56:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Dar Exemplo de Como Trabalhar Rápido"], ["question_id", 2391], ["correct", false], ["created_at", 2016-08-19 02:56:59 UTC], ["updated_at", 2016-08-19 02:56:59 UTC]]  (132.0ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque dos 30.000 trabalhadores designados para construítem o Templo de Jerusalém, apenas 10.000 trabalhavam no mês?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque dos 30.000 trabalhadores designados para construítem o Templo de Jerusalém, apenas 10.000 trabalhavam no mês?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Porque dos 30.000 trabalhadores designados para construítem o Templo de Jerusalém, apenas 10.000 trabalhavam no mês?"], ["created_at", 2016-08-19 02:56:59 UTC], ["updated_at", 2016-08-19 02:56:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Haver Rotação (trabalhava 1 e Folgava 2)"], ["question_id", 2392], ["correct", true], ["created_at", 2016-08-19 02:56:59 UTC], ["updated_at", 2016-08-19 02:56:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Eram Escravos, e Fugiam Constantemente"], ["question_id", 2392], ["correct", false], ["created_at", 2016-08-19 02:56:59 UTC], ["updated_at", 2016-08-19 02:56:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Eram Preguiçosos"], ["question_id", 2392], ["correct", false], ["created_at", 2016-08-19 02:56:59 UTC], ["updated_at", 2016-08-19 02:56:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois O Restante Eram Apenas Mulheres Cozinheiras"], ["question_id", 2392], ["correct", false], ["created_at", 2016-08-19 02:56:59 UTC], ["updated_at", 2016-08-19 02:56:59 UTC]]  (167.6ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque foi preciso que um anjo retirasse a pedra do sepulcro de Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque foi preciso que um anjo retirasse a pedra do sepulcro de Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Porque foi preciso que um anjo retirasse a pedra do sepulcro de Jesus?"], ["created_at", 2016-08-19 02:56:59 UTC], ["updated_at", 2016-08-19 02:56:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Que As Pessoas Vissem Que Jesus Ressuscitou"], ["question_id", 2393], ["correct", true], ["created_at", 2016-08-19 02:56:59 UTC], ["updated_at", 2016-08-19 02:56:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Era Muito Grande Para Jesus Carregar"], ["question_id", 2393], ["correct", false], ["created_at", 2016-08-19 02:56:59 UTC], ["updated_at", 2016-08-19 02:56:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Era Muito Pesasa Para Jesus Carregar"], ["question_id", 2393], ["correct", false], ["created_at", 2016-08-19 02:56:59 UTC], ["updated_at", 2016-08-19 02:56:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Estava Presa Entre Outras Rochas"], ["question_id", 2393], ["correct", false], ["created_at", 2016-08-19 02:56:59 UTC], ["updated_at", 2016-08-19 02:56:59 UTC]]  (230.5ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porquê Hamã ofereceu 10.000 talentos de prata ao Rei Assuero?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porquê Hamã ofereceu 10.000 talentos de prata ao Rei Assuero?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Porquê Hamã ofereceu 10.000 talentos de prata ao Rei Assuero?"], ["created_at", 2016-08-19 02:56:59 UTC], ["updated_at", 2016-08-19 02:56:59 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Exterminar Os Judeus"], ["question_id", 2394], ["correct", true], ["created_at", 2016-08-19 02:56:59 UTC], ["updated_at", 2016-08-19 02:56:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Pagar Uma Dívida Antiga"], ["question_id", 2394], ["correct", false], ["created_at", 2016-08-19 02:56:59 UTC], ["updated_at", 2016-08-19 02:56:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Comprar Uma Nova Esposa"], ["question_id", 2394], ["correct", false], ["created_at", 2016-08-19 02:56:59 UTC], ["updated_at", 2016-08-19 02:56:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Comprar Sua Liberdade"], ["question_id", 2394], ["correct", false], ["created_at", 2016-08-19 02:56:59 UTC], ["updated_at", 2016-08-19 02:56:59 UTC]]  (155.5ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque Nabote não queria vender ao rei Acaz a vinha que havia em suas terras?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque Nabote não queria vender ao rei Acaz a vinha que havia em suas terras?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Porque Nabote não queria vender ao rei Acaz a vinha que havia em suas terras?"], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois A Vinha Havia Pertencido Aos Seus Ancestrais"], ["question_id", 2395], ["correct", true], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois As Uvas Ainda Estavam Verdes"], ["question_id", 2395], ["correct", false], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois A Vinha Não Produzia Mais"], ["question_id", 2395], ["correct", false], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois A Vinha Ainda Iria Demorar Anos Para Produzir"], ["question_id", 2395], ["correct", false], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]]  (147.4ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque Saul desejava matar a Davi?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque Saul desejava matar a Davi?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Porque Saul desejava matar a Davi?"], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois A Popularidade de Davi Estava Crescendo"], ["question_id", 2396], ["correct", true], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Davi Era Mais Belo Que Saul"], ["question_id", 2396], ["correct", false], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Davi Era Mais Jovem Que Saul"], ["question_id", 2396], ["correct", false], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Davi Pretendia Casar-se Com Sua Filha"], ["question_id", 2396], ["correct", false], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]]  (139.1ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque um homem morte foi atirado no túmulo de Eliseu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Porque um homem morte foi atirado no túmulo de Eliseu?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Porque um homem morte foi atirado no túmulo de Eliseu?"], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Os Moabitas Estavam Invadindo A Terra"], ["question_id", 2397], ["correct", true], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque A Família Não Tinha Onde Enterrá-lo"], ["question_id", 2397], ["correct", false], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Ele Foi Executado Pelos Soldados Inimigos"], ["question_id", 2397], ["correct", false], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Era O Seu Último Desejo"], ["question_id", 2397], ["correct", false], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]]  (181.6ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Próximo a qual cidade o cego Bartimeu teve sua visão restabelecida por Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Próximo a qual cidade o cego Bartimeu teve sua visão restabelecida por Jesus?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Próximo a qual cidade o cego Bartimeu teve sua visão restabelecida por Jesus?"], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jericó"], ["question_id", 2398], ["correct", true], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Betânia"], ["question_id", 2398], ["correct", false], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Betesda"], ["question_id", 2398], ["correct", false], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 2398], ["correct", false], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]]  (131.6ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais discípulos receberam a orientação para que orassem junto com Jesus no Jardim do Getsêmani?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais discípulos receberam a orientação para que orassem junto com Jesus no Jardim do Getsêmani?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quais discípulos receberam a orientação para que orassem junto com Jesus no Jardim do Getsêmani?"], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todas As Alternativas Estão Corretas"], ["question_id", 2399], ["correct", true], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 2399], ["correct", false], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 2399], ["correct", false], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 2399], ["correct", false], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]]  (131.4ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais eram os nomes dos magos do Faraó que conseguiram imitar 2 pragas enviadas por Deus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais eram os nomes dos magos do Faraó que conseguiram imitar 2 pragas enviadas por Deus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quais eram os nomes dos magos do Faraó que conseguiram imitar 2 pragas enviadas por Deus?"], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Janes e Jambres"], ["question_id", 2400], ["correct", true], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeser e Joctã"], ["question_id", 2400], ["correct", false], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacã e Javá"], ["question_id", 2400], ["correct", false], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eolá e Ermafrom"], ["question_id", 2400], ["correct", false], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]]  (132.7ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais foram as primeiras palavras do anjo para os pastores que receberam as Boas Novas do nascimento do menino Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais foram as primeiras palavras do anjo para os pastores que receberam as Boas Novas do nascimento do menino Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quais foram as primeiras palavras do anjo para os pastores que receberam as Boas Novas do nascimento do menino Jesus?"], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Tenhais Medo!"], ["question_id", 2401], ["correct", true], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Olhai Para Os Céus!"], ["question_id", 2401], ["correct", false], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Prostrai-vos Perante O Menino Jesus!"], ["question_id", 2401], ["correct", false], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hosana A Deus!"], ["question_id", 2401], ["correct", false], ["created_at", 2016-08-19 02:57:00 UTC], ["updated_at", 2016-08-19 02:57:00 UTC]]  (123.8ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais foram as safras da cultura egípcia que foram destruídas, pelo fato de Deus ter enviado as pedras de fogo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais foram as safras da cultura egípcia que foram destruídas, pelo fato de Deus ter enviado as pedras de fogo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quais foram as safras da cultura egípcia que foram destruídas, pelo fato de Deus ter enviado as pedras de fogo?"], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Linho e Cevada"], ["question_id", 2402], ["correct", true], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Milho e Trigo"], ["question_id", 2402], ["correct", false], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Centeio e Cevada"], ["question_id", 2402], ["correct", false], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trigo e Linho"], ["question_id", 2402], ["correct", false], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]]  (130.9ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais foram as safras da cultura egípcia que sobreviveram às pedras de fogo enviadas por Deus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais foram as safras da cultura egípcia que sobreviveram às pedras de fogo enviadas por Deus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quais foram as safras da cultura egípcia que sobreviveram às pedras de fogo enviadas por Deus?"], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trigo e Centeio"], ["question_id", 2403], ["correct", true], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Milho e Cevada"], ["question_id", 2403], ["correct", false], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Linho e Trigo"], ["question_id", 2403], ["correct", false], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cevada e Centeio"], ["question_id", 2403], ["correct", false], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]]  (138.9ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais personagens bíblicos jejuaram 40 dias e 40 noites?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quais personagens bíblicos jejuaram 40 dias e 40 noites?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quais personagens bíblicos jejuaram 40 dias e 40 noites?"], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus, Elias e Moisés"], ["question_id", 2404], ["correct", true], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 2404], ["correct", false], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus e Elias"], ["question_id", 2404], ["correct", false], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus e Moisés"], ["question_id", 2404], ["correct", false], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]]  (130.6ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual a mulher que acolheu o seu inimigo e depois o matou?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual a mulher que acolheu o seu inimigo e depois o matou?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual a mulher que acolheu o seu inimigo e depois o matou?"], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jael"], ["question_id", 2405], ["correct", true], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 2405], ["correct", false], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elisa"], ["question_id", 2405], ["correct", false], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joquebede"], ["question_id", 2405], ["correct", false], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]]  (114.0ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual animal doméstico não é mencionado na Bíblia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual animal doméstico não é mencionado na Bíblia?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual animal doméstico não é mencionado na Bíblia?"], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gato"], ["question_id", 2406], ["correct", true], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cachorro"], ["question_id", 2406], ["correct", false], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Boi"], ["question_id", 2406], ["correct", false], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ovelha"], ["question_id", 2406], ["correct", false], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]]  (122.2ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual animal feriu Paulo, porém seu veneno não fez efeito algum?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual animal feriu Paulo, porém seu veneno não fez efeito algum?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual animal feriu Paulo, porém seu veneno não fez efeito algum?"], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cobra"], ["question_id", 2407], ["correct", true], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escorpião"], ["question_id", 2407], ["correct", false], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aranha"], ["question_id", 2407], ["correct", false], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porco-espinho"], ["question_id", 2407], ["correct", false], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]]  (107.0ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual animal Satanás utilizou para enganar a Eva no Jardim do Éden?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual animal Satanás utilizou para enganar a Eva no Jardim do Éden?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual animal Satanás utilizou para enganar a Eva no Jardim do Éden?"], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Serpente"], ["question_id", 2408], ["correct", true], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Papagaio"], ["question_id", 2408], ["correct", false], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arara"], ["question_id", 2408], ["correct", false], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Macaco"], ["question_id", 2408], ["correct", false], ["created_at", 2016-08-19 02:57:01 UTC], ["updated_at", 2016-08-19 02:57:01 UTC]]  (164.5ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual anjo disse a Zacarias que ele teria um filho?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual anjo disse a Zacarias que ele teria um filho?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual anjo disse a Zacarias que ele teria um filho?"], ["created_at", 2016-08-19 02:57:02 UTC], ["updated_at", 2016-08-19 02:57:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gabriel"], ["question_id", 2409], ["correct", true], ["created_at", 2016-08-19 02:57:02 UTC], ["updated_at", 2016-08-19 02:57:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miguel"], ["question_id", 2409], ["correct", false], ["created_at", 2016-08-19 02:57:02 UTC], ["updated_at", 2016-08-19 02:57:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Querubin"], ["question_id", 2409], ["correct", false], ["created_at", 2016-08-19 02:57:02 UTC], ["updated_at", 2016-08-19 02:57:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arcanjo"], ["question_id", 2409], ["correct", false], ["created_at", 2016-08-19 02:57:02 UTC], ["updated_at", 2016-08-19 02:57:02 UTC]]  (199.5ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo converteu Lídia, a 1ª mulher convertida na Europa?\n1,"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo converteu Lídia, a 1ª mulher convertida na Europa?\n1,"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual apóstolo converteu Lídia, a 1ª mulher convertida na Europa?\n1,"], ["created_at", 2016-08-19 02:57:02 UTC], ["updated_at", 2016-08-19 02:57:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 2410], ["correct", true], ["created_at", 2016-08-19 02:57:02 UTC], ["updated_at", 2016-08-19 02:57:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 2410], ["correct", false], ["created_at", 2016-08-19 02:57:02 UTC], ["updated_at", 2016-08-19 02:57:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filipe"], ["question_id", 2410], ["correct", false], ["created_at", 2016-08-19 02:57:02 UTC], ["updated_at", 2016-08-19 02:57:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Barnabé"], ["question_id", 2410], ["correct", false], ["created_at", 2016-08-19 02:57:02 UTC], ["updated_at", 2016-08-19 02:57:02 UTC]]  (173.7ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo de Jesus encontrou um eunuco etíope e o batizou na estrada para Gaza?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo de Jesus encontrou um eunuco etíope e o batizou na estrada para Gaza?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual apóstolo de Jesus encontrou um eunuco etíope e o batizou na estrada para Gaza?"], ["created_at", 2016-08-19 02:57:02 UTC], ["updated_at", 2016-08-19 02:57:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 2411], ["correct", true], ["created_at", 2016-08-19 02:57:02 UTC], ["updated_at", 2016-08-19 02:57:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "André"], ["question_id", 2411], ["correct", false], ["created_at", 2016-08-19 02:57:02 UTC], ["updated_at", 2016-08-19 02:57:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tomé"], ["question_id", 2411], ["correct", false], ["created_at", 2016-08-19 02:57:02 UTC], ["updated_at", 2016-08-19 02:57:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 2411], ["correct", false], ["created_at", 2016-08-19 02:57:02 UTC], ["updated_at", 2016-08-19 02:57:02 UTC]]  (147.3ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo de Jesus estava preso entre 2 guardas a prisão, e foi libertado por um anjo enviado por Deus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo de Jesus estava preso entre 2 guardas a prisão, e foi libertado por um anjo enviado por Deus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual apóstolo de Jesus estava preso entre 2 guardas a prisão, e foi libertado por um anjo enviado por Deus?"], ["created_at", 2016-08-19 02:57:02 UTC], ["updated_at", 2016-08-19 02:57:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 2412], ["correct", true], ["created_at", 2016-08-19 02:57:02 UTC], ["updated_at", 2016-08-19 02:57:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 2412], ["correct", false], ["created_at", 2016-08-19 02:57:02 UTC], ["updated_at", 2016-08-19 02:57:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Barnabé"], ["question_id", 2412], ["correct", false], ["created_at", 2016-08-19 02:57:02 UTC], ["updated_at", 2016-08-19 02:57:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 2412], ["correct", false], ["created_at", 2016-08-19 02:57:02 UTC], ["updated_at", 2016-08-19 02:57:02 UTC]]  (147.2ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo de Jesus tinha como profissão coletor de impostos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo de Jesus tinha como profissão coletor de impostos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual apóstolo de Jesus tinha como profissão coletor de impostos?"], ["created_at", 2016-08-19 02:57:02 UTC], ["updated_at", 2016-08-19 02:57:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mateus"], ["question_id", 2413], ["correct", true], ["created_at", 2016-08-19 02:57:02 UTC], ["updated_at", 2016-08-19 02:57:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 2413], ["correct", false], ["created_at", 2016-08-19 02:57:02 UTC], ["updated_at", 2016-08-19 02:57:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 2413], ["correct", false], ["created_at", 2016-08-19 02:57:02 UTC], ["updated_at", 2016-08-19 02:57:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "André"], ["question_id", 2413], ["correct", false], ["created_at", 2016-08-19 02:57:02 UTC], ["updated_at", 2016-08-19 02:57:02 UTC]]  (297.6ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo escreveu a Epístola aos Romanos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo escreveu a Epístola aos Romanos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual apóstolo escreveu a Epístola aos Romanos?"], ["created_at", 2016-08-19 02:57:03 UTC], ["updated_at", 2016-08-19 02:57:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 2414], ["correct", true], ["created_at", 2016-08-19 02:57:03 UTC], ["updated_at", 2016-08-19 02:57:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 2414], ["correct", false], ["created_at", 2016-08-19 02:57:03 UTC], ["updated_at", 2016-08-19 02:57:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 2414], ["correct", false], ["created_at", 2016-08-19 02:57:03 UTC], ["updated_at", 2016-08-19 02:57:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 2414], ["correct", false], ["created_at", 2016-08-19 02:57:03 UTC], ["updated_at", 2016-08-19 02:57:03 UTC]]  (130.7ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo foi confundido pelos gregos como sendo o deus Mercúrio?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo foi confundido pelos gregos como sendo o deus Mercúrio?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual apóstolo foi confundido pelos gregos como sendo o deus Mercúrio?"], ["created_at", 2016-08-19 02:57:03 UTC], ["updated_at", 2016-08-19 02:57:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 2415], ["correct", true], ["created_at", 2016-08-19 02:57:03 UTC], ["updated_at", 2016-08-19 02:57:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 2415], ["correct", false], ["created_at", 2016-08-19 02:57:03 UTC], ["updated_at", 2016-08-19 02:57:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 2415], ["correct", false], ["created_at", 2016-08-19 02:57:03 UTC], ["updated_at", 2016-08-19 02:57:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 2415], ["correct", false], ["created_at", 2016-08-19 02:57:03 UTC], ["updated_at", 2016-08-19 02:57:03 UTC]]  (146.9ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo foi morto decapitado:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo foi morto decapitado:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual apóstolo foi morto decapitado:"], ["created_at", 2016-08-19 02:57:03 UTC], ["updated_at", 2016-08-19 02:57:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 2416], ["correct", true], ["created_at", 2016-08-19 02:57:03 UTC], ["updated_at", 2016-08-19 02:57:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 2416], ["correct", false], ["created_at", 2016-08-19 02:57:03 UTC], ["updated_at", 2016-08-19 02:57:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas"], ["question_id", 2416], ["correct", false], ["created_at", 2016-08-19 02:57:03 UTC], ["updated_at", 2016-08-19 02:57:03 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Estêvão"], ["question_id", 2416], ["correct", false], ["created_at", 2016-08-19 02:57:03 UTC], ["updated_at", 2016-08-19 02:57:03 UTC]]  (181.4ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo queria prosseguir sua viagem para a Síria, mas que foi obrigado à retornar à Macedônia pois havia uma cilada?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo queria prosseguir sua viagem para a Síria, mas que foi obrigado à retornar à Macedônia pois havia uma cilada?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual apóstolo queria prosseguir sua viagem para a Síria, mas que foi obrigado à retornar à Macedônia pois havia uma cilada?"], ["created_at", 2016-08-19 02:57:03 UTC], ["updated_at", 2016-08-19 02:57:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 2417], ["correct", true], ["created_at", 2016-08-19 02:57:03 UTC], ["updated_at", 2016-08-19 02:57:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 2417], ["correct", false], ["created_at", 2016-08-19 02:57:03 UTC], ["updated_at", 2016-08-19 02:57:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 2417], ["correct", false], ["created_at", 2016-08-19 02:57:03 UTC], ["updated_at", 2016-08-19 02:57:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 2417], ["correct", false], ["created_at", 2016-08-19 02:57:03 UTC], ["updated_at", 2016-08-19 02:57:03 UTC]]  (165.5ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo ressuscitou um jovem chamado Êutico, que morreu após ter caído de uma janela ao adormecer?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo ressuscitou um jovem chamado Êutico, que morreu após ter caído de uma janela ao adormecer?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual apóstolo ressuscitou um jovem chamado Êutico, que morreu após ter caído de uma janela ao adormecer?"], ["created_at", 2016-08-19 02:57:03 UTC], ["updated_at", 2016-08-19 02:57:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 2418], ["correct", true], ["created_at", 2016-08-19 02:57:03 UTC], ["updated_at", 2016-08-19 02:57:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Timóteo"], ["question_id", 2418], ["correct", false], ["created_at", 2016-08-19 02:57:03 UTC], ["updated_at", 2016-08-19 02:57:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "André"], ["question_id", 2418], ["correct", false], ["created_at", 2016-08-19 02:57:03 UTC], ["updated_at", 2016-08-19 02:57:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 2418], ["correct", false], ["created_at", 2016-08-19 02:57:03 UTC], ["updated_at", 2016-08-19 02:57:03 UTC]]  (166.2ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo também era conhecido por Dídimo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo também era conhecido por Dídimo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual apóstolo também era conhecido por Dídimo?"], ["created_at", 2016-08-19 02:57:03 UTC], ["updated_at", 2016-08-19 02:57:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tomé"], ["question_id", 2419], ["correct", true], ["created_at", 2016-08-19 02:57:03 UTC], ["updated_at", 2016-08-19 02:57:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 2419], ["correct", false], ["created_at", 2016-08-19 02:57:03 UTC], ["updated_at", 2016-08-19 02:57:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 2419], ["correct", false], ["created_at", 2016-08-19 02:57:03 UTC], ["updated_at", 2016-08-19 02:57:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "André"], ["question_id", 2419], ["correct", false], ["created_at", 2016-08-19 02:57:03 UTC], ["updated_at", 2016-08-19 02:57:03 UTC]]  (222.2ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo traiu Jesus por dinheiro?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual apóstolo traiu Jesus por dinheiro?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual apóstolo traiu Jesus por dinheiro?"], ["created_at", 2016-08-19 02:57:04 UTC], ["updated_at", 2016-08-19 02:57:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas Iscariotes"], ["question_id", 2420], ["correct", true], ["created_at", 2016-08-19 02:57:04 UTC], ["updated_at", 2016-08-19 02:57:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mateus"], ["question_id", 2420], ["correct", false], ["created_at", 2016-08-19 02:57:04 UTC], ["updated_at", 2016-08-19 02:57:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Barnabé"], ["question_id", 2420], ["correct", false], ["created_at", 2016-08-19 02:57:04 UTC], ["updated_at", 2016-08-19 02:57:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 2420], ["correct", false], ["created_at", 2016-08-19 02:57:04 UTC], ["updated_at", 2016-08-19 02:57:04 UTC]]  (122.1ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual cidade Abraão pediu a Deus para não ser destruída?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual cidade Abraão pediu a Deus para não ser destruída?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual cidade Abraão pediu a Deus para não ser destruída?"], ["created_at", 2016-08-19 02:57:04 UTC], ["updated_at", 2016-08-19 02:57:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sodoma"], ["question_id", 2421], ["correct", true], ["created_at", 2016-08-19 02:57:04 UTC], ["updated_at", 2016-08-19 02:57:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 2421], ["correct", false], ["created_at", 2016-08-19 02:57:04 UTC], ["updated_at", 2016-08-19 02:57:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nínive"], ["question_id", 2421], ["correct", false], ["created_at", 2016-08-19 02:57:04 UTC], ["updated_at", 2016-08-19 02:57:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esmirna"], ["question_id", 2421], ["correct", false], ["created_at", 2016-08-19 02:57:04 UTC], ["updated_at", 2016-08-19 02:57:04 UTC]]  (130.3ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual cidade do Egito disse Faraó a José para acomodar sua família?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual cidade do Egito disse Faraó a José para acomodar sua família?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual cidade do Egito disse Faraó a José para acomodar sua família?"], ["created_at", 2016-08-19 02:57:04 UTC], ["updated_at", 2016-08-19 02:57:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gósen"], ["question_id", 2422], ["correct", true], ["created_at", 2016-08-19 02:57:04 UTC], ["updated_at", 2016-08-19 02:57:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaacar"], ["question_id", 2422], ["correct", false], ["created_at", 2016-08-19 02:57:04 UTC], ["updated_at", 2016-08-19 02:57:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Menén"], ["question_id", 2422], ["correct", false], ["created_at", 2016-08-19 02:57:04 UTC], ["updated_at", 2016-08-19 02:57:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ofradite"], ["question_id", 2422], ["correct", false], ["created_at", 2016-08-19 02:57:04 UTC], ["updated_at", 2016-08-19 02:57:04 UTC]]  (115.1ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual cidade também era conhecida por haver muitos gigantes?"], ["LIMIT", 1]]  (0.2ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual cidade também era conhecida por haver muitos gigantes?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual cidade também era conhecida por haver muitos gigantes?"], ["created_at", 2016-08-19 02:57:04 UTC], ["updated_at", 2016-08-19 02:57:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Astarote"], ["question_id", 2423], ["correct", true], ["created_at", 2016-08-19 02:57:04 UTC], ["updated_at", 2016-08-19 02:57:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hazor"], ["question_id", 2423], ["correct", false], ["created_at", 2016-08-19 02:57:04 UTC], ["updated_at", 2016-08-19 02:57:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gebal"], ["question_id", 2423], ["correct", false], ["created_at", 2016-08-19 02:57:04 UTC], ["updated_at", 2016-08-19 02:57:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gibazém"], ["question_id", 2423], ["correct", false], ["created_at", 2016-08-19 02:57:04 UTC], ["updated_at", 2016-08-19 02:57:04 UTC]]  (130.6ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual comandante de Israel que disse que só iria à batalha se uma mulher fosse com ele?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual comandante de Israel que disse que só iria à batalha se uma mulher fosse com ele?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual comandante de Israel que disse que só iria à batalha se uma mulher fosse com ele?"], ["created_at", 2016-08-19 02:57:04 UTC], ["updated_at", 2016-08-19 02:57:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Baraque"], ["question_id", 2424], ["correct", true], ["created_at", 2016-08-19 02:57:04 UTC], ["updated_at", 2016-08-19 02:57:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mesaque"], ["question_id", 2424], ["correct", false], ["created_at", 2016-08-19 02:57:04 UTC], ["updated_at", 2016-08-19 02:57:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sadraque"], ["question_id", 2424], ["correct", false], ["created_at", 2016-08-19 02:57:04 UTC], ["updated_at", 2016-08-19 02:57:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jefté"], ["question_id", 2424], ["correct", false], ["created_at", 2016-08-19 02:57:04 UTC], ["updated_at", 2016-08-19 02:57:04 UTC]]  (131.7ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual comemoração Jesus e seus pais participavam anualmente em Jerusalém?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual comemoração Jesus e seus pais participavam anualmente em Jerusalém?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual comemoração Jesus e seus pais participavam anualmente em Jerusalém?"], ["created_at", 2016-08-19 02:57:04 UTC], ["updated_at", 2016-08-19 02:57:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Da Páscoa dos Judeus"], ["question_id", 2425], ["correct", true], ["created_at", 2016-08-19 02:57:04 UTC], ["updated_at", 2016-08-19 02:57:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Natal Israelita"], ["question_id", 2425], ["correct", false], ["created_at", 2016-08-19 02:57:04 UTC], ["updated_at", 2016-08-19 02:57:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Da Vinda do Messias Prometido"], ["question_id", 2425], ["correct", false], ["created_at", 2016-08-19 02:57:04 UTC], ["updated_at", 2016-08-19 02:57:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Da Semana Santa Judaica"], ["question_id", 2425], ["correct", false], ["created_at", 2016-08-19 02:57:04 UTC], ["updated_at", 2016-08-19 02:57:04 UTC]]  (132.3ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual deficiência física Jônatas tinha?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual deficiência física Jônatas tinha?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual deficiência física Jônatas tinha?"], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Tinha Deficiência Nenhuma"], ["question_id", 2426], ["correct", true], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cegueira"], ["question_id", 2426], ["correct", false], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aleijado"], ["question_id", 2426], ["correct", false], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mudo"], ["question_id", 2426], ["correct", false], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]]  (141.4ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual deficiência física Mefibosete possuía?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual deficiência física Mefibosete possuía?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual deficiência física Mefibosete possuía?"], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Era Aleijado"], ["question_id", 2427], ["correct", true], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Era Cego"], ["question_id", 2427], ["correct", false], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Era Surdo"], ["question_id", 2427], ["correct", false], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Era Mudo"], ["question_id", 2427], ["correct", false], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]]  (132.8ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual destas tribos não pertencia às 12 tribos de Israel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual destas tribos não pertencia às 12 tribos de Israel?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual destas tribos não pertencia às 12 tribos de Israel?"], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Midiã"], ["question_id", 2428], ["correct", true], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Efraim"], ["question_id", 2428], ["correct", false], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dã"], ["question_id", 2428], ["correct", false], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gade"], ["question_id", 2428], ["correct", false], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]]  (132.6ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual discípulo recebeu a visão de um lençol cheio de animais?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual discípulo recebeu a visão de um lençol cheio de animais?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual discípulo recebeu a visão de um lençol cheio de animais?"], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 2429], ["correct", true], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 2429], ["correct", false], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bartolomeu"], ["question_id", 2429], ["correct", false], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Simão"], ["question_id", 2429], ["correct", false], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]]  (113.8ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual discípulo ressuscitou Dorcas?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual discípulo ressuscitou Dorcas?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual discípulo ressuscitou Dorcas?"], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 2430], ["correct", true], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 2430], ["correct", false], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 2430], ["correct", false], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 2430], ["correct", false], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]]  (114.9ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual discípulo teve sua sogra curada por Jesus na cidade de Cafarnaum?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual discípulo teve sua sogra curada por Jesus na cidade de Cafarnaum?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual discípulo teve sua sogra curada por Jesus na cidade de Cafarnaum?"], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 2431], ["correct", true], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 2431], ["correct", false], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 2431], ["correct", false], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "André"], ["question_id", 2431], ["correct", false], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]]  (115.6ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual discípulo traiu Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual discípulo traiu Jesus?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual discípulo traiu Jesus?"], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas Iscariotes"], ["question_id", 2432], ["correct", true], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Simão"], ["question_id", 2432], ["correct", false], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bartolomeu"], ["question_id", 2432], ["correct", false], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 2432], ["correct", false], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]]  (123.0ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos amigos do rei Davi fingiu estar apoiando Absalão apenas para ficar informado dos acontecimentos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos amigos do rei Davi fingiu estar apoiando Absalão apenas para ficar informado dos acontecimentos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual dos amigos do rei Davi fingiu estar apoiando Absalão apenas para ficar informado dos acontecimentos?"], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Husai"], ["question_id", 2433], ["correct", true], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ziba"], ["question_id", 2433], ["correct", false], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abiatar"], ["question_id", 2433], ["correct", false], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aitofel"], ["question_id", 2433], ["correct", false], ["created_at", 2016-08-19 02:57:05 UTC], ["updated_at", 2016-08-19 02:57:05 UTC]]  (114.1ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos apóstolos de Jesus era denominado Zelote?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos apóstolos de Jesus era denominado Zelote?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual dos apóstolos de Jesus era denominado Zelote?"], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Simão"], ["question_id", 2434], ["correct", true], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas"], ["question_id", 2434], ["correct", false], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "André"], ["question_id", 2434], ["correct", false], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 2434], ["correct", false], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]]  (180.2ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos apóstolos foi mordido por uma cobra, porém não sofreu mal nenhum?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos apóstolos foi mordido por uma cobra, porém não sofreu mal nenhum?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual dos apóstolos foi mordido por uma cobra, porém não sofreu mal nenhum?"], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 2435], ["correct", true], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 2435], ["correct", false], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filipe"], ["question_id", 2435], ["correct", false], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 2435], ["correct", false], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]]  (155.5ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos discípulos de Jesus caminhou sobre a água?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos discípulos de Jesus caminhou sobre a água?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual dos discípulos de Jesus caminhou sobre a água?"], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 2436], ["correct", true], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 2436], ["correct", false], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 2436], ["correct", false], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "André"], ["question_id", 2436], ["correct", false], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]]  (140.3ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos discípulos de Jesus cortou uma orelha dos algozes que vieram prender Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos discípulos de Jesus cortou uma orelha dos algozes que vieram prender Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual dos discípulos de Jesus cortou uma orelha dos algozes que vieram prender Jesus?"], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 2437], ["correct", true], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 2437], ["correct", false], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 2437], ["correct", false], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Simeão"], ["question_id", 2437], ["correct", false], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]]  (108.3ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos filhos de Davi estuprou Tamar, sua meia-irmã?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos filhos de Davi estuprou Tamar, sua meia-irmã?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual dos filhos de Davi estuprou Tamar, sua meia-irmã?"], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amnom"], ["question_id", 2438], ["correct", true], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Natã"], ["question_id", 2438], ["correct", false], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sobabe"], ["question_id", 2438], ["correct", false], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adonias"], ["question_id", 2438], ["correct", false], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]]  (114.2ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos filhos de Davi se rebelou contra o pai e tentou tomar o trono à força?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos filhos de Davi se rebelou contra o pai e tentou tomar o trono à força?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual dos filhos de Davi se rebelou contra o pai e tentou tomar o trono à força?"], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 2439], ["correct", true], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adonias"], ["question_id", 2439], ["correct", false], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2439], ["correct", false], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filho de Urias"], ["question_id", 2439], ["correct", false], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]]  (123.7ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos filhos de Davi se vingou pelo fato de seu irmão Amnom ter estuprado sua própria meia-irmã?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos filhos de Davi se vingou pelo fato de seu irmão Amnom ter estuprado sua própria meia-irmã?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual dos filhos de Davi se vingou pelo fato de seu irmão Amnom ter estuprado sua própria meia-irmã?"], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 2440], ["correct", true], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adonias"], ["question_id", 2440], ["correct", false], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2440], ["correct", false], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sefatias"], ["question_id", 2440], ["correct", false], ["created_at", 2016-08-19 02:57:06 UTC], ["updated_at", 2016-08-19 02:57:06 UTC]]  (113.5ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos livros abaixo não é considerado com um dos livros dos Evangelhos de Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual dos livros abaixo não é considerado com um dos livros dos Evangelhos de Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual dos livros abaixo não é considerado com um dos livros dos Evangelhos de Jesus?"], ["created_at", 2016-08-19 02:57:07 UTC], ["updated_at", 2016-08-19 02:57:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Atos dos Apóstolos"], ["question_id", 2441], ["correct", true], ["created_at", 2016-08-19 02:57:07 UTC], ["updated_at", 2016-08-19 02:57:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mateus"], ["question_id", 2441], ["correct", false], ["created_at", 2016-08-19 02:57:07 UTC], ["updated_at", 2016-08-19 02:57:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marcos"], ["question_id", 2441], ["correct", false], ["created_at", 2016-08-19 02:57:07 UTC], ["updated_at", 2016-08-19 02:57:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 2441], ["correct", false], ["created_at", 2016-08-19 02:57:07 UTC], ["updated_at", 2016-08-19 02:57:07 UTC]]  (114.2ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é a forma hebréia do nome do profeta Zacarias?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é a forma hebréia do nome do profeta Zacarias?"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é a forma hebréia do nome do profeta Zacarias?"], ["created_at", 2016-08-19 02:57:07 UTC], ["updated_at", 2016-08-19 02:57:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zecarias"], ["question_id", 2442], ["correct", true], ["created_at", 2016-08-19 02:57:07 UTC], ["updated_at", 2016-08-19 02:57:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zecarohw"], ["question_id", 2442], ["correct", false], ["created_at", 2016-08-19 02:57:07 UTC], ["updated_at", 2016-08-19 02:57:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zucow"], ["question_id", 2442], ["correct", false], ["created_at", 2016-08-19 02:57:07 UTC], ["updated_at", 2016-08-19 02:57:07 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zazias"], ["question_id", 2442], ["correct", false], ["created_at", 2016-08-19 02:57:07 UTC], ["updated_at", 2016-08-19 02:57:07 UTC]]  (138.3ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o 5º mandamento de Deus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o 5º mandamento de Deus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o 5º mandamento de Deus?"], ["created_at", 2016-08-19 02:57:07 UTC], ["updated_at", 2016-08-19 02:57:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Honra A Teu Pai e A Tua Mãe"], ["question_id", 2443], ["correct", true], ["created_at", 2016-08-19 02:57:07 UTC], ["updated_at", 2016-08-19 02:57:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Matarás"], ["question_id", 2443], ["correct", false], ["created_at", 2016-08-19 02:57:07 UTC], ["updated_at", 2016-08-19 02:57:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Furtarás"], ["question_id", 2443], ["correct", false], ["created_at", 2016-08-19 02:57:07 UTC], ["updated_at", 2016-08-19 02:57:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Mentirás"], ["question_id", 2443], ["correct", false], ["created_at", 2016-08-19 02:57:07 UTC], ["updated_at", 2016-08-19 02:57:07 UTC]]  (130.6ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o 6º mandamento de Deus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o 6º mandamento de Deus?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o 6º mandamento de Deus?"], ["created_at", 2016-08-19 02:57:07 UTC], ["updated_at", 2016-08-19 02:57:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Matarás"], ["question_id", 2444], ["correct", true], ["created_at", 2016-08-19 02:57:07 UTC], ["updated_at", 2016-08-19 02:57:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Mentirás"], ["question_id", 2444], ["correct", false], ["created_at", 2016-08-19 02:57:07 UTC], ["updated_at", 2016-08-19 02:57:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Furtarás"], ["question_id", 2444], ["correct", false], ["created_at", 2016-08-19 02:57:07 UTC], ["updated_at", 2016-08-19 02:57:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Honra A Teu Pai e A Tua Mãe"], ["question_id", 2444], ["correct", false], ["created_at", 2016-08-19 02:57:07 UTC], ["updated_at", 2016-08-19 02:57:07 UTC]]  (123.5ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o 7º mandamento de Deus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o 7º mandamento de Deus?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o 7º mandamento de Deus?"], ["created_at", 2016-08-19 02:57:07 UTC], ["updated_at", 2016-08-19 02:57:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Adulterarás"], ["question_id", 2445], ["correct", true], ["created_at", 2016-08-19 02:57:07 UTC], ["updated_at", 2016-08-19 02:57:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Mentirás"], ["question_id", 2445], ["correct", false], ["created_at", 2016-08-19 02:57:07 UTC], ["updated_at", 2016-08-19 02:57:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Furtarás"], ["question_id", 2445], ["correct", false], ["created_at", 2016-08-19 02:57:07 UTC], ["updated_at", 2016-08-19 02:57:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Matarás"], ["question_id", 2445], ["correct", false], ["created_at", 2016-08-19 02:57:07 UTC], ["updated_at", 2016-08-19 02:57:07 UTC]]  (123.1ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o 8º mandamento de Deus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o 8º mandamento de Deus?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o 8º mandamento de Deus?"], ["created_at", 2016-08-19 02:57:07 UTC], ["updated_at", 2016-08-19 02:57:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Furtarás"], ["question_id", 2446], ["correct", true], ["created_at", 2016-08-19 02:57:07 UTC], ["updated_at", 2016-08-19 02:57:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nao Matarás"], ["question_id", 2446], ["correct", false], ["created_at", 2016-08-19 02:57:07 UTC], ["updated_at", 2016-08-19 02:57:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Mentirás"], ["question_id", 2446], ["correct", false], ["created_at", 2016-08-19 02:57:07 UTC], ["updated_at", 2016-08-19 02:57:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Adulterarás"], ["question_id", 2446], ["correct", false], ["created_at", 2016-08-19 02:57:07 UTC], ["updated_at", 2016-08-19 02:57:07 UTC]]  (207.1ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o 9º mandamento de Deus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o 9º mandamento de Deus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o 9º mandamento de Deus?"], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Mentirás"], ["question_id", 2447], ["correct", true], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Matarás"], ["question_id", 2447], ["correct", false], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Furtarás"], ["question_id", 2447], ["correct", false], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Honra A Teu Pai e A Tua Mãe"], ["question_id", 2447], ["correct", false], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]]  (197.9ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o grau de parentesco entre Jetro e Zípora?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o grau de parentesco entre Jetro e Zípora?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o grau de parentesco entre Jetro e Zípora?"], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pai e Filha"], ["question_id", 2448], ["correct", true], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marido e Esposa"], ["question_id", 2448], ["correct", false], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tio e Sobrinha"], ["question_id", 2448], ["correct", false], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Avô e Neta"], ["question_id", 2448], ["correct", false], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]]  (122.2ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o grau de parentesco entre José do Egito e Abraão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o grau de parentesco entre José do Egito e Abraão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o grau de parentesco entre José do Egito e Abraão?"], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Neto e Avô"], ["question_id", 2449], ["correct", true], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sobrinho e Tio"], ["question_id", 2449], ["correct", false], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmãos"], ["question_id", 2449], ["correct", false], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Eram Parentes"], ["question_id", 2449], ["correct", false], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]]  (105.4ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o grau de parentesco entre Salomão e Roboão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o grau de parentesco entre Salomão e Roboão?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o grau de parentesco entre Salomão e Roboão?"], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pai e Filho"], ["question_id", 2450], ["correct", true], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Avô e Neto"], ["question_id", 2450], ["correct", false], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tio e Sobrinho"], ["question_id", 2450], ["correct", false], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sogro e Genro"], ["question_id", 2450], ["correct", false], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]]  (148.8ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o livro mais antigo da Bíblia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o livro mais antigo da Bíblia?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o livro mais antigo da Bíblia?"], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jó"], ["question_id", 2451], ["correct", true], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gênesis"], ["question_id", 2451], ["correct", false], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Êxodo"], ["question_id", 2451], ["correct", false], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Juízes"], ["question_id", 2451], ["correct", false], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]]  (148.4ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o maior capítulo da Bíblia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o maior capítulo da Bíblia?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o maior capítulo da Bíblia?"], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salmos 119"], ["question_id", 2452], ["correct", true], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salmos 117"], ["question_id", 2452], ["correct", false], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salmos 118"], ["question_id", 2452], ["correct", false], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salmos 120"], ["question_id", 2452], ["correct", false], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]]  (122.8ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o maior livro da Bíblia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o maior livro da Bíblia?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o maior livro da Bíblia?"], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salmos"], ["question_id", 2453], ["correct", true], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eclesiastes"], ["question_id", 2453], ["correct", false], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 2453], ["correct", false], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2ª Reis"], ["question_id", 2453], ["correct", false], ["created_at", 2016-08-19 02:57:08 UTC], ["updated_at", 2016-08-19 02:57:08 UTC]]  (148.8ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o maior versículo da Bíblia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o maior versículo da Bíblia?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o maior versículo da Bíblia?"], ["created_at", 2016-08-19 02:57:09 UTC], ["updated_at", 2016-08-19 02:57:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ester 8:9"], ["question_id", 2454], ["correct", true], ["created_at", 2016-08-19 02:57:09 UTC], ["updated_at", 2016-08-19 02:57:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Levítico 12:25"], ["question_id", 2454], ["correct", false], ["created_at", 2016-08-19 02:57:09 UTC], ["updated_at", 2016-08-19 02:57:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João 11:3"], ["question_id", 2454], ["correct", false], ["created_at", 2016-08-19 02:57:09 UTC], ["updated_at", 2016-08-19 02:57:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Números 4:21"], ["question_id", 2454], ["correct", false], ["created_at", 2016-08-19 02:57:09 UTC], ["updated_at", 2016-08-19 02:57:09 UTC]]  (163.4ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o menor capítulo da Bíblia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o menor capítulo da Bíblia?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o menor capítulo da Bíblia?"], ["created_at", 2016-08-19 02:57:09 UTC], ["updated_at", 2016-08-19 02:57:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salmos 117"], ["question_id", 2455], ["correct", true], ["created_at", 2016-08-19 02:57:09 UTC], ["updated_at", 2016-08-19 02:57:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salmos 118"], ["question_id", 2455], ["correct", false], ["created_at", 2016-08-19 02:57:09 UTC], ["updated_at", 2016-08-19 02:57:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salmos 119"], ["question_id", 2455], ["correct", false], ["created_at", 2016-08-19 02:57:09 UTC], ["updated_at", 2016-08-19 02:57:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salmos 120"], ["question_id", 2455], ["correct", false], ["created_at", 2016-08-19 02:57:09 UTC], ["updated_at", 2016-08-19 02:57:09 UTC]]  (113.8ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o menor lívro da Bíblia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o menor lívro da Bíblia?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o menor lívro da Bíblia?"], ["created_at", 2016-08-19 02:57:09 UTC], ["updated_at", 2016-08-19 02:57:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2ª João"], ["question_id", 2456], ["correct", true], ["created_at", 2016-08-19 02:57:09 UTC], ["updated_at", 2016-08-19 02:57:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1ª João"], ["question_id", 2456], ["correct", false], ["created_at", 2016-08-19 02:57:09 UTC], ["updated_at", 2016-08-19 02:57:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas"], ["question_id", 2456], ["correct", false], ["created_at", 2016-08-19 02:57:09 UTC], ["updated_at", 2016-08-19 02:57:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3ª João"], ["question_id", 2456], ["correct", false], ["created_at", 2016-08-19 02:57:09 UTC], ["updated_at", 2016-08-19 02:57:09 UTC]]  (182.3ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o menor versículo da Bíblia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o menor versículo da Bíblia?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o menor versículo da Bíblia?"], ["created_at", 2016-08-19 02:57:09 UTC], ["updated_at", 2016-08-19 02:57:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Êxodo 20:13"], ["question_id", 2457], ["correct", true], ["created_at", 2016-08-19 02:57:09 UTC], ["updated_at", 2016-08-19 02:57:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gênesis 12:12"], ["question_id", 2457], ["correct", false], ["created_at", 2016-08-19 02:57:09 UTC], ["updated_at", 2016-08-19 02:57:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mateus 18:21"], ["question_id", 2457], ["correct", false], ["created_at", 2016-08-19 02:57:09 UTC], ["updated_at", 2016-08-19 02:57:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apocalipse 3:18"], ["question_id", 2457], ["correct", false], ["created_at", 2016-08-19 02:57:09 UTC], ["updated_at", 2016-08-19 02:57:09 UTC]]  (239.6ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome da babá de Rebeca?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome da babá de Rebeca?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o nome da babá de Rebeca?"], ["created_at", 2016-08-19 02:57:09 UTC], ["updated_at", 2016-08-19 02:57:09 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Débora"], ["question_id", 2458], ["correct", true], ["created_at", 2016-08-19 02:57:09 UTC], ["updated_at", 2016-08-19 02:57:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 2458], ["correct", false], ["created_at", 2016-08-19 02:57:09 UTC], ["updated_at", 2016-08-19 02:57:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria"], ["question_id", 2458], ["correct", false], ["created_at", 2016-08-19 02:57:09 UTC], ["updated_at", 2016-08-19 02:57:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isabel"], ["question_id", 2458], ["correct", false], ["created_at", 2016-08-19 02:57:09 UTC], ["updated_at", 2016-08-19 02:57:09 UTC]]  (139.0ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome da cobertura da Arca da Aliança?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome da cobertura da Arca da Aliança?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o nome da cobertura da Arca da Aliança?"], ["created_at", 2016-08-19 02:57:09 UTC], ["updated_at", 2016-08-19 02:57:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Propiciatório"], ["question_id", 2459], ["correct", true], ["created_at", 2016-08-19 02:57:09 UTC], ["updated_at", 2016-08-19 02:57:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Altar de Bronze"], ["question_id", 2459], ["correct", false], ["created_at", 2016-08-19 02:57:09 UTC], ["updated_at", 2016-08-19 02:57:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Água-benta"], ["question_id", 2459], ["correct", false], ["created_at", 2016-08-19 02:57:09 UTC], ["updated_at", 2016-08-19 02:57:09 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lugar Santíssimo"], ["question_id", 2459], ["correct", false], ["created_at", 2016-08-19 02:57:09 UTC], ["updated_at", 2016-08-19 02:57:09 UTC]]  (180.2ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome da primeira mulher?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome da primeira mulher?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o nome da primeira mulher?"], ["created_at", 2016-08-19 02:57:10 UTC], ["updated_at", 2016-08-19 02:57:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eva"], ["question_id", 2460], ["correct", true], ["created_at", 2016-08-19 02:57:10 UTC], ["updated_at", 2016-08-19 02:57:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 2460], ["correct", false], ["created_at", 2016-08-19 02:57:10 UTC], ["updated_at", 2016-08-19 02:57:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria"], ["question_id", 2460], ["correct", false], ["created_at", 2016-08-19 02:57:10 UTC], ["updated_at", 2016-08-19 02:57:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sara"], ["question_id", 2460], ["correct", false], ["created_at", 2016-08-19 02:57:10 UTC], ["updated_at", 2016-08-19 02:57:10 UTC]]  (173.1ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome do anjo que avisou Maria de que ela iria ser a mãe de Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome do anjo que avisou Maria de que ela iria ser a mãe de Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o nome do anjo que avisou Maria de que ela iria ser a mãe de Jesus?"], ["created_at", 2016-08-19 02:57:10 UTC], ["updated_at", 2016-08-19 02:57:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gabriel"], ["question_id", 2461], ["correct", true], ["created_at", 2016-08-19 02:57:10 UTC], ["updated_at", 2016-08-19 02:57:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miguel"], ["question_id", 2461], ["correct", false], ["created_at", 2016-08-19 02:57:10 UTC], ["updated_at", 2016-08-19 02:57:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Darien"], ["question_id", 2461], ["correct", false], ["created_at", 2016-08-19 02:57:10 UTC], ["updated_at", 2016-08-19 02:57:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dabien"], ["question_id", 2461], ["correct", false], ["created_at", 2016-08-19 02:57:10 UTC], ["updated_at", 2016-08-19 02:57:10 UTC]]  (130.7ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome do filho de Ana que foi entregue ao Sumo Sacerdote Eli para ser cuidado por este?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome do filho de Ana que foi entregue ao Sumo Sacerdote Eli para ser cuidado por este?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o nome do filho de Ana que foi entregue ao Sumo Sacerdote Eli para ser cuidado por este?"], ["created_at", 2016-08-19 02:57:10 UTC], ["updated_at", 2016-08-19 02:57:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel"], ["question_id", 2462], ["correct", true], ["created_at", 2016-08-19 02:57:10 UTC], ["updated_at", 2016-08-19 02:57:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 2462], ["correct", false], ["created_at", 2016-08-19 02:57:10 UTC], ["updated_at", 2016-08-19 02:57:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sami"], ["question_id", 2462], ["correct", false], ["created_at", 2016-08-19 02:57:10 UTC], ["updated_at", 2016-08-19 02:57:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obadias"], ["question_id", 2462], ["correct", false], ["created_at", 2016-08-19 02:57:10 UTC], ["updated_at", 2016-08-19 02:57:10 UTC]]  (113.9ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome do filho de Ana, que foi dedicado ao serviço de Deus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome do filho de Ana, que foi dedicado ao serviço de Deus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o nome do filho de Ana, que foi dedicado ao serviço de Deus?"], ["created_at", 2016-08-19 02:57:10 UTC], ["updated_at", 2016-08-19 02:57:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel"], ["question_id", 2463], ["correct", true], ["created_at", 2016-08-19 02:57:10 UTC], ["updated_at", 2016-08-19 02:57:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eli"], ["question_id", 2463], ["correct", false], ["created_at", 2016-08-19 02:57:10 UTC], ["updated_at", 2016-08-19 02:57:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 2463], ["correct", false], ["created_at", 2016-08-19 02:57:10 UTC], ["updated_at", 2016-08-19 02:57:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Potifar"], ["question_id", 2463], ["correct", false], ["created_at", 2016-08-19 02:57:10 UTC], ["updated_at", 2016-08-19 02:57:10 UTC]]  (114.8ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome do temanita que repreendeu a Jó?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome do temanita que repreendeu a Jó?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o nome do temanita que repreendeu a Jó?"], ["created_at", 2016-08-19 02:57:10 UTC], ["updated_at", 2016-08-19 02:57:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elifaz"], ["question_id", 2464], ["correct", true], ["created_at", 2016-08-19 02:57:10 UTC], ["updated_at", 2016-08-19 02:57:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Berseba"], ["question_id", 2464], ["correct", false], ["created_at", 2016-08-19 02:57:10 UTC], ["updated_at", 2016-08-19 02:57:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ofel"], ["question_id", 2464], ["correct", false], ["created_at", 2016-08-19 02:57:10 UTC], ["updated_at", 2016-08-19 02:57:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uzi"], ["question_id", 2464], ["correct", false], ["created_at", 2016-08-19 02:57:10 UTC], ["updated_at", 2016-08-19 02:57:10 UTC]]  (114.8ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome do vale próximo a Jerusalém onde o povo sacrificava suas crianças ao deus Moloque?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o nome do vale próximo a Jerusalém onde o povo sacrificava suas crianças ao deus Moloque?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o nome do vale próximo a Jerusalém onde o povo sacrificava suas crianças ao deus Moloque?"], ["created_at", 2016-08-19 02:57:10 UTC], ["updated_at", 2016-08-19 02:57:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tofete"], ["question_id", 2465], ["correct", true], ["created_at", 2016-08-19 02:57:10 UTC], ["updated_at", 2016-08-19 02:57:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cedron"], ["question_id", 2465], ["correct", false], ["created_at", 2016-08-19 02:57:10 UTC], ["updated_at", 2016-08-19 02:57:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jizreel"], ["question_id", 2465], ["correct", false], ["created_at", 2016-08-19 02:57:10 UTC], ["updated_at", 2016-08-19 02:57:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hebrom"], ["question_id", 2465], ["correct", false], ["created_at", 2016-08-19 02:57:10 UTC], ["updated_at", 2016-08-19 02:57:10 UTC]]  (173.5ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o salmo onde todos os versos terminam com o estribilho \"Porque a Sua misericórdia dura para sempre.\"?\n1,"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o salmo onde todos os versos terminam com o estribilho \"Porque a Sua misericórdia dura para sempre.\"?\n1,"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o salmo onde todos os versos terminam com o estribilho \"Porque a Sua misericórdia dura para sempre.\"?\n1,"], ["created_at", 2016-08-19 02:57:11 UTC], ["updated_at", 2016-08-19 02:57:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "136"], ["question_id", 2466], ["correct", true], ["created_at", 2016-08-19 02:57:11 UTC], ["updated_at", 2016-08-19 02:57:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "150"], ["question_id", 2466], ["correct", false], ["created_at", 2016-08-19 02:57:11 UTC], ["updated_at", 2016-08-19 02:57:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "119"], ["question_id", 2466], ["correct", false], ["created_at", 2016-08-19 02:57:11 UTC], ["updated_at", 2016-08-19 02:57:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "51"], ["question_id", 2466], ["correct", false], ["created_at", 2016-08-19 02:57:11 UTC], ["updated_at", 2016-08-19 02:57:11 UTC]]  (115.5ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o significado do nome de Salomão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o significado do nome de Salomão?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o significado do nome de Salomão?"], ["created_at", 2016-08-19 02:57:11 UTC], ["updated_at", 2016-08-19 02:57:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pacífico"], ["question_id", 2467], ["correct", true], ["created_at", 2016-08-19 02:57:11 UTC], ["updated_at", 2016-08-19 02:57:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Conquistador"], ["question_id", 2467], ["correct", false], ["created_at", 2016-08-19 02:57:11 UTC], ["updated_at", 2016-08-19 02:57:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sábio"], ["question_id", 2467], ["correct", false], ["created_at", 2016-08-19 02:57:11 UTC], ["updated_at", 2016-08-19 02:57:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Humilde"], ["question_id", 2467], ["correct", false], ["created_at", 2016-08-19 02:57:11 UTC], ["updated_at", 2016-08-19 02:57:11 UTC]]  (124.0ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o significado do nome do Sumo Sacerdote Eli?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual é o significado do nome do Sumo Sacerdote Eli?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual é o significado do nome do Sumo Sacerdote Eli?"], ["created_at", 2016-08-19 02:57:11 UTC], ["updated_at", 2016-08-19 02:57:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Altíssimo, Sumo"], ["question_id", 2468], ["correct", true], ["created_at", 2016-08-19 02:57:11 UTC], ["updated_at", 2016-08-19 02:57:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Magnificiente"], ["question_id", 2468], ["correct", false], ["created_at", 2016-08-19 02:57:11 UTC], ["updated_at", 2016-08-19 02:57:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Santo"], ["question_id", 2468], ["correct", false], ["created_at", 2016-08-19 02:57:11 UTC], ["updated_at", 2016-08-19 02:57:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Separado"], ["question_id", 2468], ["correct", false], ["created_at", 2016-08-19 02:57:11 UTC], ["updated_at", 2016-08-19 02:57:11 UTC]]  (115.9ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a alimentação básica de João Batista no deserto?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a alimentação básica de João Batista no deserto?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a alimentação básica de João Batista no deserto?"], ["created_at", 2016-08-19 02:57:11 UTC], ["updated_at", 2016-08-19 02:57:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mel, Frutas e Gafanhotos"], ["question_id", 2469], ["correct", true], ["created_at", 2016-08-19 02:57:11 UTC], ["updated_at", 2016-08-19 02:57:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Água"], ["question_id", 2469], ["correct", false], ["created_at", 2016-08-19 02:57:11 UTC], ["updated_at", 2016-08-19 02:57:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pão e Leite"], ["question_id", 2469], ["correct", false], ["created_at", 2016-08-19 02:57:11 UTC], ["updated_at", 2016-08-19 02:57:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assado"], ["question_id", 2469], ["correct", false], ["created_at", 2016-08-19 02:57:11 UTC], ["updated_at", 2016-08-19 02:57:11 UTC]]  (155.4ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a altura aproximada do gigante Golias morto por Davi?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a altura aproximada do gigante Golias morto por Davi?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a altura aproximada do gigante Golias morto por Davi?"], ["created_at", 2016-08-19 02:57:11 UTC], ["updated_at", 2016-08-19 02:57:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "9 Pés de Altura"], ["question_id", 2470], ["correct", true], ["created_at", 2016-08-19 02:57:11 UTC], ["updated_at", 2016-08-19 02:57:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7 Pés de Altura"], ["question_id", 2470], ["correct", false], ["created_at", 2016-08-19 02:57:11 UTC], ["updated_at", 2016-08-19 02:57:11 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "19 Pés de Altura"], ["question_id", 2470], ["correct", false], ["created_at", 2016-08-19 02:57:11 UTC], ["updated_at", 2016-08-19 02:57:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "17 Pés de Altura"], ["question_id", 2470], ["correct", false], ["created_at", 2016-08-19 02:57:11 UTC], ["updated_at", 2016-08-19 02:57:11 UTC]]  (213.3ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a altura da arca de Noé?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a altura da arca de Noé?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a altura da arca de Noé?"], ["created_at", 2016-08-19 02:57:11 UTC], ["updated_at", 2016-08-19 02:57:11 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "13 Mts"], ["question_id", 2471], ["correct", true], ["created_at", 2016-08-19 02:57:11 UTC], ["updated_at", 2016-08-19 02:57:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "9 Mts"], ["question_id", 2471], ["correct", false], ["created_at", 2016-08-19 02:57:11 UTC], ["updated_at", 2016-08-19 02:57:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "25 Mts"], ["question_id", 2471], ["correct", false], ["created_at", 2016-08-19 02:57:11 UTC], ["updated_at", 2016-08-19 02:57:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "18 Mts"], ["question_id", 2471], ["correct", false], ["created_at", 2016-08-19 02:57:11 UTC], ["updated_at", 2016-08-19 02:57:11 UTC]]  (165.0ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a altura da estátua de ouro construída pelo rei Nabucodonosor?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a altura da estátua de ouro construída pelo rei Nabucodonosor?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a altura da estátua de ouro construída pelo rei Nabucodonosor?"], ["created_at", 2016-08-19 02:57:12 UTC], ["updated_at", 2016-08-19 02:57:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "90 Mts"], ["question_id", 2472], ["correct", true], ["created_at", 2016-08-19 02:57:12 UTC], ["updated_at", 2016-08-19 02:57:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10 Mts"], ["question_id", 2472], ["correct", false], ["created_at", 2016-08-19 02:57:12 UTC], ["updated_at", 2016-08-19 02:57:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "35 Mts"], ["question_id", 2472], ["correct", false], ["created_at", 2016-08-19 02:57:12 UTC], ["updated_at", 2016-08-19 02:57:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "65 Mts"], ["question_id", 2472], ["correct", false], ["created_at", 2016-08-19 02:57:12 UTC], ["updated_at", 2016-08-19 02:57:12 UTC]]  (172.6ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a capital do reino de Israel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a capital do reino de Israel?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a capital do reino de Israel?"], ["created_at", 2016-08-19 02:57:12 UTC], ["updated_at", 2016-08-19 02:57:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 2473], ["correct", true], ["created_at", 2016-08-19 02:57:12 UTC], ["updated_at", 2016-08-19 02:57:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Megido"], ["question_id", 2473], ["correct", false], ["created_at", 2016-08-19 02:57:12 UTC], ["updated_at", 2016-08-19 02:57:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jizreel"], ["question_id", 2473], ["correct", false], ["created_at", 2016-08-19 02:57:12 UTC], ["updated_at", 2016-08-19 02:57:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hebrom"], ["question_id", 2473], ["correct", false], ["created_at", 2016-08-19 02:57:12 UTC], ["updated_at", 2016-08-19 02:57:12 UTC]]  (222.2ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a cidade natal do discípulo Pedro?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a cidade natal do discípulo Pedro?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a cidade natal do discípulo Pedro?"], ["created_at", 2016-08-19 02:57:12 UTC], ["updated_at", 2016-08-19 02:57:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cafarnaum"], ["question_id", 2474], ["correct", true], ["created_at", 2016-08-19 02:57:12 UTC], ["updated_at", 2016-08-19 02:57:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Betsaida"], ["question_id", 2474], ["correct", false], ["created_at", 2016-08-19 02:57:12 UTC], ["updated_at", 2016-08-19 02:57:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hebrom"], ["question_id", 2474], ["correct", false], ["created_at", 2016-08-19 02:57:12 UTC], ["updated_at", 2016-08-19 02:57:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 2474], ["correct", false], ["created_at", 2016-08-19 02:57:12 UTC], ["updated_at", 2016-08-19 02:57:12 UTC]]  (121.9ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a cidade que Deus mandou Jonas advertir sobre seus pecados?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a cidade que Deus mandou Jonas advertir sobre seus pecados?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a cidade que Deus mandou Jonas advertir sobre seus pecados?"], ["created_at", 2016-08-19 02:57:12 UTC], ["updated_at", 2016-08-19 02:57:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nínive"], ["question_id", 2475], ["correct", true], ["created_at", 2016-08-19 02:57:12 UTC], ["updated_at", 2016-08-19 02:57:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaria"], ["question_id", 2475], ["correct", false], ["created_at", 2016-08-19 02:57:12 UTC], ["updated_at", 2016-08-19 02:57:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Patmos"], ["question_id", 2475], ["correct", false], ["created_at", 2016-08-19 02:57:12 UTC], ["updated_at", 2016-08-19 02:57:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Roma"], ["question_id", 2475], ["correct", false], ["created_at", 2016-08-19 02:57:12 UTC], ["updated_at", 2016-08-19 02:57:12 UTC]]  (149.7ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a cor da corda que Raabe fez descer quando os israelitas invadiram a cidade de Jericó?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a cor da corda que Raabe fez descer quando os israelitas invadiram a cidade de Jericó?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a cor da corda que Raabe fez descer quando os israelitas invadiram a cidade de Jericó?"], ["created_at", 2016-08-19 02:57:12 UTC], ["updated_at", 2016-08-19 02:57:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Púrpura"], ["question_id", 2476], ["correct", true], ["created_at", 2016-08-19 02:57:12 UTC], ["updated_at", 2016-08-19 02:57:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Preta"], ["question_id", 2476], ["correct", false], ["created_at", 2016-08-19 02:57:12 UTC], ["updated_at", 2016-08-19 02:57:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Branca"], ["question_id", 2476], ["correct", false], ["created_at", 2016-08-19 02:57:12 UTC], ["updated_at", 2016-08-19 02:57:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marrom"], ["question_id", 2476], ["correct", false], ["created_at", 2016-08-19 02:57:12 UTC], ["updated_at", 2016-08-19 02:57:12 UTC]]  (288.6ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a distância aproximada entre a cidade de Emaús e Jerusalém?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a distância aproximada entre a cidade de Emaús e Jerusalém?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a distância aproximada entre a cidade de Emaús e Jerusalém?"], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7 Milhas"], ["question_id", 2477], ["correct", true], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Milha"], ["question_id", 2477], ["correct", false], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12 Milhas"], ["question_id", 2477], ["correct", false], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4 Milhas"], ["question_id", 2477], ["correct", false], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]]  (152.1ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a enfermidade que o comandante Naamã era acometido?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a enfermidade que o comandante Naamã era acometido?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a enfermidade que o comandante Naamã era acometido?"], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lepra"], ["question_id", 2478], ["correct", true], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tuberculose"], ["question_id", 2478], ["correct", false], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cegueira"], ["question_id", 2478], ["correct", false], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mal de Parkinson"], ["question_id", 2478], ["correct", false], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]]  (148.8ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a enfermidade que o sacerdote deveria testemunhar, para definir se a pessoa deveria ou não ser apartada da família?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a enfermidade que o sacerdote deveria testemunhar, para definir se a pessoa deveria ou não ser apartada da família?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a enfermidade que o sacerdote deveria testemunhar, para definir se a pessoa deveria ou não ser apartada da família?"], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hanseníase"], ["question_id", 2479], ["correct", true], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tuberculose"], ["question_id", 2479], ["correct", false], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Catapora"], ["question_id", 2479], ["correct", false], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rubéola"], ["question_id", 2479], ["correct", false], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]]  (131.6ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a finalidade da moeda que Pedro encontrou dentro da boca de um peixe?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a finalidade da moeda que Pedro encontrou dentro da boca de um peixe?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a finalidade da moeda que Pedro encontrou dentro da boca de um peixe?"], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pagar Imposto"], ["question_id", 2480], ["correct", true], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Comprar Alimento"], ["question_id", 2480], ["correct", false], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ajudar Os Necessitados"], ["question_id", 2480], ["correct", false], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jogá-la Aos Porcos"], ["question_id", 2480], ["correct", false], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]]  (113.5ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade apriximada de Jesus quando começou a pregar seu ministério publicamente?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade apriximada de Jesus quando começou a pregar seu ministério publicamente?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a idade apriximada de Jesus quando começou a pregar seu ministério publicamente?"], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "30 Anos"], ["question_id", 2481], ["correct", true], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "29 Anos"], ["question_id", 2481], ["correct", false], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "31 Anos"], ["question_id", 2481], ["correct", false], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "28 Anos"], ["question_id", 2481], ["correct", false], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]]  (196.8ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Abraão quando Isaque nasceu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Abraão quando Isaque nasceu?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a idade de Abraão quando Isaque nasceu?"], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "100 Anos"], ["question_id", 2482], ["correct", true], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "95 Anos"], ["question_id", 2482], ["correct", false], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "105 Anos"], ["question_id", 2482], ["correct", false], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "125 Anos"], ["question_id", 2482], ["correct", false], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]]  (141.4ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Ezequias quando este se tornou rei?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Ezequias quando este se tornou rei?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a idade de Ezequias quando este se tornou rei?"], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "25 Anos"], ["question_id", 2483], ["correct", true], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "35 Anos"], ["question_id", 2483], ["correct", false], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "45 Anos"], ["question_id", 2483], ["correct", false], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "15 Anos"], ["question_id", 2483], ["correct", false], ["created_at", 2016-08-19 02:57:13 UTC], ["updated_at", 2016-08-19 02:57:13 UTC]]  (140.1ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Jesus quando seus pais se perderam do mesmo, e o encontraram ensinando no Templo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Jesus quando seus pais se perderam do mesmo, e o encontraram ensinando no Templo?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a idade de Jesus quando seus pais se perderam do mesmo, e o encontraram ensinando no Templo?"], ["created_at", 2016-08-19 02:57:14 UTC], ["updated_at", 2016-08-19 02:57:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12 Anos"], ["question_id", 2484], ["correct", true], ["created_at", 2016-08-19 02:57:14 UTC], ["updated_at", 2016-08-19 02:57:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "14 Anos"], ["question_id", 2484], ["correct", false], ["created_at", 2016-08-19 02:57:14 UTC], ["updated_at", 2016-08-19 02:57:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "16 Anos"], ["question_id", 2484], ["correct", false], ["created_at", 2016-08-19 02:57:14 UTC], ["updated_at", 2016-08-19 02:57:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10 Anos"], ["question_id", 2484], ["correct", false], ["created_at", 2016-08-19 02:57:14 UTC], ["updated_at", 2016-08-19 02:57:14 UTC]]  (223.9ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de José quando este recebeu do Faraó um anel pelo fato de ter interpretados os seus sonhos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de José quando este recebeu do Faraó um anel pelo fato de ter interpretados os seus sonhos?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a idade de José quando este recebeu do Faraó um anel pelo fato de ter interpretados os seus sonhos?"], ["created_at", 2016-08-19 02:57:14 UTC], ["updated_at", 2016-08-19 02:57:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "30 Anos"], ["question_id", 2485], ["correct", true], ["created_at", 2016-08-19 02:57:14 UTC], ["updated_at", 2016-08-19 02:57:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "15 Anos"], ["question_id", 2485], ["correct", false], ["created_at", 2016-08-19 02:57:14 UTC], ["updated_at", 2016-08-19 02:57:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "65 Anos"], ["question_id", 2485], ["correct", false], ["created_at", 2016-08-19 02:57:14 UTC], ["updated_at", 2016-08-19 02:57:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "42 Anos"], ["question_id", 2485], ["correct", false], ["created_at", 2016-08-19 02:57:14 UTC], ["updated_at", 2016-08-19 02:57:14 UTC]]  (140.3ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Moisés quando o mesmo matou um egípcio pelo fato deste estar surrando um hebreu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Moisés quando o mesmo matou um egípcio pelo fato deste estar surrando um hebreu?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a idade de Moisés quando o mesmo matou um egípcio pelo fato deste estar surrando um hebreu?"], ["created_at", 2016-08-19 02:57:14 UTC], ["updated_at", 2016-08-19 02:57:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "40 Anos"], ["question_id", 2486], ["correct", true], ["created_at", 2016-08-19 02:57:14 UTC], ["updated_at", 2016-08-19 02:57:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "35 Anos"], ["question_id", 2486], ["correct", false], ["created_at", 2016-08-19 02:57:14 UTC], ["updated_at", 2016-08-19 02:57:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "20 Anos"], ["question_id", 2486], ["correct", false], ["created_at", 2016-08-19 02:57:14 UTC], ["updated_at", 2016-08-19 02:57:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "65 Anos"], ["question_id", 2486], ["correct", false], ["created_at", 2016-08-19 02:57:14 UTC], ["updated_at", 2016-08-19 02:57:14 UTC]]  (106.4ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Noé quando a arca foi concluída?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Noé quando a arca foi concluída?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a idade de Noé quando a arca foi concluída?"], ["created_at", 2016-08-19 02:57:14 UTC], ["updated_at", 2016-08-19 02:57:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "600 Anos"], ["question_id", 2487], ["correct", true], ["created_at", 2016-08-19 02:57:14 UTC], ["updated_at", 2016-08-19 02:57:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "120 Anos"], ["question_id", 2487], ["correct", false], ["created_at", 2016-08-19 02:57:14 UTC], ["updated_at", 2016-08-19 02:57:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "430 Anos"], ["question_id", 2487], ["correct", false], ["created_at", 2016-08-19 02:57:14 UTC], ["updated_at", 2016-08-19 02:57:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "230 Anos"], ["question_id", 2487], ["correct", false], ["created_at", 2016-08-19 02:57:14 UTC], ["updated_at", 2016-08-19 02:57:14 UTC]]  (114.8ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Sara quando Isaque nasceu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a idade de Sara quando Isaque nasceu?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a idade de Sara quando Isaque nasceu?"], ["created_at", 2016-08-19 02:57:14 UTC], ["updated_at", 2016-08-19 02:57:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "90 Anos"], ["question_id", 2488], ["correct", true], ["created_at", 2016-08-19 02:57:14 UTC], ["updated_at", 2016-08-19 02:57:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "80 Anos"], ["question_id", 2488], ["correct", false], ["created_at", 2016-08-19 02:57:14 UTC], ["updated_at", 2016-08-19 02:57:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "105 Anos"], ["question_id", 2488], ["correct", false], ["created_at", 2016-08-19 02:57:14 UTC], ["updated_at", 2016-08-19 02:57:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "95 Anos"], ["question_id", 2488], ["correct", false], ["created_at", 2016-08-19 02:57:14 UTC], ["updated_at", 2016-08-19 02:57:14 UTC]]  (114.3ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a nacionalidade da mulher que estava tirando água do poço e deu a Jesus para beber?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a nacionalidade da mulher que estava tirando água do poço e deu a Jesus para beber?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a nacionalidade da mulher que estava tirando água do poço e deu a Jesus para beber?"], ["created_at", 2016-08-19 02:57:14 UTC], ["updated_at", 2016-08-19 02:57:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samaritana"], ["question_id", 2489], ["correct", true], ["created_at", 2016-08-19 02:57:14 UTC], ["updated_at", 2016-08-19 02:57:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônica"], ["question_id", 2489], ["correct", false], ["created_at", 2016-08-19 02:57:14 UTC], ["updated_at", 2016-08-19 02:57:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenícia"], ["question_id", 2489], ["correct", false], ["created_at", 2016-08-19 02:57:14 UTC], ["updated_at", 2016-08-19 02:57:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egípcia"], ["question_id", 2489], ["correct", false], ["created_at", 2016-08-19 02:57:14 UTC], ["updated_at", 2016-08-19 02:57:14 UTC]]  (122.1ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a nacionalidade de 11 dos 12 apóstolos de Jesus?\n1,"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a nacionalidade de 11 dos 12 apóstolos de Jesus?\n1,"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a nacionalidade de 11 dos 12 apóstolos de Jesus?\n1,"], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Galileu"], ["question_id", 2490], ["correct", true], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nazireu"], ["question_id", 2490], ["correct", false], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Romano"], ["question_id", 2490], ["correct", false], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nazareno"], ["question_id", 2490], ["correct", false], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]]  (148.2ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a nacionalidade de Dalila, esposa de Sansão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a nacionalidade de Dalila, esposa de Sansão?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a nacionalidade de Dalila, esposa de Sansão?"], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filistéia"], ["question_id", 2491], ["correct", true], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cananéia"], ["question_id", 2491], ["correct", false], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egípcia"], ["question_id", 2491], ["correct", false], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenícia"], ["question_id", 2491], ["correct", false], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]]  (131.4ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a nacionalidade de Ebede-Meleque, o eunuco que havia salvo o profeta Jeremias?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a nacionalidade de Ebede-Meleque, o eunuco que havia salvo o profeta Jeremias?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a nacionalidade de Ebede-Meleque, o eunuco que havia salvo o profeta Jeremias?"], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Etíope"], ["question_id", 2492], ["correct", true], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenício"], ["question_id", 2492], ["correct", false], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Grego"], ["question_id", 2492], ["correct", false], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônico"], ["question_id", 2492], ["correct", false], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]]  (132.4ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a nacionalidade do gigante Golias morto por Davi?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a nacionalidade do gigante Golias morto por Davi?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a nacionalidade do gigante Golias morto por Davi?"], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filisteu"], ["question_id", 2493], ["correct", true], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amorreu"], ["question_id", 2493], ["correct", false], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fariseu"], ["question_id", 2493], ["correct", false], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egípcio"], ["question_id", 2493], ["correct", false], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]]  (157.5ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de André antes de se tornar apóstolo de Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de André antes de se tornar apóstolo de Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a profissão de André antes de se tornar apóstolo de Jesus?"], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pescador"], ["question_id", 2494], ["correct", true], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pintor"], ["question_id", 2494], ["correct", false], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marceneiro"], ["question_id", 2494], ["correct", false], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Construtor Naval"], ["question_id", 2494], ["correct", false], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]]  (172.3ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de Demétrio que havia instigado uma revolta entre os próprios discípulos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de Demétrio que havia instigado uma revolta entre os próprios discípulos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a profissão de Demétrio que havia instigado uma revolta entre os próprios discípulos?"], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ourives"], ["question_id", 2495], ["correct", true], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marceneiro"], ["question_id", 2495], ["correct", false], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carpinteiro"], ["question_id", 2495], ["correct", false], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cobrador de Imposto"], ["question_id", 2495], ["correct", false], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]]  (130.5ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de José, pai de Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de José, pai de Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a profissão de José, pai de Jesus?"], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carpinteiro"], ["question_id", 2496], ["correct", true], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marceneiro"], ["question_id", 2496], ["correct", false], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pintor"], ["question_id", 2496], ["correct", false], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pescador"], ["question_id", 2496], ["correct", false], ["created_at", 2016-08-19 02:57:15 UTC], ["updated_at", 2016-08-19 02:57:15 UTC]]  (181.1ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de Mateus, um dos apóstolos de Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de Mateus, um dos apóstolos de Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a profissão de Mateus, um dos apóstolos de Jesus?"], ["created_at", 2016-08-19 02:57:16 UTC], ["updated_at", 2016-08-19 02:57:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Coletor de Impostos"], ["question_id", 2497], ["correct", true], ["created_at", 2016-08-19 02:57:16 UTC], ["updated_at", 2016-08-19 02:57:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pescador"], ["question_id", 2497], ["correct", false], ["created_at", 2016-08-19 02:57:16 UTC], ["updated_at", 2016-08-19 02:57:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carpinteiro"], ["question_id", 2497], ["correct", false], ["created_at", 2016-08-19 02:57:16 UTC], ["updated_at", 2016-08-19 02:57:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedreiro"], ["question_id", 2497], ["correct", false], ["created_at", 2016-08-19 02:57:16 UTC], ["updated_at", 2016-08-19 02:57:16 UTC]]  (189.2ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de Pedro antes de se tornar apóstolo de Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de Pedro antes de se tornar apóstolo de Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a profissão de Pedro antes de se tornar apóstolo de Jesus?"], ["created_at", 2016-08-19 02:57:16 UTC], ["updated_at", 2016-08-19 02:57:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pescador"], ["question_id", 2498], ["correct", true], ["created_at", 2016-08-19 02:57:16 UTC], ["updated_at", 2016-08-19 02:57:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carpinteiro"], ["question_id", 2498], ["correct", false], ["created_at", 2016-08-19 02:57:16 UTC], ["updated_at", 2016-08-19 02:57:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oleiro"], ["question_id", 2498], ["correct", false], ["created_at", 2016-08-19 02:57:16 UTC], ["updated_at", 2016-08-19 02:57:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marceneiro"], ["question_id", 2498], ["correct", false], ["created_at", 2016-08-19 02:57:16 UTC], ["updated_at", 2016-08-19 02:57:16 UTC]]  (148.7ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de Raquel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de Raquel?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a profissão de Raquel?"], ["created_at", 2016-08-19 02:57:16 UTC], ["updated_at", 2016-08-19 02:57:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pastora de Ovelhas"], ["question_id", 2499], ["correct", true], ["created_at", 2016-08-19 02:57:16 UTC], ["updated_at", 2016-08-19 02:57:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Padeira"], ["question_id", 2499], ["correct", false], ["created_at", 2016-08-19 02:57:16 UTC], ["updated_at", 2016-08-19 02:57:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pescadora"], ["question_id", 2499], ["correct", false], ["created_at", 2016-08-19 02:57:16 UTC], ["updated_at", 2016-08-19 02:57:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Do Lar"], ["question_id", 2499], ["correct", false], ["created_at", 2016-08-19 02:57:16 UTC], ["updated_at", 2016-08-19 02:57:16 UTC]]  (113.8ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de Zaqueu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a profissão de Zaqueu?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a profissão de Zaqueu?"], ["created_at", 2016-08-19 02:57:16 UTC], ["updated_at", 2016-08-19 02:57:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Coletor de Impostos"], ["question_id", 2500], ["correct", true], ["created_at", 2016-08-19 02:57:16 UTC], ["updated_at", 2016-08-19 02:57:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escriba"], ["question_id", 2500], ["correct", false], ["created_at", 2016-08-19 02:57:16 UTC], ["updated_at", 2016-08-19 02:57:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marceneiro"], ["question_id", 2500], ["correct", false], ["created_at", 2016-08-19 02:57:16 UTC], ["updated_at", 2016-08-19 02:57:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pescador"], ["question_id", 2500], ["correct", false], ["created_at", 2016-08-19 02:57:16 UTC], ["updated_at", 2016-08-19 02:57:16 UTC]]  (140.3ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a punição imposta pelo rei Dario caso alguém não obedecesse ao decreto por ele assinado?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a punição imposta pelo rei Dario caso alguém não obedecesse ao decreto por ele assinado?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a punição imposta pelo rei Dario caso alguém não obedecesse ao decreto por ele assinado?"], ["created_at", 2016-08-19 02:57:16 UTC], ["updated_at", 2016-08-19 02:57:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seria Jogado Na Cova dos Leões"], ["question_id", 2501], ["correct", true], ["created_at", 2016-08-19 02:57:16 UTC], ["updated_at", 2016-08-19 02:57:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pagaria Pesada Multa"], ["question_id", 2501], ["correct", false], ["created_at", 2016-08-19 02:57:16 UTC], ["updated_at", 2016-08-19 02:57:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seria Preso"], ["question_id", 2501], ["correct", false], ["created_at", 2016-08-19 02:57:16 UTC], ["updated_at", 2016-08-19 02:57:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seria Deportado do País"], ["question_id", 2501], ["correct", false], ["created_at", 2016-08-19 02:57:16 UTC], ["updated_at", 2016-08-19 02:57:16 UTC]]  (157.1ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a punição imposta pelo rei Nabucodonosor caso as pessoas a quem ele chamou não decifrassem os seus sonhos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a punição imposta pelo rei Nabucodonosor caso as pessoas a quem ele chamou não decifrassem os seus sonhos?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a punição imposta pelo rei Nabucodonosor caso as pessoas a quem ele chamou não decifrassem os seus sonhos?"], ["created_at", 2016-08-19 02:57:16 UTC], ["updated_at", 2016-08-19 02:57:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seriam Mortas"], ["question_id", 2502], ["correct", true], ["created_at", 2016-08-19 02:57:16 UTC], ["updated_at", 2016-08-19 02:57:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seriam Presas"], ["question_id", 2502], ["correct", false], ["created_at", 2016-08-19 02:57:16 UTC], ["updated_at", 2016-08-19 02:57:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seriam Destituídas de Suas Profissões"], ["question_id", 2502], ["correct", false], ["created_at", 2016-08-19 02:57:16 UTC], ["updated_at", 2016-08-19 02:57:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Passariam A Ser Escravos"], ["question_id", 2502], ["correct", false], ["created_at", 2016-08-19 02:57:16 UTC], ["updated_at", 2016-08-19 02:57:16 UTC]]  (122.9ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a sentença do anjo da morte que iria passar sobre o Egito?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a sentença do anjo da morte que iria passar sobre o Egito?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a sentença do anjo da morte que iria passar sobre o Egito?"], ["created_at", 2016-08-19 02:57:17 UTC], ["updated_at", 2016-08-19 02:57:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Morreria O Filho Primogênito de Cada Lar"], ["question_id", 2503], ["correct", true], ["created_at", 2016-08-19 02:57:17 UTC], ["updated_at", 2016-08-19 02:57:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Morreria Toda A Criação Doméstica dos Egípcios"], ["question_id", 2503], ["correct", false], ["created_at", 2016-08-19 02:57:17 UTC], ["updated_at", 2016-08-19 02:57:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Morreria Toda A Família Real do Faraó, Exceto Ele"], ["question_id", 2503], ["correct", false], ["created_at", 2016-08-19 02:57:17 UTC], ["updated_at", 2016-08-19 02:57:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Morreriam As Pessoas Que Estivessem Fora de Casa"], ["question_id", 2503], ["correct", false], ["created_at", 2016-08-19 02:57:17 UTC], ["updated_at", 2016-08-19 02:57:17 UTC]]  (165.5ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a tarefa principal de João Batista?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era a tarefa principal de João Batista?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era a tarefa principal de João Batista?"], ["created_at", 2016-08-19 02:57:17 UTC], ["updated_at", 2016-08-19 02:57:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anunciar A Vinda do Messias"], ["question_id", 2504], ["correct", true], ["created_at", 2016-08-19 02:57:17 UTC], ["updated_at", 2016-08-19 02:57:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anunciar O Fim dos Tempos"], ["question_id", 2504], ["correct", false], ["created_at", 2016-08-19 02:57:17 UTC], ["updated_at", 2016-08-19 02:57:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anunciar A Vinda dos Cavaleiros do Apocalipse"], ["question_id", 2504], ["correct", false], ["created_at", 2016-08-19 02:57:17 UTC], ["updated_at", 2016-08-19 02:57:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anunciar A Proximidade de Calamidades"], ["question_id", 2504], ["correct", false], ["created_at", 2016-08-19 02:57:17 UTC], ["updated_at", 2016-08-19 02:57:17 UTC]]  (155.7ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o antigo nome de Abraão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o antigo nome de Abraão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o antigo nome de Abraão?"], ["created_at", 2016-08-19 02:57:17 UTC], ["updated_at", 2016-08-19 02:57:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abrão"], ["question_id", 2505], ["correct", true], ["created_at", 2016-08-19 02:57:17 UTC], ["updated_at", 2016-08-19 02:57:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 2505], ["correct", false], ["created_at", 2016-08-19 02:57:17 UTC], ["updated_at", 2016-08-19 02:57:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 2505], ["correct", false], ["created_at", 2016-08-19 02:57:17 UTC], ["updated_at", 2016-08-19 02:57:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cão"], ["question_id", 2505], ["correct", false], ["created_at", 2016-08-19 02:57:17 UTC], ["updated_at", 2016-08-19 02:57:17 UTC]]  (188.7ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o antigo nome de Israel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o antigo nome de Israel?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o antigo nome de Israel?"], ["created_at", 2016-08-19 02:57:17 UTC], ["updated_at", 2016-08-19 02:57:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 2506], ["correct", true], ["created_at", 2016-08-19 02:57:17 UTC], ["updated_at", 2016-08-19 02:57:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 2506], ["correct", false], ["created_at", 2016-08-19 02:57:17 UTC], ["updated_at", 2016-08-19 02:57:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel"], ["question_id", 2506], ["correct", false], ["created_at", 2016-08-19 02:57:17 UTC], ["updated_at", 2016-08-19 02:57:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 2506], ["correct", false], ["created_at", 2016-08-19 02:57:17 UTC], ["updated_at", 2016-08-19 02:57:17 UTC]]  (177.1ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o antigo nome de Paulo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o antigo nome de Paulo?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o antigo nome de Paulo?"], ["created_at", 2016-08-19 02:57:17 UTC], ["updated_at", 2016-08-19 02:57:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saulo"], ["question_id", 2507], ["correct", true], ["created_at", 2016-08-19 02:57:17 UTC], ["updated_at", 2016-08-19 02:57:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ananias"], ["question_id", 2507], ["correct", false], ["created_at", 2016-08-19 02:57:17 UTC], ["updated_at", 2016-08-19 02:57:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sebastião"], ["question_id", 2507], ["correct", false], ["created_at", 2016-08-19 02:57:17 UTC], ["updated_at", 2016-08-19 02:57:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sofonias"], ["question_id", 2507], ["correct", false], ["created_at", 2016-08-19 02:57:17 UTC], ["updated_at", 2016-08-19 02:57:17 UTC]]  (485.1ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o apóstolo de Jesus responsável pelas finanças?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o apóstolo de Jesus responsável pelas finanças?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o apóstolo de Jesus responsável pelas finanças?"], ["created_at", 2016-08-19 02:57:18 UTC], ["updated_at", 2016-08-19 02:57:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas"], ["question_id", 2508], ["correct", true], ["created_at", 2016-08-19 02:57:18 UTC], ["updated_at", 2016-08-19 02:57:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tomé"], ["question_id", 2508], ["correct", false], ["created_at", 2016-08-19 02:57:18 UTC], ["updated_at", 2016-08-19 02:57:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 2508], ["correct", false], ["created_at", 2016-08-19 02:57:18 UTC], ["updated_at", 2016-08-19 02:57:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 2508], ["correct", false], ["created_at", 2016-08-19 02:57:18 UTC], ["updated_at", 2016-08-19 02:57:18 UTC]]  (138.7ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o comprimento da arca de Noé?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o comprimento da arca de Noé?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o comprimento da arca de Noé?"], ["created_at", 2016-08-19 02:57:18 UTC], ["updated_at", 2016-08-19 02:57:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "135 Mts"], ["question_id", 2509], ["correct", true], ["created_at", 2016-08-19 02:57:18 UTC], ["updated_at", 2016-08-19 02:57:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "115 Mts"], ["question_id", 2509], ["correct", false], ["created_at", 2016-08-19 02:57:18 UTC], ["updated_at", 2016-08-19 02:57:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "95 Mts"], ["question_id", 2509], ["correct", false], ["created_at", 2016-08-19 02:57:18 UTC], ["updated_at", 2016-08-19 02:57:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "195 Mts"], ["question_id", 2509], ["correct", false], ["created_at", 2016-08-19 02:57:18 UTC], ["updated_at", 2016-08-19 02:57:18 UTC]]  (122.4ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o discípulo mais jovem de Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o discípulo mais jovem de Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o discípulo mais jovem de Jesus?"], ["created_at", 2016-08-19 02:57:18 UTC], ["updated_at", 2016-08-19 02:57:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 2510], ["correct", true], ["created_at", 2016-08-19 02:57:18 UTC], ["updated_at", 2016-08-19 02:57:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mateus"], ["question_id", 2510], ["correct", false], ["created_at", 2016-08-19 02:57:18 UTC], ["updated_at", 2016-08-19 02:57:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 2510], ["correct", false], ["created_at", 2016-08-19 02:57:18 UTC], ["updated_at", 2016-08-19 02:57:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 2510], ["correct", false], ["created_at", 2016-08-19 02:57:18 UTC], ["updated_at", 2016-08-19 02:57:18 UTC]]  (123.1ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o filho de Salomão que cultuava ídolos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o filho de Salomão que cultuava ídolos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o filho de Salomão que cultuava ídolos?"], ["created_at", 2016-08-19 02:57:18 UTC], ["updated_at", 2016-08-19 02:57:18 UTC]] SQL (0.4ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Roboão"], ["question_id", 2511], ["correct", true], ["created_at", 2016-08-19 02:57:18 UTC], ["updated_at", 2016-08-19 02:57:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Félix"], ["question_id", 2511], ["correct", false], ["created_at", 2016-08-19 02:57:18 UTC], ["updated_at", 2016-08-19 02:57:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maacá"], ["question_id", 2511], ["correct", false], ["created_at", 2016-08-19 02:57:18 UTC], ["updated_at", 2016-08-19 02:57:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeroboão"], ["question_id", 2511], ["correct", false], ["created_at", 2016-08-19 02:57:18 UTC], ["updated_at", 2016-08-19 02:57:18 UTC]]  (138.3ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco de Jetro para com Moisés?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco de Jetro para com Moisés?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco de Jetro para com Moisés?"], ["created_at", 2016-08-19 02:57:18 UTC], ["updated_at", 2016-08-19 02:57:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sogro"], ["question_id", 2512], ["correct", true], ["created_at", 2016-08-19 02:57:18 UTC], ["updated_at", 2016-08-19 02:57:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Avô"], ["question_id", 2512], ["correct", false], ["created_at", 2016-08-19 02:57:18 UTC], ["updated_at", 2016-08-19 02:57:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pai"], ["question_id", 2512], ["correct", false], ["created_at", 2016-08-19 02:57:18 UTC], ["updated_at", 2016-08-19 02:57:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cunhado"], ["question_id", 2512], ["correct", false], ["created_at", 2016-08-19 02:57:18 UTC], ["updated_at", 2016-08-19 02:57:18 UTC]]  (147.9ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco de Zípora para com Moisés?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco de Zípora para com Moisés?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco de Zípora para com Moisés?"], ["created_at", 2016-08-19 02:57:19 UTC], ["updated_at", 2016-08-19 02:57:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esposa"], ["question_id", 2513], ["correct", true], ["created_at", 2016-08-19 02:57:19 UTC], ["updated_at", 2016-08-19 02:57:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mãe"], ["question_id", 2513], ["correct", false], ["created_at", 2016-08-19 02:57:19 UTC], ["updated_at", 2016-08-19 02:57:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tia"], ["question_id", 2513], ["correct", false], ["created_at", 2016-08-19 02:57:19 UTC], ["updated_at", 2016-08-19 02:57:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmã"], ["question_id", 2513], ["correct", false], ["created_at", 2016-08-19 02:57:19 UTC], ["updated_at", 2016-08-19 02:57:19 UTC]]  (139.9ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Abraão e Harã?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Abraão e Harã?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco entre Abraão e Harã?"], ["created_at", 2016-08-19 02:57:19 UTC], ["updated_at", 2016-08-19 02:57:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmãos"], ["question_id", 2514], ["correct", true], ["created_at", 2016-08-19 02:57:19 UTC], ["updated_at", 2016-08-19 02:57:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tio e Sobrinho"], ["question_id", 2514], ["correct", false], ["created_at", 2016-08-19 02:57:19 UTC], ["updated_at", 2016-08-19 02:57:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Primos"], ["question_id", 2514], ["correct", false], ["created_at", 2016-08-19 02:57:19 UTC], ["updated_at", 2016-08-19 02:57:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sogro e Genro"], ["question_id", 2514], ["correct", false], ["created_at", 2016-08-19 02:57:19 UTC], ["updated_at", 2016-08-19 02:57:19 UTC]]  (140.3ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Absalão e Amnon?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Absalão e Amnon?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco entre Absalão e Amnon?"], ["created_at", 2016-08-19 02:57:19 UTC], ["updated_at", 2016-08-19 02:57:19 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmãos"], ["question_id", 2515], ["correct", true], ["created_at", 2016-08-19 02:57:19 UTC], ["updated_at", 2016-08-19 02:57:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tio e Sobrinho"], ["question_id", 2515], ["correct", false], ["created_at", 2016-08-19 02:57:19 UTC], ["updated_at", 2016-08-19 02:57:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pai e Filho"], ["question_id", 2515], ["correct", false], ["created_at", 2016-08-19 02:57:19 UTC], ["updated_at", 2016-08-19 02:57:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Avô e Neto"], ["question_id", 2515], ["correct", false], ["created_at", 2016-08-19 02:57:19 UTC], ["updated_at", 2016-08-19 02:57:19 UTC]]  (130.4ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Arão e Anrão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Arão e Anrão?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco entre Arão e Anrão?"], ["created_at", 2016-08-19 02:57:19 UTC], ["updated_at", 2016-08-19 02:57:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filho e Pai"], ["question_id", 2516], ["correct", true], ["created_at", 2016-08-19 02:57:19 UTC], ["updated_at", 2016-08-19 02:57:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pai e Filho"], ["question_id", 2516], ["correct", false], ["created_at", 2016-08-19 02:57:19 UTC], ["updated_at", 2016-08-19 02:57:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Neto e Avô"], ["question_id", 2516], ["correct", false], ["created_at", 2016-08-19 02:57:19 UTC], ["updated_at", 2016-08-19 02:57:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bisavô e Bisneto"], ["question_id", 2516], ["correct", false], ["created_at", 2016-08-19 02:57:19 UTC], ["updated_at", 2016-08-19 02:57:19 UTC]]  (140.2ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Elcana e Jeroão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Elcana e Jeroão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco entre Elcana e Jeroão?"], ["created_at", 2016-08-19 02:57:19 UTC], ["updated_at", 2016-08-19 02:57:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filho e Pai"], ["question_id", 2517], ["correct", true], ["created_at", 2016-08-19 02:57:19 UTC], ["updated_at", 2016-08-19 02:57:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Avô e Neto"], ["question_id", 2517], ["correct", false], ["created_at", 2016-08-19 02:57:19 UTC], ["updated_at", 2016-08-19 02:57:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmãos"], ["question_id", 2517], ["correct", false], ["created_at", 2016-08-19 02:57:19 UTC], ["updated_at", 2016-08-19 02:57:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sobrinho e Tio"], ["question_id", 2517], ["correct", false], ["created_at", 2016-08-19 02:57:19 UTC], ["updated_at", 2016-08-19 02:57:19 UTC]]  (230.2ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Herodes, o Grande, e Herodes Agripa?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Herodes, o Grande, e Herodes Agripa?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco entre Herodes, o Grande, e Herodes Agripa?"], ["created_at", 2016-08-19 02:57:19 UTC], ["updated_at", 2016-08-19 02:57:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Avô e Neto"], ["question_id", 2518], ["correct", true], ["created_at", 2016-08-19 02:57:19 UTC], ["updated_at", 2016-08-19 02:57:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tio e Sobrinho"], ["question_id", 2518], ["correct", false], ["created_at", 2016-08-19 02:57:19 UTC], ["updated_at", 2016-08-19 02:57:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pai e Filho"], ["question_id", 2518], ["correct", false], ["created_at", 2016-08-19 02:57:19 UTC], ["updated_at", 2016-08-19 02:57:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Padrasto e Enteado"], ["question_id", 2518], ["correct", false], ["created_at", 2016-08-19 02:57:19 UTC], ["updated_at", 2016-08-19 02:57:19 UTC]]  (139.4ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Jacó e Maria, mãe de Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Jacó e Maria, mãe de Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco entre Jacó e Maria, mãe de Jesus?"], ["created_at", 2016-08-19 02:57:20 UTC], ["updated_at", 2016-08-19 02:57:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sogro e Nora"], ["question_id", 2519], ["correct", true], ["created_at", 2016-08-19 02:57:20 UTC], ["updated_at", 2016-08-19 02:57:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tio e Sobrinha"], ["question_id", 2519], ["correct", false], ["created_at", 2016-08-19 02:57:20 UTC], ["updated_at", 2016-08-19 02:57:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pai e Filha"], ["question_id", 2519], ["correct", false], ["created_at", 2016-08-19 02:57:20 UTC], ["updated_at", 2016-08-19 02:57:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmãos"], ["question_id", 2519], ["correct", false], ["created_at", 2016-08-19 02:57:20 UTC], ["updated_at", 2016-08-19 02:57:20 UTC]]  (247.0ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Jesus e Jacó?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Jesus e Jacó?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco entre Jesus e Jacó?"], ["created_at", 2016-08-19 02:57:20 UTC], ["updated_at", 2016-08-19 02:57:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Neto e Avô"], ["question_id", 2520], ["correct", true], ["created_at", 2016-08-19 02:57:20 UTC], ["updated_at", 2016-08-19 02:57:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmãos"], ["question_id", 2520], ["correct", false], ["created_at", 2016-08-19 02:57:20 UTC], ["updated_at", 2016-08-19 02:57:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tio e Sobrinho"], ["question_id", 2520], ["correct", false], ["created_at", 2016-08-19 02:57:20 UTC], ["updated_at", 2016-08-19 02:57:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Eram Parentes"], ["question_id", 2520], ["correct", false], ["created_at", 2016-08-19 02:57:20 UTC], ["updated_at", 2016-08-19 02:57:20 UTC]]  (147.2ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Joás e Gideão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Joás e Gideão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco entre Joás e Gideão?"], ["created_at", 2016-08-19 02:57:20 UTC], ["updated_at", 2016-08-19 02:57:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pai e Filho"], ["question_id", 2521], ["correct", true], ["created_at", 2016-08-19 02:57:20 UTC], ["updated_at", 2016-08-19 02:57:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tio e Sobrinho"], ["question_id", 2521], ["correct", false], ["created_at", 2016-08-19 02:57:20 UTC], ["updated_at", 2016-08-19 02:57:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmãos"], ["question_id", 2521], ["correct", false], ["created_at", 2016-08-19 02:57:20 UTC], ["updated_at", 2016-08-19 02:57:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cunhados"], ["question_id", 2521], ["correct", false], ["created_at", 2016-08-19 02:57:20 UTC], ["updated_at", 2016-08-19 02:57:20 UTC]]  (138.7ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Jônatas e Saul?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Jônatas e Saul?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco entre Jônatas e Saul?"], ["created_at", 2016-08-19 02:57:20 UTC], ["updated_at", 2016-08-19 02:57:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filho e Pai"], ["question_id", 2522], ["correct", true], ["created_at", 2016-08-19 02:57:20 UTC], ["updated_at", 2016-08-19 02:57:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pai e Filho"], ["question_id", 2522], ["correct", false], ["created_at", 2016-08-19 02:57:20 UTC], ["updated_at", 2016-08-19 02:57:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Genro e Sogro"], ["question_id", 2522], ["correct", false], ["created_at", 2016-08-19 02:57:20 UTC], ["updated_at", 2016-08-19 02:57:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sogro e Genro"], ["question_id", 2522], ["correct", false], ["created_at", 2016-08-19 02:57:20 UTC], ["updated_at", 2016-08-19 02:57:20 UTC]]  (121.8ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Labão e Jacó?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Labão e Jacó?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco entre Labão e Jacó?"], ["created_at", 2016-08-19 02:57:20 UTC], ["updated_at", 2016-08-19 02:57:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sogro e Genro"], ["question_id", 2523], ["correct", true], ["created_at", 2016-08-19 02:57:20 UTC], ["updated_at", 2016-08-19 02:57:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pai e Filho"], ["question_id", 2523], ["correct", false], ["created_at", 2016-08-19 02:57:20 UTC], ["updated_at", 2016-08-19 02:57:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Avô e Neto"], ["question_id", 2523], ["correct", false], ["created_at", 2016-08-19 02:57:20 UTC], ["updated_at", 2016-08-19 02:57:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cunhados"], ["question_id", 2523], ["correct", false], ["created_at", 2016-08-19 02:57:20 UTC], ["updated_at", 2016-08-19 02:57:20 UTC]]  (140.4ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Lázaro e Marta?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Lázaro e Marta?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco entre Lázaro e Marta?"], ["created_at", 2016-08-19 02:57:20 UTC], ["updated_at", 2016-08-19 02:57:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmãos"], ["question_id", 2524], ["correct", true], ["created_at", 2016-08-19 02:57:20 UTC], ["updated_at", 2016-08-19 02:57:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pai e Filha"], ["question_id", 2524], ["correct", false], ["created_at", 2016-08-19 02:57:20 UTC], ["updated_at", 2016-08-19 02:57:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cunhados"], ["question_id", 2524], ["correct", false], ["created_at", 2016-08-19 02:57:20 UTC], ["updated_at", 2016-08-19 02:57:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filho e Mãe"], ["question_id", 2524], ["correct", false], ["created_at", 2016-08-19 02:57:20 UTC], ["updated_at", 2016-08-19 02:57:20 UTC]]  (155.4ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Mardoqueu e Ester, a esposa do rei Assuero?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Mardoqueu e Ester, a esposa do rei Assuero?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco entre Mardoqueu e Ester, a esposa do rei Assuero?"], ["created_at", 2016-08-19 02:57:21 UTC], ["updated_at", 2016-08-19 02:57:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Primo"], ["question_id", 2525], ["correct", true], ["created_at", 2016-08-19 02:57:21 UTC], ["updated_at", 2016-08-19 02:57:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tio"], ["question_id", 2525], ["correct", false], ["created_at", 2016-08-19 02:57:21 UTC], ["updated_at", 2016-08-19 02:57:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmão"], ["question_id", 2525], ["correct", false], ["created_at", 2016-08-19 02:57:21 UTC], ["updated_at", 2016-08-19 02:57:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pai"], ["question_id", 2525], ["correct", false], ["created_at", 2016-08-19 02:57:21 UTC], ["updated_at", 2016-08-19 02:57:21 UTC]]  (130.1ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Orfa e Ester?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Orfa e Ester?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco entre Orfa e Ester?"], ["created_at", 2016-08-19 02:57:21 UTC], ["updated_at", 2016-08-19 02:57:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhum"], ["question_id", 2526], ["correct", true], ["created_at", 2016-08-19 02:57:21 UTC], ["updated_at", 2016-08-19 02:57:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sogra e Nora"], ["question_id", 2526], ["correct", false], ["created_at", 2016-08-19 02:57:21 UTC], ["updated_at", 2016-08-19 02:57:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cunhadas"], ["question_id", 2526], ["correct", false], ["created_at", 2016-08-19 02:57:21 UTC], ["updated_at", 2016-08-19 02:57:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nora e Sogra"], ["question_id", 2526], ["correct", false], ["created_at", 2016-08-19 02:57:21 UTC], ["updated_at", 2016-08-19 02:57:21 UTC]]  (189.2ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Orfa e Noemi?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Orfa e Noemi?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco entre Orfa e Noemi?"], ["created_at", 2016-08-19 02:57:21 UTC], ["updated_at", 2016-08-19 02:57:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nora e Sogra"], ["question_id", 2527], ["correct", true], ["created_at", 2016-08-19 02:57:21 UTC], ["updated_at", 2016-08-19 02:57:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filha e Mãe"], ["question_id", 2527], ["correct", false], ["created_at", 2016-08-19 02:57:21 UTC], ["updated_at", 2016-08-19 02:57:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Neta e Avó"], ["question_id", 2527], ["correct", false], ["created_at", 2016-08-19 02:57:21 UTC], ["updated_at", 2016-08-19 02:57:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tia e Sobrinha"], ["question_id", 2527], ["correct", false], ["created_at", 2016-08-19 02:57:21 UTC], ["updated_at", 2016-08-19 02:57:21 UTC]]  (155.7ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Orfa e Rute?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Orfa e Rute?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco entre Orfa e Rute?"], ["created_at", 2016-08-19 02:57:21 UTC], ["updated_at", 2016-08-19 02:57:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sogra e Nora"], ["question_id", 2528], ["correct", true], ["created_at", 2016-08-19 02:57:21 UTC], ["updated_at", 2016-08-19 02:57:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mãe e Filha"], ["question_id", 2528], ["correct", false], ["created_at", 2016-08-19 02:57:21 UTC], ["updated_at", 2016-08-19 02:57:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmãs"], ["question_id", 2528], ["correct", false], ["created_at", 2016-08-19 02:57:21 UTC], ["updated_at", 2016-08-19 02:57:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cunhadas"], ["question_id", 2528], ["correct", false], ["created_at", 2016-08-19 02:57:21 UTC], ["updated_at", 2016-08-19 02:57:21 UTC]]  (133.3ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Rute e Noemi?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Rute e Noemi?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco entre Rute e Noemi?"], ["created_at", 2016-08-19 02:57:21 UTC], ["updated_at", 2016-08-19 02:57:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nora e Sogra"], ["question_id", 2529], ["correct", true], ["created_at", 2016-08-19 02:57:21 UTC], ["updated_at", 2016-08-19 02:57:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sogra e Nora"], ["question_id", 2529], ["correct", false], ["created_at", 2016-08-19 02:57:21 UTC], ["updated_at", 2016-08-19 02:57:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mãe e Filha"], ["question_id", 2529], ["correct", false], ["created_at", 2016-08-19 02:57:21 UTC], ["updated_at", 2016-08-19 02:57:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filha e Madrasta"], ["question_id", 2529], ["correct", false], ["created_at", 2016-08-19 02:57:21 UTC], ["updated_at", 2016-08-19 02:57:21 UTC]]  (172.2ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Rute e Orfa?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o grau de parentesco entre Rute e Orfa?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o grau de parentesco entre Rute e Orfa?"], ["created_at", 2016-08-19 02:57:21 UTC], ["updated_at", 2016-08-19 02:57:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cunhadas"], ["question_id", 2530], ["correct", true], ["created_at", 2016-08-19 02:57:21 UTC], ["updated_at", 2016-08-19 02:57:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Primas"], ["question_id", 2530], ["correct", false], ["created_at", 2016-08-19 02:57:21 UTC], ["updated_at", 2016-08-19 02:57:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmãs"], ["question_id", 2530], ["correct", false], ["created_at", 2016-08-19 02:57:21 UTC], ["updated_at", 2016-08-19 02:57:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas Vizinhas"], ["question_id", 2530], ["correct", false], ["created_at", 2016-08-19 02:57:21 UTC], ["updated_at", 2016-08-19 02:57:21 UTC]]  (147.3ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o irmão de Maria e Marta que Jesus ressuscitou?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o irmão de Maria e Marta que Jesus ressuscitou?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o irmão de Maria e Marta que Jesus ressuscitou?"], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lázaro"], ["question_id", 2531], ["correct", true], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Leonel"], ["question_id", 2531], ["correct", false], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Leocádio"], ["question_id", 2531], ["correct", false], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filemon"], ["question_id", 2531], ["correct", false], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]]  (122.5ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome babilônico de Azarias, amigo de Daniel?"], ["LIMIT", 1]]  (0.2ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome babilônico de Azarias, amigo de Daniel?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome babilônico de Azarias, amigo de Daniel?"], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abede-nego"], ["question_id", 2532], ["correct", true], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mesaque"], ["question_id", 2532], ["correct", false], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sadraque"], ["question_id", 2532], ["correct", false], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josias"], ["question_id", 2532], ["correct", false], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]]  (122.0ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome babilônico de Daniel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome babilônico de Daniel?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome babilônico de Daniel?"], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Beltessazar"], ["question_id", 2533], ["correct", true], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Misael"], ["question_id", 2533], ["correct", false], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Israel"], ["question_id", 2533], ["correct", false], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 2533], ["correct", false], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]]  (123.4ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome babilônico de Hananias, amigo de Daniel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome babilônico de Hananias, amigo de Daniel?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome babilônico de Hananias, amigo de Daniel?"], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sadraque"], ["question_id", 2534], ["correct", true], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mesaque"], ["question_id", 2534], ["correct", false], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abede-nego"], ["question_id", 2534], ["correct", false], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 2534], ["correct", false], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]]  (130.3ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome babilônico de Misael, amigo de Daniel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome babilônico de Misael, amigo de Daniel?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome babilônico de Misael, amigo de Daniel?"], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mesaque"], ["question_id", 2535], ["correct", true], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sadraque"], ["question_id", 2535], ["correct", false], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abede-nego"], ["question_id", 2535], ["correct", false], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 2535], ["correct", false], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]]  (121.8ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da cidade do rei Ogue que era cheia de gigantes?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da cidade do rei Ogue que era cheia de gigantes?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome da cidade do rei Ogue que era cheia de gigantes?"], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Astarote"], ["question_id", 2536], ["correct", true], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hazor"], ["question_id", 2536], ["correct", false], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gebal"], ["question_id", 2536], ["correct", false], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quefrém"], ["question_id", 2536], ["correct", false], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]]  (148.2ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da esposa de Abraão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da esposa de Abraão?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome da esposa de Abraão?"], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sara"], ["question_id", 2537], ["correct", true], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Agar"], ["question_id", 2537], ["correct", false], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Asenate"], ["question_id", 2537], ["correct", false], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 2537], ["correct", false], ["created_at", 2016-08-19 02:57:22 UTC], ["updated_at", 2016-08-19 02:57:22 UTC]]  (132.0ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da esposa de Herodes Antipas?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da esposa de Herodes Antipas?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome da esposa de Herodes Antipas?"], ["created_at", 2016-08-19 02:57:23 UTC], ["updated_at", 2016-08-19 02:57:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodias"], ["question_id", 2538], ["correct", true], ["created_at", 2016-08-19 02:57:23 UTC], ["updated_at", 2016-08-19 02:57:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Minéias"], ["question_id", 2538], ["correct", false], ["created_at", 2016-08-19 02:57:23 UTC], ["updated_at", 2016-08-19 02:57:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lia"], ["question_id", 2538], ["correct", false], ["created_at", 2016-08-19 02:57:23 UTC], ["updated_at", 2016-08-19 02:57:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Priscila"], ["question_id", 2538], ["correct", false], ["created_at", 2016-08-19 02:57:23 UTC], ["updated_at", 2016-08-19 02:57:23 UTC]]  (156.9ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da esposa de Jó?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da esposa de Jó?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome da esposa de Jó?"], ["created_at", 2016-08-19 02:57:23 UTC], ["updated_at", 2016-08-19 02:57:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jemima"], ["question_id", 2539], ["correct", true], ["created_at", 2016-08-19 02:57:23 UTC], ["updated_at", 2016-08-19 02:57:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Raabe"], ["question_id", 2539], ["correct", false], ["created_at", 2016-08-19 02:57:23 UTC], ["updated_at", 2016-08-19 02:57:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lia"], ["question_id", 2539], ["correct", false], ["created_at", 2016-08-19 02:57:23 UTC], ["updated_at", 2016-08-19 02:57:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elisis"], ["question_id", 2539], ["correct", false], ["created_at", 2016-08-19 02:57:23 UTC], ["updated_at", 2016-08-19 02:57:23 UTC]]  (148.2ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da esposa de Moisés?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da esposa de Moisés?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome da esposa de Moisés?"], ["created_at", 2016-08-19 02:57:23 UTC], ["updated_at", 2016-08-19 02:57:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zípora"], ["question_id", 2540], ["correct", true], ["created_at", 2016-08-19 02:57:23 UTC], ["updated_at", 2016-08-19 02:57:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Diana"], ["question_id", 2540], ["correct", false], ["created_at", 2016-08-19 02:57:23 UTC], ["updated_at", 2016-08-19 02:57:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Léia"], ["question_id", 2540], ["correct", false], ["created_at", 2016-08-19 02:57:23 UTC], ["updated_at", 2016-08-19 02:57:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sara"], ["question_id", 2540], ["correct", false], ["created_at", 2016-08-19 02:57:23 UTC], ["updated_at", 2016-08-19 02:57:23 UTC]]  (130.3ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da esposa de Salomão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da esposa de Salomão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome da esposa de Salomão?"], ["created_at", 2016-08-19 02:57:23 UTC], ["updated_at", 2016-08-19 02:57:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maacá"], ["question_id", 2541], ["correct", true], ["created_at", 2016-08-19 02:57:23 UTC], ["updated_at", 2016-08-19 02:57:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Minéias"], ["question_id", 2541], ["correct", false], ["created_at", 2016-08-19 02:57:23 UTC], ["updated_at", 2016-08-19 02:57:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomé"], ["question_id", 2541], ["correct", false], ["created_at", 2016-08-19 02:57:23 UTC], ["updated_at", 2016-08-19 02:57:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Drusila"], ["question_id", 2541], ["correct", false], ["created_at", 2016-08-19 02:57:23 UTC], ["updated_at", 2016-08-19 02:57:23 UTC]]  (130.6ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da irmã de Raquel, esposa de Jacó?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome da irmã de Raquel, esposa de Jacó?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome da irmã de Raquel, esposa de Jacó?"], ["created_at", 2016-08-19 02:57:23 UTC], ["updated_at", 2016-08-19 02:57:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Léia"], ["question_id", 2542], ["correct", true], ["created_at", 2016-08-19 02:57:23 UTC], ["updated_at", 2016-08-19 02:57:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lécia"], ["question_id", 2542], ["correct", false], ["created_at", 2016-08-19 02:57:23 UTC], ["updated_at", 2016-08-19 02:57:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Odisséia"], ["question_id", 2542], ["correct", false], ["created_at", 2016-08-19 02:57:23 UTC], ["updated_at", 2016-08-19 02:57:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Débora"], ["question_id", 2542], ["correct", false], ["created_at", 2016-08-19 02:57:23 UTC], ["updated_at", 2016-08-19 02:57:23 UTC]]  (222.7ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do apóstolo que estava pregando a mensagem quando Êutico caiu da janela pois estava dormindo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do apóstolo que estava pregando a mensagem quando Êutico caiu da janela pois estava dormindo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome do apóstolo que estava pregando a mensagem quando Êutico caiu da janela pois estava dormindo?"], ["created_at", 2016-08-19 02:57:23 UTC], ["updated_at", 2016-08-19 02:57:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 2543], ["correct", true], ["created_at", 2016-08-19 02:57:23 UTC], ["updated_at", 2016-08-19 02:57:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 2543], ["correct", false], ["created_at", 2016-08-19 02:57:23 UTC], ["updated_at", 2016-08-19 02:57:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 2543], ["correct", false], ["created_at", 2016-08-19 02:57:23 UTC], ["updated_at", 2016-08-19 02:57:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Timóteo"], ["question_id", 2543], ["correct", false], ["created_at", 2016-08-19 02:57:23 UTC], ["updated_at", 2016-08-19 02:57:23 UTC]]  (147.4ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do filho de Rute e Boaz?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do filho de Rute e Boaz?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome do filho de Rute e Boaz?"], ["created_at", 2016-08-19 02:57:24 UTC], ["updated_at", 2016-08-19 02:57:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obede"], ["question_id", 2544], ["correct", true], ["created_at", 2016-08-19 02:57:24 UTC], ["updated_at", 2016-08-19 02:57:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Onon"], ["question_id", 2544], ["correct", false], ["created_at", 2016-08-19 02:57:24 UTC], ["updated_at", 2016-08-19 02:57:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Inri"], ["question_id", 2544], ["correct", false], ["created_at", 2016-08-19 02:57:24 UTC], ["updated_at", 2016-08-19 02:57:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joquebede"], ["question_id", 2544], ["correct", false], ["created_at", 2016-08-19 02:57:24 UTC], ["updated_at", 2016-08-19 02:57:24 UTC]]  (250.1ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do marido de Isabel, mãe de João Batista?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do marido de Isabel, mãe de João Batista?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome do marido de Isabel, mãe de João Batista?"], ["created_at", 2016-08-19 02:57:24 UTC], ["updated_at", 2016-08-19 02:57:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias"], ["question_id", 2545], ["correct", true], ["created_at", 2016-08-19 02:57:24 UTC], ["updated_at", 2016-08-19 02:57:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zaqueu"], ["question_id", 2545], ["correct", false], ["created_at", 2016-08-19 02:57:24 UTC], ["updated_at", 2016-08-19 02:57:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Urias"], ["question_id", 2545], ["correct", false], ["created_at", 2016-08-19 02:57:24 UTC], ["updated_at", 2016-08-19 02:57:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matias"], ["question_id", 2545], ["correct", false], ["created_at", 2016-08-19 02:57:24 UTC], ["updated_at", 2016-08-19 02:57:24 UTC]]  (140.3ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do marido de Maacá?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do marido de Maacá?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome do marido de Maacá?"], ["created_at", 2016-08-19 02:57:24 UTC], ["updated_at", 2016-08-19 02:57:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2546], ["correct", true], ["created_at", 2016-08-19 02:57:24 UTC], ["updated_at", 2016-08-19 02:57:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zebedeu"], ["question_id", 2546], ["correct", false], ["created_at", 2016-08-19 02:57:24 UTC], ["updated_at", 2016-08-19 02:57:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 2546], ["correct", false], ["created_at", 2016-08-19 02:57:24 UTC], ["updated_at", 2016-08-19 02:57:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeroboão"], ["question_id", 2546], ["correct", false], ["created_at", 2016-08-19 02:57:24 UTC], ["updated_at", 2016-08-19 02:57:24 UTC]]  (140.4ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do pai de Abraão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do pai de Abraão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome do pai de Abraão?"], ["created_at", 2016-08-19 02:57:24 UTC], ["updated_at", 2016-08-19 02:57:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Terá"], ["question_id", 2547], ["correct", true], ["created_at", 2016-08-19 02:57:24 UTC], ["updated_at", 2016-08-19 02:57:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ló"], ["question_id", 2547], ["correct", false], ["created_at", 2016-08-19 02:57:24 UTC], ["updated_at", 2016-08-19 02:57:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anrão"], ["question_id", 2547], ["correct", false], ["created_at", 2016-08-19 02:57:24 UTC], ["updated_at", 2016-08-19 02:57:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeroão"], ["question_id", 2547], ["correct", false], ["created_at", 2016-08-19 02:57:24 UTC], ["updated_at", 2016-08-19 02:57:24 UTC]]  (130.3ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do pai de Moisés e de Arão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do pai de Moisés e de Arão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome do pai de Moisés e de Arão?"], ["created_at", 2016-08-19 02:57:24 UTC], ["updated_at", 2016-08-19 02:57:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anrão"], ["question_id", 2548], ["correct", true], ["created_at", 2016-08-19 02:57:24 UTC], ["updated_at", 2016-08-19 02:57:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salmom"], ["question_id", 2548], ["correct", false], ["created_at", 2016-08-19 02:57:24 UTC], ["updated_at", 2016-08-19 02:57:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeroão"], ["question_id", 2548], ["correct", false], ["created_at", 2016-08-19 02:57:24 UTC], ["updated_at", 2016-08-19 02:57:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeremias"], ["question_id", 2548], ["correct", false], ["created_at", 2016-08-19 02:57:24 UTC], ["updated_at", 2016-08-19 02:57:24 UTC]]  (132.0ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do pai de Moisés?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do pai de Moisés?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome do pai de Moisés?"], ["created_at", 2016-08-19 02:57:24 UTC], ["updated_at", 2016-08-19 02:57:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anrão"], ["question_id", 2549], ["correct", true], ["created_at", 2016-08-19 02:57:24 UTC], ["updated_at", 2016-08-19 02:57:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 2549], ["correct", false], ["created_at", 2016-08-19 02:57:24 UTC], ["updated_at", 2016-08-19 02:57:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maleque"], ["question_id", 2549], ["correct", false], ["created_at", 2016-08-19 02:57:24 UTC], ["updated_at", 2016-08-19 02:57:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amasa"], ["question_id", 2549], ["correct", false], ["created_at", 2016-08-19 02:57:24 UTC], ["updated_at", 2016-08-19 02:57:24 UTC]]  (139.6ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do pai do profeta Zacarias?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do pai do profeta Zacarias?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome do pai do profeta Zacarias?"], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Berequias"], ["question_id", 2550], ["correct", true], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abias"], ["question_id", 2550], ["correct", false], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Asa"], ["question_id", 2550], ["correct", false], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mordecai"], ["question_id", 2550], ["correct", false], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]]  (131.3ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do poço de onde a mulher samaritana com quem Jesus falou estava tirando água?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o nome do poço de onde a mulher samaritana com quem Jesus falou estava tirando água?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o nome do poço de onde a mulher samaritana com quem Jesus falou estava tirando água?"], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Poço de Jacó"], ["question_id", 2551], ["correct", true], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Poço de Abraão"], ["question_id", 2551], ["correct", false], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Poço de Isaque"], ["question_id", 2551], ["correct", false], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Poço de Moisés"], ["question_id", 2551], ["correct", false], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]]  (123.9ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o objetivo da mãe de Moisés ao tê-lo colocado em um cesto e deixado à deriva no rio Nilo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o objetivo da mãe de Moisés ao tê-lo colocado em um cesto e deixado à deriva no rio Nilo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o objetivo da mãe de Moisés ao tê-lo colocado em um cesto e deixado à deriva no rio Nilo?"], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salvar Sua Vida da Sentença do Faraó"], ["question_id", 2552], ["correct", true], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Afogá-lo"], ["question_id", 2552], ["correct", false], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Permitir Que Ele Fosse Sacrificado A Mon-rá"], ["question_id", 2552], ["correct", false], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sumir Com Ele, Pois Era Mãe Solteira"], ["question_id", 2552], ["correct", false], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]]  (146.7ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o objetivo de Saulo quando este ficou cego quando dirigia-se para a cidade de Damasco?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o objetivo de Saulo quando este ficou cego quando dirigia-se para a cidade de Damasco?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o objetivo de Saulo quando este ficou cego quando dirigia-se para a cidade de Damasco?"], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Prender Os Cristãos Que Haviam Fugido de Jerusalém"], ["question_id", 2553], ["correct", true], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Espalhar As Boas Novas"], ["question_id", 2553], ["correct", false], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Confortar As Viúvas Pobres Daquela Cidade"], ["question_id", 2553], ["correct", false], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cobrar Impostos"], ["question_id", 2553], ["correct", false], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]]  (113.9ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o outro nome de Jetro, sogro de Moisés?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o outro nome de Jetro, sogro de Moisés?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o outro nome de Jetro, sogro de Moisés?"], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Reuel"], ["question_id", 2554], ["correct", true], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeter"], ["question_id", 2554], ["correct", false], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jetete"], ["question_id", 2554], ["correct", false], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lebeão"], ["question_id", 2554], ["correct", false], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]]  (114.2ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o outro nome pelo qual o apóstolo Tomé também era conhecido?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o outro nome pelo qual o apóstolo Tomé também era conhecido?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o outro nome pelo qual o apóstolo Tomé também era conhecido?"], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dídimo"], ["question_id", 2555], ["correct", true], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Teófilo"], ["question_id", 2555], ["correct", false], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tadeu"], ["question_id", 2555], ["correct", false], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sebastião"], ["question_id", 2555], ["correct", false], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]]  (156.2ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o reinado ocupado por Salmanezer quando levou cativo o povo de Israel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o reinado ocupado por Salmanezer quando levou cativo o povo de Israel?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o reinado ocupado por Salmanezer quando levou cativo o povo de Israel?"], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assírio"], ["question_id", 2556], ["correct", true], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenício"], ["question_id", 2556], ["correct", false], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônico"], ["question_id", 2556], ["correct", false], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Medo-persa"], ["question_id", 2556], ["correct", false], ["created_at", 2016-08-19 02:57:25 UTC], ["updated_at", 2016-08-19 02:57:25 UTC]]  (139.5ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o significado do nome de Urias, leal oficial do exército de Deus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o significado do nome de Urias, leal oficial do exército de Deus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o significado do nome de Urias, leal oficial do exército de Deus?"], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Chama de Jeová"], ["question_id", 2557], ["correct", true], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Luz da Noite"], ["question_id", 2557], ["correct", false], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Brisa Perfumada"], ["question_id", 2557], ["correct", false], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Espada Ao Alto"], ["question_id", 2557], ["correct", false], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]]  (105.3ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o sobrenome de Herodes?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual era o sobrenome de Herodes?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual era o sobrenome de Herodes?"], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Antipa"], ["question_id", 2558], ["correct", true], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Antílope"], ["question_id", 2558], ["correct", false], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Neleseu"], ["question_id", 2558], ["correct", false], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pilatos"], ["question_id", 2558], ["correct", false], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]]  (123.9ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual festividade celebra o final da vida de escravidão do povo israelita no Egito?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual festividade celebra o final da vida de escravidão do povo israelita no Egito?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual festividade celebra o final da vida de escravidão do povo israelita no Egito?"], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Páscoa dos Judeus"], ["question_id", 2559], ["correct", true], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Festa do Purim"], ["question_id", 2559], ["correct", false], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pentecostes"], ["question_id", 2559], ["correct", false], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Natal"], ["question_id", 2559], ["correct", false], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]]  (164.3ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual filho de Davi o estava perseguindo para matá-lo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual filho de Davi o estava perseguindo para matá-lo?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual filho de Davi o estava perseguindo para matá-lo?"], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 2560], ["correct", true], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Urias"], ["question_id", 2560], ["correct", false], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2560], ["correct", false], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Macabeus"], ["question_id", 2560], ["correct", false], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]]  (123.3ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual filho de Davi refugiou-se na cidade de Gesur após ter matado Amnom?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual filho de Davi refugiou-se na cidade de Gesur após ter matado Amnom?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual filho de Davi refugiou-se na cidade de Gesur após ter matado Amnom?"], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 2561], ["correct", true], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2561], ["correct", false], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quileabe"], ["question_id", 2561], ["correct", false], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sobabe"], ["question_id", 2561], ["correct", false], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]]  (131.2ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual filho de Jacó perdeu a sua primogenitura?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual filho de Jacó perdeu a sua primogenitura?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual filho de Jacó perdeu a sua primogenitura?"], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rúben"], ["question_id", 2562], ["correct", true], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Benjamin"], ["question_id", 2562], ["correct", false], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 2562], ["correct", false], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]] SQL (0.4ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Manassés"], ["question_id", 2562], ["correct", false], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]]  (113.3ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual filho do rei Azarias governou em seu lugar após a sua morte?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual filho do rei Azarias governou em seu lugar após a sua morte?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual filho do rei Azarias governou em seu lugar após a sua morte?"], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jotão"], ["question_id", 2563], ["correct", true], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jonadabe"], ["question_id", 2563], ["correct", false], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joiada"], ["question_id", 2563], ["correct", false], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeú"], ["question_id", 2563], ["correct", false], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]]  (130.5ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 1ª praga que Deus enviou aos egípcios?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 1ª praga que Deus enviou aos egípcios?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a 1ª praga que Deus enviou aos egípcios?"], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Água Virou Sangue"], ["question_id", 2564], ["correct", true], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trevas"], ["question_id", 2564], ["correct", false], ["created_at", 2016-08-19 02:57:26 UTC], ["updated_at", 2016-08-19 02:57:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moscas"], ["question_id", 2564], ["correct", false], ["created_at", 2016-08-19 02:57:27 UTC], ["updated_at", 2016-08-19 02:57:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedras de Fogo"], ["question_id", 2564], ["correct", false], ["created_at", 2016-08-19 02:57:27 UTC], ["updated_at", 2016-08-19 02:57:27 UTC]]  (155.7ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 2ª praga que Deus enviou contra os egípcios?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 2ª praga que Deus enviou contra os egípcios?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a 2ª praga que Deus enviou contra os egípcios?"], ["created_at", 2016-08-19 02:57:27 UTC], ["updated_at", 2016-08-19 02:57:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rãs"], ["question_id", 2565], ["correct", true], ["created_at", 2016-08-19 02:57:27 UTC], ["updated_at", 2016-08-19 02:57:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moscas"], ["question_id", 2565], ["correct", false], ["created_at", 2016-08-19 02:57:27 UTC], ["updated_at", 2016-08-19 02:57:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Piolhos"], ["question_id", 2565], ["correct", false], ["created_at", 2016-08-19 02:57:27 UTC], ["updated_at", 2016-08-19 02:57:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trevas"], ["question_id", 2565], ["correct", false], ["created_at", 2016-08-19 02:57:27 UTC], ["updated_at", 2016-08-19 02:57:27 UTC]]  (163.9ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 3ª praga enviada por Deus ao povo egípcio?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 3ª praga enviada por Deus ao povo egípcio?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a 3ª praga enviada por Deus ao povo egípcio?"], ["created_at", 2016-08-19 02:57:27 UTC], ["updated_at", 2016-08-19 02:57:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Piolhos"], ["question_id", 2566], ["correct", true], ["created_at", 2016-08-19 02:57:27 UTC], ["updated_at", 2016-08-19 02:57:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sapos"], ["question_id", 2566], ["correct", false], ["created_at", 2016-08-19 02:57:27 UTC], ["updated_at", 2016-08-19 02:57:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trevas"], ["question_id", 2566], ["correct", false], ["created_at", 2016-08-19 02:57:27 UTC], ["updated_at", 2016-08-19 02:57:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sangue"], ["question_id", 2566], ["correct", false], ["created_at", 2016-08-19 02:57:27 UTC], ["updated_at", 2016-08-19 02:57:27 UTC]]  (115.1ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 4ª praga que Deus enviou ao Egito?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 4ª praga que Deus enviou ao Egito?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a 4ª praga que Deus enviou ao Egito?"], ["created_at", 2016-08-19 02:57:27 UTC], ["updated_at", 2016-08-19 02:57:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moscas"], ["question_id", 2567], ["correct", true], ["created_at", 2016-08-19 02:57:27 UTC], ["updated_at", 2016-08-19 02:57:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Piolhos"], ["question_id", 2567], ["correct", false], ["created_at", 2016-08-19 02:57:27 UTC], ["updated_at", 2016-08-19 02:57:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gafanhotos"], ["question_id", 2567], ["correct", false], ["created_at", 2016-08-19 02:57:27 UTC], ["updated_at", 2016-08-19 02:57:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sapos"], ["question_id", 2567], ["correct", false], ["created_at", 2016-08-19 02:57:27 UTC], ["updated_at", 2016-08-19 02:57:27 UTC]]  (165.2ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 5ª praga que Deus enviou ao Egito?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 5ª praga que Deus enviou ao Egito?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a 5ª praga que Deus enviou ao Egito?"], ["created_at", 2016-08-19 02:57:27 UTC], ["updated_at", 2016-08-19 02:57:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Pestilência Muito Grave"], ["question_id", 2568], ["correct", true], ["created_at", 2016-08-19 02:57:27 UTC], ["updated_at", 2016-08-19 02:57:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trevas"], ["question_id", 2568], ["correct", false], ["created_at", 2016-08-19 02:57:27 UTC], ["updated_at", 2016-08-19 02:57:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sapos"], ["question_id", 2568], ["correct", false], ["created_at", 2016-08-19 02:57:27 UTC], ["updated_at", 2016-08-19 02:57:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gafanhotos"], ["question_id", 2568], ["correct", false], ["created_at", 2016-08-19 02:57:27 UTC], ["updated_at", 2016-08-19 02:57:27 UTC]]  (391.0ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 6ª praga que Deus enviou contra os egípcios?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 6ª praga que Deus enviou contra os egípcios?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a 6ª praga que Deus enviou contra os egípcios?"], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tumores"], ["question_id", 2569], ["correct", true], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pestilência Muito Grava"], ["question_id", 2569], ["correct", false], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gafanhotos"], ["question_id", 2569], ["correct", false], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moscas"], ["question_id", 2569], ["correct", false], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]]  (123.7ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 7ª praga enviada por Deus contra os egípcios?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a 7ª praga enviada por Deus contra os egípcios?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a 7ª praga enviada por Deus contra os egípcios?"], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedras de Fogo"], ["question_id", 2570], ["correct", true], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gafanhotos"], ["question_id", 2570], ["correct", false], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trevas"], ["question_id", 2570], ["correct", false], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Morte do Primogênito"], ["question_id", 2570], ["correct", false], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]]  (106.1ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a acusação do sumo sacerdote contra Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a acusação do sumo sacerdote contra Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a acusação do sumo sacerdote contra Jesus?"], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Blasfêmia"], ["question_id", 2571], ["correct", true], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Louvar Um Deus Falso"], ["question_id", 2571], ["correct", false], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mentir Para O Sacerdote"], ["question_id", 2571], ["correct", false], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tentar Ser Deus"], ["question_id", 2571], ["correct", false], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]]  (122.2ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a árvore cuja semente Jesus usou para ensinar uma lição de fé?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a árvore cuja semente Jesus usou para ensinar uma lição de fé?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a árvore cuja semente Jesus usou para ensinar uma lição de fé?"], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mostarda"], ["question_id", 2572], ["correct", true], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cipreste"], ["question_id", 2572], ["correct", false], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Figueira"], ["question_id", 2572], ["correct", false], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oliveira"], ["question_id", 2572], ["correct", false], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]]  (121.8ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a causa que levou com que Israel fosse levado cativo pelos assírios?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a causa que levou com que Israel fosse levado cativo pelos assírios?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a causa que levou com que Israel fosse levado cativo pelos assírios?"], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não-obediência À Voz de Deus"], ["question_id", 2573], ["correct", true], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Pagou Os Tributos Exigidos Pelos Assírios"], ["question_id", 2573], ["correct", false], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mataram 2 Generais Assírios"], ["question_id", 2573], ["correct", false], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pela Falta de Água No Reino da Assíria"], ["question_id", 2573], ["correct", false], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]]  (139.7ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a desculpa utilizada por Amnom, filho de Davi, para que Tamar, sua meia-irmã, viesse à sua casa e a estuprasse?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a desculpa utilizada por Amnom, filho de Davi, para que Tamar, sua meia-irmã, viesse à sua casa e a estuprasse?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a desculpa utilizada por Amnom, filho de Davi, para que Tamar, sua meia-irmã, viesse à sua casa e a estuprasse?"], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fingiu Estar Doente"], ["question_id", 2574], ["correct", true], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Propôs-lhe Casamento"], ["question_id", 2574], ["correct", false], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Havia Ficado Rico"], ["question_id", 2574], ["correct", false], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Encontrou Uma Mula Que Falava"], ["question_id", 2574], ["correct", false], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]]  (157.3ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a Epístola que o apóstolo Paulo escreveu enquanto esteve viajando pela Grécia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a Epístola que o apóstolo Paulo escreveu enquanto esteve viajando pela Grécia?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a Epístola que o apóstolo Paulo escreveu enquanto esteve viajando pela Grécia?"], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Romanos"], ["question_id", 2575], ["correct", true], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Colossenses"], ["question_id", 2575], ["correct", false], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filipenses"], ["question_id", 2575], ["correct", false], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tessalonicenses"], ["question_id", 2575], ["correct", false], ["created_at", 2016-08-19 02:57:28 UTC], ["updated_at", 2016-08-19 02:57:28 UTC]]  (175.5ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a mensagem que o profeta Aías disse à esposa de Jeroboão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a mensagem que o profeta Aías disse à esposa de Jeroboão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a mensagem que o profeta Aías disse à esposa de Jeroboão?"], ["created_at", 2016-08-19 02:57:29 UTC], ["updated_at", 2016-08-19 02:57:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Todos Os Homens da Família Real Iriam Morrer"], ["question_id", 2576], ["correct", true], ["created_at", 2016-08-19 02:57:29 UTC], ["updated_at", 2016-08-19 02:57:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Apenas As Filhas do Rei Iriam Morrer"], ["question_id", 2576], ["correct", false], ["created_at", 2016-08-19 02:57:29 UTC], ["updated_at", 2016-08-19 02:57:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Apenas O Filho Primogênito do Rei Morreria"], ["question_id", 2576], ["correct", false], ["created_at", 2016-08-19 02:57:29 UTC], ["updated_at", 2016-08-19 02:57:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que O Próprio Rei Iria Morrer Pela Mãos dos Filhos"], ["question_id", 2576], ["correct", false], ["created_at", 2016-08-19 02:57:29 UTC], ["updated_at", 2016-08-19 02:57:29 UTC]]  (176.2ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a pior rainha do reino de Isarel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a pior rainha do reino de Isarel?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a pior rainha do reino de Isarel?"], ["created_at", 2016-08-19 02:57:29 UTC], ["updated_at", 2016-08-19 02:57:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jezabel"], ["question_id", 2577], ["correct", true], ["created_at", 2016-08-19 02:57:29 UTC], ["updated_at", 2016-08-19 02:57:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nebate"], ["question_id", 2577], ["correct", false], ["created_at", 2016-08-19 02:57:29 UTC], ["updated_at", 2016-08-19 02:57:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pul"], ["question_id", 2577], ["correct", false], ["created_at", 2016-08-19 02:57:29 UTC], ["updated_at", 2016-08-19 02:57:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Peca"], ["question_id", 2577], ["correct", false], ["created_at", 2016-08-19 02:57:29 UTC], ["updated_at", 2016-08-19 02:57:29 UTC]]  (142.8ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a primeira cidade conquistada pelos israelitas quando estes estavam sob a liderança de Josué?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a primeira cidade conquistada pelos israelitas quando estes estavam sob a liderança de Josué?"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a primeira cidade conquistada pelos israelitas quando estes estavam sob a liderança de Josué?"], ["created_at", 2016-08-19 02:57:29 UTC], ["updated_at", 2016-08-19 02:57:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jericó"], ["question_id", 2578], ["correct", true], ["created_at", 2016-08-19 02:57:29 UTC], ["updated_at", 2016-08-19 02:57:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sodoma"], ["question_id", 2578], ["correct", false], ["created_at", 2016-08-19 02:57:29 UTC], ["updated_at", 2016-08-19 02:57:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gomorra"], ["question_id", 2578], ["correct", false], ["created_at", 2016-08-19 02:57:29 UTC], ["updated_at", 2016-08-19 02:57:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ur dos Caldeus"], ["question_id", 2578], ["correct", false], ["created_at", 2016-08-19 02:57:29 UTC], ["updated_at", 2016-08-19 02:57:29 UTC]]  (214.1ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a proclamação do rei de Níníve para que todas as pessoas fizessem?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a proclamação do rei de Níníve para que todas as pessoas fizessem?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a proclamação do rei de Níníve para que todas as pessoas fizessem?"], ["created_at", 2016-08-19 02:57:29 UTC], ["updated_at", 2016-08-19 02:57:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jejuassem"], ["question_id", 2579], ["correct", true], ["created_at", 2016-08-19 02:57:29 UTC], ["updated_at", 2016-08-19 02:57:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Festejassem"], ["question_id", 2579], ["correct", false], ["created_at", 2016-08-19 02:57:29 UTC], ["updated_at", 2016-08-19 02:57:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ficassem Em Suas Casas"], ["question_id", 2579], ["correct", false], ["created_at", 2016-08-19 02:57:29 UTC], ["updated_at", 2016-08-19 02:57:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Fossem Mais Trabalhar"], ["question_id", 2579], ["correct", false], ["created_at", 2016-08-19 02:57:29 UTC], ["updated_at", 2016-08-19 02:57:29 UTC]]  (188.8ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a profecia que o profeta Isaías disse ao rei Ezequias com relação aos tesouros do Templo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a profecia que o profeta Isaías disse ao rei Ezequias com relação aos tesouros do Templo?"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a profecia que o profeta Isaías disse ao rei Ezequias com relação aos tesouros do Templo?"], ["created_at", 2016-08-19 02:57:29 UTC], ["updated_at", 2016-08-19 02:57:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eles Serão Levados"], ["question_id", 2580], ["correct", true], ["created_at", 2016-08-19 02:57:29 UTC], ["updated_at", 2016-08-19 02:57:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eles Serão Destruídos"], ["question_id", 2580], ["correct", false], ["created_at", 2016-08-19 02:57:29 UTC], ["updated_at", 2016-08-19 02:57:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eles Iriam Se Perder"], ["question_id", 2580], ["correct", false], ["created_at", 2016-08-19 02:57:29 UTC], ["updated_at", 2016-08-19 02:57:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eles Seriam Derretidos"], ["question_id", 2580], ["correct", false], ["created_at", 2016-08-19 02:57:29 UTC], ["updated_at", 2016-08-19 02:57:29 UTC]]  (138.5ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a profissão de Ninrode?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a profissão de Ninrode?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a profissão de Ninrode?"], ["created_at", 2016-08-19 02:57:29 UTC], ["updated_at", 2016-08-19 02:57:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caçador"], ["question_id", 2581], ["correct", true], ["created_at", 2016-08-19 02:57:29 UTC], ["updated_at", 2016-08-19 02:57:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marinheiro"], ["question_id", 2581], ["correct", false], ["created_at", 2016-08-19 02:57:29 UTC], ["updated_at", 2016-08-19 02:57:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Construtor Naval"], ["question_id", 2581], ["correct", false], ["created_at", 2016-08-19 02:57:29 UTC], ["updated_at", 2016-08-19 02:57:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pescador"], ["question_id", 2581], ["correct", false], ["created_at", 2016-08-19 02:57:29 UTC], ["updated_at", 2016-08-19 02:57:29 UTC]]  (148.5ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a profissão de Zacarias?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a profissão de Zacarias?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a profissão de Zacarias?"], ["created_at", 2016-08-19 02:57:30 UTC], ["updated_at", 2016-08-19 02:57:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sacerdote"], ["question_id", 2582], ["correct", true], ["created_at", 2016-08-19 02:57:30 UTC], ["updated_at", 2016-08-19 02:57:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carpinteiro"], ["question_id", 2582], ["correct", false], ["created_at", 2016-08-19 02:57:30 UTC], ["updated_at", 2016-08-19 02:57:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Coletor de Impostos"], ["question_id", 2582], ["correct", false], ["created_at", 2016-08-19 02:57:30 UTC], ["updated_at", 2016-08-19 02:57:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pescador"], ["question_id", 2582], ["correct", false], ["created_at", 2016-08-19 02:57:30 UTC], ["updated_at", 2016-08-19 02:57:30 UTC]]  (180.5ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a quantidade de seguidores de Corá que foram consumidos pelo fogo em sua rebelião?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a quantidade de seguidores de Corá que foram consumidos pelo fogo em sua rebelião?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a quantidade de seguidores de Corá que foram consumidos pelo fogo em sua rebelião?"], ["created_at", 2016-08-19 02:57:30 UTC], ["updated_at", 2016-08-19 02:57:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "250"], ["question_id", 2583], ["correct", true], ["created_at", 2016-08-19 02:57:30 UTC], ["updated_at", 2016-08-19 02:57:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2000"], ["question_id", 2583], ["correct", false], ["created_at", 2016-08-19 02:57:30 UTC], ["updated_at", 2016-08-19 02:57:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "50"], ["question_id", 2583], ["correct", false], ["created_at", 2016-08-19 02:57:30 UTC], ["updated_at", 2016-08-19 02:57:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1500"], ["question_id", 2583], ["correct", false], ["created_at", 2016-08-19 02:57:30 UTC], ["updated_at", 2016-08-19 02:57:30 UTC]]  (157.8ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a resposta do rei Davi à tentativa de rebelião promovida por Absalão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a resposta do rei Davi à tentativa de rebelião promovida por Absalão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a resposta do rei Davi à tentativa de rebelião promovida por Absalão?"], ["created_at", 2016-08-19 02:57:30 UTC], ["updated_at", 2016-08-19 02:57:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fugiu de Jerusalém"], ["question_id", 2584], ["correct", true], ["created_at", 2016-08-19 02:57:30 UTC], ["updated_at", 2016-08-19 02:57:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mandou Matá-lo"], ["question_id", 2584], ["correct", false], ["created_at", 2016-08-19 02:57:30 UTC], ["updated_at", 2016-08-19 02:57:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mandou Prendê-lo"], ["question_id", 2584], ["correct", false], ["created_at", 2016-08-19 02:57:30 UTC], ["updated_at", 2016-08-19 02:57:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aconselhou-o Informando Que O Reino Era de Salomão"], ["question_id", 2584], ["correct", false], ["created_at", 2016-08-19 02:57:30 UTC], ["updated_at", 2016-08-19 02:57:30 UTC]]  (105.2ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a única mulher na Bíblia que teve a sua idade mencionada?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a única mulher na Bíblia que teve a sua idade mencionada?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a única mulher na Bíblia que teve a sua idade mencionada?"], ["created_at", 2016-08-19 02:57:30 UTC], ["updated_at", 2016-08-19 02:57:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sara"], ["question_id", 2585], ["correct", true], ["created_at", 2016-08-19 02:57:30 UTC], ["updated_at", 2016-08-19 02:57:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rute"], ["question_id", 2585], ["correct", false], ["created_at", 2016-08-19 02:57:30 UTC], ["updated_at", 2016-08-19 02:57:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eva"], ["question_id", 2585], ["correct", false], ["created_at", 2016-08-19 02:57:30 UTC], ["updated_at", 2016-08-19 02:57:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noemi"], ["question_id", 2585], ["correct", false], ["created_at", 2016-08-19 02:57:30 UTC], ["updated_at", 2016-08-19 02:57:30 UTC]]  (114.5ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a única ocasião registrada no Novo Testamento em que Jesus cantou?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi a única ocasião registrada no Novo Testamento em que Jesus cantou?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi a única ocasião registrada no Novo Testamento em que Jesus cantou?"], ["created_at", 2016-08-19 02:57:30 UTC], ["updated_at", 2016-08-19 02:57:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Última Ceia"], ["question_id", 2586], ["correct", true], ["created_at", 2016-08-19 02:57:30 UTC], ["updated_at", 2016-08-19 02:57:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Gólgota"], ["question_id", 2586], ["correct", false], ["created_at", 2016-08-19 02:57:30 UTC], ["updated_at", 2016-08-19 02:57:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Batismo do Rio Jordão"], ["question_id", 2586], ["correct", false], ["created_at", 2016-08-19 02:57:30 UTC], ["updated_at", 2016-08-19 02:57:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Entrada Triunfal Em Jerusalém"], ["question_id", 2586], ["correct", false], ["created_at", 2016-08-19 02:57:30 UTC], ["updated_at", 2016-08-19 02:57:30 UTC]]  (122.9ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o 1º discípulo a perder sua vida pelo fato de estar evangelizando?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o 1º discípulo a perder sua vida pelo fato de estar evangelizando?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o 1º discípulo a perder sua vida pelo fato de estar evangelizando?"], ["created_at", 2016-08-19 02:57:30 UTC], ["updated_at", 2016-08-19 02:57:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 2587], ["correct", true], ["created_at", 2016-08-19 02:57:30 UTC], ["updated_at", 2016-08-19 02:57:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 2587], ["correct", false], ["created_at", 2016-08-19 02:57:30 UTC], ["updated_at", 2016-08-19 02:57:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mateus"], ["question_id", 2587], ["correct", false], ["created_at", 2016-08-19 02:57:30 UTC], ["updated_at", 2016-08-19 02:57:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 2587], ["correct", false], ["created_at", 2016-08-19 02:57:30 UTC], ["updated_at", 2016-08-19 02:57:30 UTC]]  (131.6ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o 1º discípulo morto a mando de Herodes?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o 1º discípulo morto a mando de Herodes?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o 1º discípulo morto a mando de Herodes?"], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 2588], ["correct", true], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mateus"], ["question_id", 2588], ["correct", false], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 2588], ["correct", false], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 2588], ["correct", false], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]]  (130.5ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o 1º milagre que Jesus realizou em público?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o 1º milagre que Jesus realizou em público?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o 1º milagre que Jesus realizou em público?"], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Transformou Água Em Vinho"], ["question_id", 2589], ["correct", true], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Curou Um Homem Cego"], ["question_id", 2589], ["correct", false], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Multiplicou Pães e Peixes"], ["question_id", 2589], ["correct", false], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acalmou Uma Tempestade"], ["question_id", 2589], ["correct", false], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]]  (123.7ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o decreto assinado pelo rei Dario vigente por 30 dias?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o decreto assinado pelo rei Dario vigente por 30 dias?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o decreto assinado pelo rei Dario vigente por 30 dias?"], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todas As Adorações Deveriam Ser Dirigidas Ao Rei"], ["question_id", 2590], ["correct", true], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todo O Povo Deveria Jejuar"], ["question_id", 2590], ["correct", false], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Impostos Deixariam de Ser Cobrados"], ["question_id", 2590], ["correct", false], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Povo Não Poderia Trabalhar No Sábado"], ["question_id", 2590], ["correct", false], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]]  (124.1ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o fato que levou o rei Davi a ser questionado pelo profeta Namã?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o fato que levou o rei Davi a ser questionado pelo profeta Namã?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o fato que levou o rei Davi a ser questionado pelo profeta Namã?"], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Davi Manteve Relações Sexuais Com Bate-seba"], ["question_id", 2591], ["correct", true], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Davi Era Ganancioso"], ["question_id", 2591], ["correct", false], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Davi Não Queria Construir O Templo de Deus"], ["question_id", 2591], ["correct", false], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pois Davi Não Queria Destruir Os Altares de Baal"], ["question_id", 2591], ["correct", false], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]]  (140.0ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o fato que permitiu que os 2 discípulos de Jesus que caminharam com Ele na estrada de Emaús O reconhecessem?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o fato que permitiu que os 2 discípulos de Jesus que caminharam com Ele na estrada de Emaús O reconhecessem?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o fato que permitiu que os 2 discípulos de Jesus que caminharam com Ele na estrada de Emaús O reconhecessem?"], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Partir O Pão"], ["question_id", 2592], ["correct", true], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Abençoar A Casa"], ["question_id", 2592], ["correct", false], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Curar Enfermos Que Haviam Na Estrada"], ["question_id", 2592], ["correct", false], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ao Ser Tocado Por Tomé"], ["question_id", 2592], ["correct", false], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]]  (123.6ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o filho de Jacó que tornou-se um grande líder da nação egípcia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o filho de Jacó que tornou-se um grande líder da nação egípcia?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o filho de Jacó que tornou-se um grande líder da nação egípcia?"], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 2593], ["correct", true], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rubem"], ["question_id", 2593], ["correct", false], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dã"], ["question_id", 2593], ["correct", false], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judá"], ["question_id", 2593], ["correct", false], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]]  (155.5ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o filho do rei babilônico Nabucodonosor?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o filho do rei babilônico Nabucodonosor?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o filho do rei babilônico Nabucodonosor?"], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belsazar"], ["question_id", 2594], ["correct", true], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 2594], ["correct", false], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiro"], ["question_id", 2594], ["correct", false], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belaquiel"], ["question_id", 2594], ["correct", false], ["created_at", 2016-08-19 02:57:31 UTC], ["updated_at", 2016-08-19 02:57:31 UTC]]  (130.5ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o filho primogênito do rei Davi?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o filho primogênito do rei Davi?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o filho primogênito do rei Davi?"], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amnon"], ["question_id", 2595], ["correct", true], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 2595], ["correct", false], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 2595], ["correct", false], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sefatias"], ["question_id", 2595], ["correct", false], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]]  (107.0ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o filho que Davi não teve com Bate-Seba?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o filho que Davi não teve com Bate-Seba?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o filho que Davi não teve com Bate-Seba?"], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 2596], ["correct", true], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Natã"], ["question_id", 2596], ["correct", false], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2596], ["correct", false], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sobabe"], ["question_id", 2596], ["correct", false], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]]  (123.6ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o grau de parentesco entre Moisés e Anrão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o grau de parentesco entre Moisés e Anrão?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o grau de parentesco entre Moisés e Anrão?"], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filho e Pai"], ["question_id", 2597], ["correct", true], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tio e Sobrinho"], ["question_id", 2597], ["correct", false], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmãos"], ["question_id", 2597], ["correct", false], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cunhados"], ["question_id", 2597], ["correct", false], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]]  (123.6ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o grau de parentesco entre Moisés e Joquebede?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o grau de parentesco entre Moisés e Joquebede?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o grau de parentesco entre Moisés e Joquebede?"], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filho e Mãe"], ["question_id", 2598], ["correct", true], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sobrinho e Tia"], ["question_id", 2598], ["correct", false], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Genro e Sogra"], ["question_id", 2598], ["correct", false], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Irmãos"], ["question_id", 2598], ["correct", false], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]]  (164.5ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o homem mais velho da Bíblia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o homem mais velho da Bíblia?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o homem mais velho da Bíblia?"], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matusalém"], ["question_id", 2599], ["correct", true], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Melquisedeque"], ["question_id", 2599], ["correct", false], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adão"], ["question_id", 2599], ["correct", false], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mefibosete"], ["question_id", 2599], ["correct", false], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]]  (190.5ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o melhor amigo de Jônatas?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o melhor amigo de Jônatas?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o melhor amigo de Jônatas?"], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 2600], ["correct", true], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 2600], ["correct", false], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 2600], ["correct", false], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 2600], ["correct", false], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]]  (171.7ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o motivo que levou Deus a optar pela destruição da Terra através de um dilúvio?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o motivo que levou Deus a optar pela destruição da Terra através de um dilúvio?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o motivo que levou Deus a optar pela destruição da Terra através de um dilúvio?"], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Os Homens Eram Completamente Maus"], ["question_id", 2601], ["correct", true], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque As Mulheres Eram Inférteis"], ["question_id", 2601], ["correct", false], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque A Terra Estava Muito Populosa"], ["question_id", 2601], ["correct", false], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Não Havia Mais Alimento Suficiente P/ Todos"], ["question_id", 2601], ["correct", false], ["created_at", 2016-08-19 02:57:32 UTC], ["updated_at", 2016-08-19 02:57:32 UTC]]  (121.6ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o nome que o rei Davi e Bate-Seba deram ao segundo filho que tiveram?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o nome que o rei Davi e Bate-Seba deram ao segundo filho que tiveram?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o nome que o rei Davi e Bate-Seba deram ao segundo filho que tiveram?"], ["created_at", 2016-08-19 02:57:33 UTC], ["updated_at", 2016-08-19 02:57:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2602], ["correct", true], ["created_at", 2016-08-19 02:57:33 UTC], ["updated_at", 2016-08-19 02:57:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 2602], ["correct", false], ["created_at", 2016-08-19 02:57:33 UTC], ["updated_at", 2016-08-19 02:57:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Labão"], ["question_id", 2602], ["correct", false], ["created_at", 2016-08-19 02:57:33 UTC], ["updated_at", 2016-08-19 02:57:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Balaão"], ["question_id", 2602], ["correct", false], ["created_at", 2016-08-19 02:57:33 UTC], ["updated_at", 2016-08-19 02:57:33 UTC]]  (189.9ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o novo mandamento que Jesus ensinou aos seus discípulos no cenáculo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o novo mandamento que Jesus ensinou aos seus discípulos no cenáculo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o novo mandamento que Jesus ensinou aos seus discípulos no cenáculo?"], ["created_at", 2016-08-19 02:57:33 UTC], ["updated_at", 2016-08-19 02:57:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amem Uns Aos Outros"], ["question_id", 2603], ["correct", true], ["created_at", 2016-08-19 02:57:33 UTC], ["updated_at", 2016-08-19 02:57:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Honrem Meu Nome"], ["question_id", 2603], ["correct", false], ["created_at", 2016-08-19 02:57:33 UTC], ["updated_at", 2016-08-19 02:57:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Preguem O Evangelho"], ["question_id", 2603], ["correct", false], ["created_at", 2016-08-19 02:57:33 UTC], ["updated_at", 2016-08-19 02:57:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Orem Com Fervor e Devoção"], ["question_id", 2603], ["correct", false], ["created_at", 2016-08-19 02:57:33 UTC], ["updated_at", 2016-08-19 02:57:33 UTC]]  (172.7ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o objetivo de Josias em queimar ossos humanos no altar eregido ao deus Moleque?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o objetivo de Josias em queimar ossos humanos no altar eregido ao deus Moleque?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o objetivo de Josias em queimar ossos humanos no altar eregido ao deus Moleque?"], ["created_at", 2016-08-19 02:57:33 UTC], ["updated_at", 2016-08-19 02:57:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Profaná-lo"], ["question_id", 2604], ["correct", true], ["created_at", 2016-08-19 02:57:33 UTC], ["updated_at", 2016-08-19 02:57:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adorá-lo"], ["question_id", 2604], ["correct", false], ["created_at", 2016-08-19 02:57:33 UTC], ["updated_at", 2016-08-19 02:57:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Exaltá-lo"], ["question_id", 2604], ["correct", false], ["created_at", 2016-08-19 02:57:33 UTC], ["updated_at", 2016-08-19 02:57:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Destruí-lo"], ["question_id", 2604], ["correct", false], ["created_at", 2016-08-19 02:57:33 UTC], ["updated_at", 2016-08-19 02:57:33 UTC]]  (121.9ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o outro nome que Deus deu a Salomão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o outro nome que Deus deu a Salomão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o outro nome que Deus deu a Salomão?"], ["created_at", 2016-08-19 02:57:33 UTC], ["updated_at", 2016-08-19 02:57:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jedidias"], ["question_id", 2605], ["correct", true], ["created_at", 2016-08-19 02:57:33 UTC], ["updated_at", 2016-08-19 02:57:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias"], ["question_id", 2605], ["correct", false], ["created_at", 2016-08-19 02:57:33 UTC], ["updated_at", 2016-08-19 02:57:33 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josedias"], ["question_id", 2605], ["correct", false], ["created_at", 2016-08-19 02:57:33 UTC], ["updated_at", 2016-08-19 02:57:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zuzemias"], ["question_id", 2605], ["correct", false], ["created_at", 2016-08-19 02:57:33 UTC], ["updated_at", 2016-08-19 02:57:33 UTC]]  (148.5ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o pecado que Davi cometeu com Bate-Seba?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o pecado que Davi cometeu com Bate-Seba?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o pecado que Davi cometeu com Bate-Seba?"], ["created_at", 2016-08-19 02:57:33 UTC], ["updated_at", 2016-08-19 02:57:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adultério"], ["question_id", 2606], ["correct", true], ["created_at", 2016-08-19 02:57:33 UTC], ["updated_at", 2016-08-19 02:57:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deitar-se Com Urias"], ["question_id", 2606], ["correct", false], ["created_at", 2016-08-19 02:57:33 UTC], ["updated_at", 2016-08-19 02:57:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ter Uma Terceira Esposa"], ["question_id", 2606], ["correct", false], ["created_at", 2016-08-19 02:57:33 UTC], ["updated_at", 2016-08-19 02:57:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amar Urias"], ["question_id", 2606], ["correct", false], ["created_at", 2016-08-19 02:57:33 UTC], ["updated_at", 2016-08-19 02:57:33 UTC]]  (182.3ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o período de reinado de Salomão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o período de reinado de Salomão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o período de reinado de Salomão?"], ["created_at", 2016-08-19 02:57:33 UTC], ["updated_at", 2016-08-19 02:57:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "40 Anos"], ["question_id", 2607], ["correct", true], ["created_at", 2016-08-19 02:57:33 UTC], ["updated_at", 2016-08-19 02:57:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12 Anos"], ["question_id", 2607], ["correct", false], ["created_at", 2016-08-19 02:57:33 UTC], ["updated_at", 2016-08-19 02:57:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "68 Anos"], ["question_id", 2607], ["correct", false], ["created_at", 2016-08-19 02:57:33 UTC], ["updated_at", 2016-08-19 02:57:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4 Anos"], ["question_id", 2607], ["correct", false], ["created_at", 2016-08-19 02:57:33 UTC], ["updated_at", 2016-08-19 02:57:33 UTC]]  (123.0ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o primeiro apóstolo a morrer?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o primeiro apóstolo a morrer?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o primeiro apóstolo a morrer?"], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 2608], ["correct", true], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 2608], ["correct", false], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 2608], ["correct", false], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 2608], ["correct", false], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]]  (140.2ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o primeiro discípulo a perder a sua vida?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o primeiro discípulo a perder a sua vida?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o primeiro discípulo a perder a sua vida?"], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas Iscariotes"], ["question_id", 2609], ["correct", true], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 2609], ["correct", false], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 2609], ["correct", false], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mateus"], ["question_id", 2609], ["correct", false], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]]  (146.9ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o profeta que antecedeu a João Batista?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o profeta que antecedeu a João Batista?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o profeta que antecedeu a João Batista?"], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Malaquias"], ["question_id", 2610], ["correct", true], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias"], ["question_id", 2610], ["correct", false], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obadias"], ["question_id", 2610], ["correct", false], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 2610], ["correct", false], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]]  (147.0ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o profeta que apareceu após Malaquias?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o profeta que apareceu após Malaquias?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o profeta que apareceu após Malaquias?"], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 2611], ["correct", true], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias"], ["question_id", 2611], ["correct", false], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obadias"], ["question_id", 2611], ["correct", false], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 2611], ["correct", false], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]]  (113.4ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o profeta que era conhecido como o \"profeta que chorava\"?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o profeta que era conhecido como o \"profeta que chorava\"?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o profeta que era conhecido como o \"profeta que chorava\"?"], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeremias"], ["question_id", 2612], ["correct", true], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sofonias"], ["question_id", 2612], ["correct", false], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miquéias"], ["question_id", 2612], ["correct", false], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 2612], ["correct", false], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]]  (113.8ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o profeta que sucedeu a Samuel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o profeta que sucedeu a Samuel?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o profeta que sucedeu a Samuel?"], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Natã"], ["question_id", 2613], ["correct", true], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 2613], ["correct", false], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 2613], ["correct", false], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 2613], ["correct", false], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]]  (124.2ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o rei mais cruel que o povo de Israel já teve como governante?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o rei mais cruel que o povo de Israel já teve como governante?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o rei mais cruel que o povo de Israel já teve como governante?"], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 2614], ["correct", true], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 2614], ["correct", false], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeocadias"], ["question_id", 2614], ["correct", false], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sofonias"], ["question_id", 2614], ["correct", false], ["created_at", 2016-08-19 02:57:34 UTC], ["updated_at", 2016-08-19 02:57:34 UTC]]  (133.6ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o rei que destruiu os muros de Jerusalém?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o rei que destruiu os muros de Jerusalém?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o rei que destruiu os muros de Jerusalém?"], ["created_at", 2016-08-19 02:57:35 UTC], ["updated_at", 2016-08-19 02:57:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 2615], ["correct", true], ["created_at", 2016-08-19 02:57:35 UTC], ["updated_at", 2016-08-19 02:57:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2615], ["correct", false], ["created_at", 2016-08-19 02:57:35 UTC], ["updated_at", 2016-08-19 02:57:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiglete-pileser"], ["question_id", 2615], ["correct", false], ["created_at", 2016-08-19 02:57:35 UTC], ["updated_at", 2016-08-19 02:57:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assuero"], ["question_id", 2615], ["correct", false], ["created_at", 2016-08-19 02:57:35 UTC], ["updated_at", 2016-08-19 02:57:35 UTC]]  (130.0ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o último grande líder da nação babilônica?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o último grande líder da nação babilônica?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o último grande líder da nação babilônica?"], ["created_at", 2016-08-19 02:57:35 UTC], ["updated_at", 2016-08-19 02:57:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 2616], ["correct", true], ["created_at", 2016-08-19 02:57:35 UTC], ["updated_at", 2016-08-19 02:57:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assuero"], ["question_id", 2616], ["correct", false], ["created_at", 2016-08-19 02:57:35 UTC], ["updated_at", 2016-08-19 02:57:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acaz"], ["question_id", 2616], ["correct", false], ["created_at", 2016-08-19 02:57:35 UTC], ["updated_at", 2016-08-19 02:57:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belsazar"], ["question_id", 2616], ["correct", false], ["created_at", 2016-08-19 02:57:35 UTC], ["updated_at", 2016-08-19 02:57:35 UTC]]  (140.5ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o último livro da Bíblia a ser escrito?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o último livro da Bíblia a ser escrito?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o último livro da Bíblia a ser escrito?"], ["created_at", 2016-08-19 02:57:35 UTC], ["updated_at", 2016-08-19 02:57:35 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Iii João"], ["question_id", 2617], ["correct", true], ["created_at", 2016-08-19 02:57:35 UTC], ["updated_at", 2016-08-19 02:57:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apocalipse"], ["question_id", 2617], ["correct", false], ["created_at", 2016-08-19 02:57:35 UTC], ["updated_at", 2016-08-19 02:57:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mateus"], ["question_id", 2617], ["correct", false], ["created_at", 2016-08-19 02:57:35 UTC], ["updated_at", 2016-08-19 02:57:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Romanos"], ["question_id", 2617], ["correct", false], ["created_at", 2016-08-19 02:57:35 UTC], ["updated_at", 2016-08-19 02:57:35 UTC]]  (130.5ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o único dos doze apóstolos que não era Galileu?\n1,"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual foi o único dos doze apóstolos que não era Galileu?\n1,"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual foi o único dos doze apóstolos que não era Galileu?\n1,"], ["created_at", 2016-08-19 02:57:35 UTC], ["updated_at", 2016-08-19 02:57:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas"], ["question_id", 2618], ["correct", true], ["created_at", 2016-08-19 02:57:35 UTC], ["updated_at", 2016-08-19 02:57:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mateus"], ["question_id", 2618], ["correct", false], ["created_at", 2016-08-19 02:57:35 UTC], ["updated_at", 2016-08-19 02:57:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 2618], ["correct", false], ["created_at", 2016-08-19 02:57:35 UTC], ["updated_at", 2016-08-19 02:57:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Simão"], ["question_id", 2618], ["correct", false], ["created_at", 2016-08-19 02:57:35 UTC], ["updated_at", 2016-08-19 02:57:35 UTC]]  (148.5ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual ídolo foi a principal deusa de Tiro, conhecida também como \"A Dama do Mar\" no livro dos judeus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual ídolo foi a principal deusa de Tiro, conhecida também como \"A Dama do Mar\" no livro dos judeus?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual ídolo foi a principal deusa de Tiro, conhecida também como \"A Dama do Mar\" no livro dos judeus?"], ["created_at", 2016-08-19 02:57:35 UTC], ["updated_at", 2016-08-19 02:57:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Asera"], ["question_id", 2619], ["correct", true], ["created_at", 2016-08-19 02:57:35 UTC], ["updated_at", 2016-08-19 02:57:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Diana"], ["question_id", 2619], ["correct", false], ["created_at", 2016-08-19 02:57:35 UTC], ["updated_at", 2016-08-19 02:57:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nebo"], ["question_id", 2619], ["correct", false], ["created_at", 2016-08-19 02:57:35 UTC], ["updated_at", 2016-08-19 02:57:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Baal"], ["question_id", 2619], ["correct", false], ["created_at", 2016-08-19 02:57:35 UTC], ["updated_at", 2016-08-19 02:57:35 UTC]]  (225.9ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual ídolo representava o deus do conhecimento e da literatura de Babilônia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual ídolo representava o deus do conhecimento e da literatura de Babilônia?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual ídolo representava o deus do conhecimento e da literatura de Babilônia?"], ["created_at", 2016-08-19 02:57:35 UTC], ["updated_at", 2016-08-19 02:57:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nebo"], ["question_id", 2620], ["correct", true], ["created_at", 2016-08-19 02:57:35 UTC], ["updated_at", 2016-08-19 02:57:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mercúrio"], ["question_id", 2620], ["correct", false], ["created_at", 2016-08-19 02:57:35 UTC], ["updated_at", 2016-08-19 02:57:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gade"], ["question_id", 2620], ["correct", false], ["created_at", 2016-08-19 02:57:35 UTC], ["updated_at", 2016-08-19 02:57:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mefibosete"], ["question_id", 2620], ["correct", false], ["created_at", 2016-08-19 02:57:35 UTC], ["updated_at", 2016-08-19 02:57:35 UTC]]  (156.6ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual ídolo também era conhecido por Tiro como a \"Deusa do Mar\"?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual ídolo também era conhecido por Tiro como a \"Deusa do Mar\"?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual ídolo também era conhecido por Tiro como a \"Deusa do Mar\"?"], ["created_at", 2016-08-19 02:57:36 UTC], ["updated_at", 2016-08-19 02:57:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Asera"], ["question_id", 2621], ["correct", true], ["created_at", 2016-08-19 02:57:36 UTC], ["updated_at", 2016-08-19 02:57:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Posseidon"], ["question_id", 2621], ["correct", false], ["created_at", 2016-08-19 02:57:36 UTC], ["updated_at", 2016-08-19 02:57:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Diana"], ["question_id", 2621], ["correct", false], ["created_at", 2016-08-19 02:57:36 UTC], ["updated_at", 2016-08-19 02:57:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nebo"], ["question_id", 2621], ["correct", false], ["created_at", 2016-08-19 02:57:36 UTC], ["updated_at", 2016-08-19 02:57:36 UTC]]  (215.7ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual imperador Romano decretou que todos deveriam pagar impostos?"], ["LIMIT", 1]]  (0.0ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual imperador Romano decretou que todos deveriam pagar impostos?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual imperador Romano decretou que todos deveriam pagar impostos?"], ["created_at", 2016-08-19 02:57:36 UTC], ["updated_at", 2016-08-19 02:57:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "César Augusto"], ["question_id", 2622], ["correct", true], ["created_at", 2016-08-19 02:57:36 UTC], ["updated_at", 2016-08-19 02:57:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "César Felipe"], ["question_id", 2622], ["correct", false], ["created_at", 2016-08-19 02:57:36 UTC], ["updated_at", 2016-08-19 02:57:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rômulo"], ["question_id", 2622], ["correct", false], ["created_at", 2016-08-19 02:57:36 UTC], ["updated_at", 2016-08-19 02:57:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Remo"], ["question_id", 2622], ["correct", false], ["created_at", 2016-08-19 02:57:36 UTC], ["updated_at", 2016-08-19 02:57:36 UTC]]  (201.5ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual imposto deveria ser pago com a moeda que Pedro encontrou dentro da boca de um peixe?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual imposto deveria ser pago com a moeda que Pedro encontrou dentro da boca de um peixe?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual imposto deveria ser pago com a moeda que Pedro encontrou dentro da boca de um peixe?"], ["created_at", 2016-08-19 02:57:36 UTC], ["updated_at", 2016-08-19 02:57:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Manutenção do Templo de Jerusalém"], ["question_id", 2623], ["correct", true], ["created_at", 2016-08-19 02:57:36 UTC], ["updated_at", 2016-08-19 02:57:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dízimo"], ["question_id", 2623], ["correct", false], ["created_at", 2016-08-19 02:57:36 UTC], ["updated_at", 2016-08-19 02:57:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Imposto Cobrador Pepo Imperador Romano César"], ["question_id", 2623], ["correct", false], ["created_at", 2016-08-19 02:57:36 UTC], ["updated_at", 2016-08-19 02:57:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Compra de Alimentos Aos Necessitados"], ["question_id", 2623], ["correct", false], ["created_at", 2016-08-19 02:57:36 UTC], ["updated_at", 2016-08-19 02:57:36 UTC]]  (140.1ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual instrumento era tocado pela orquestra criada pelo rei Davi?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual instrumento era tocado pela orquestra criada pelo rei Davi?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual instrumento era tocado pela orquestra criada pelo rei Davi?"], ["created_at", 2016-08-19 02:57:36 UTC], ["updated_at", 2016-08-19 02:57:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todas As Respostas Estão Corretas"], ["question_id", 2624], ["correct", true], ["created_at", 2016-08-19 02:57:36 UTC], ["updated_at", 2016-08-19 02:57:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Clarins"], ["question_id", 2624], ["correct", false], ["created_at", 2016-08-19 02:57:36 UTC], ["updated_at", 2016-08-19 02:57:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Címbalos"], ["question_id", 2624], ["correct", false], ["created_at", 2016-08-19 02:57:36 UTC], ["updated_at", 2016-08-19 02:57:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Alaúdes"], ["question_id", 2624], ["correct", false], ["created_at", 2016-08-19 02:57:36 UTC], ["updated_at", 2016-08-19 02:57:36 UTC]]  (138.5ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual juiz de Israel tinha 30 filhos que cavalgavam 30 jumentos?\n1,"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual juiz de Israel tinha 30 filhos que cavalgavam 30 jumentos?\n1,"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual juiz de Israel tinha 30 filhos que cavalgavam 30 jumentos?\n1,"], ["created_at", 2016-08-19 02:57:36 UTC], ["updated_at", 2016-08-19 02:57:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jair"], ["question_id", 2625], ["correct", true], ["created_at", 2016-08-19 02:57:36 UTC], ["updated_at", 2016-08-19 02:57:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abimeleque"], ["question_id", 2625], ["correct", false], ["created_at", 2016-08-19 02:57:36 UTC], ["updated_at", 2016-08-19 02:57:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samir"], ["question_id", 2625], ["correct", false], ["created_at", 2016-08-19 02:57:36 UTC], ["updated_at", 2016-08-19 02:57:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Puá"], ["question_id", 2625], ["correct", false], ["created_at", 2016-08-19 02:57:36 UTC], ["updated_at", 2016-08-19 02:57:36 UTC]]  (221.9ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual mandamento nos instrui a respeitar a vida do próximo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual mandamento nos instrui a respeitar a vida do próximo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual mandamento nos instrui a respeitar a vida do próximo?"], ["created_at", 2016-08-19 02:57:37 UTC], ["updated_at", 2016-08-19 02:57:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "6º"], ["question_id", 2626], ["correct", true], ["created_at", 2016-08-19 02:57:37 UTC], ["updated_at", 2016-08-19 02:57:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5º"], ["question_id", 2626], ["correct", false], ["created_at", 2016-08-19 02:57:37 UTC], ["updated_at", 2016-08-19 02:57:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7º"], ["question_id", 2626], ["correct", false], ["created_at", 2016-08-19 02:57:37 UTC], ["updated_at", 2016-08-19 02:57:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "8º"], ["question_id", 2626], ["correct", false], ["created_at", 2016-08-19 02:57:37 UTC], ["updated_at", 2016-08-19 02:57:37 UTC]]  (205.1ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual mar dividiu-se em dois para permitir que o povo hebreu escapasse da perseguição do Faraó?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual mar dividiu-se em dois para permitir que o povo hebreu escapasse da perseguição do Faraó?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual mar dividiu-se em dois para permitir que o povo hebreu escapasse da perseguição do Faraó?"], ["created_at", 2016-08-19 02:57:37 UTC], ["updated_at", 2016-08-19 02:57:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vermelho"], ["question_id", 2627], ["correct", true], ["created_at", 2016-08-19 02:57:37 UTC], ["updated_at", 2016-08-19 02:57:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Galiléia"], ["question_id", 2627], ["correct", false], ["created_at", 2016-08-19 02:57:37 UTC], ["updated_at", 2016-08-19 02:57:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Morto"], ["question_id", 2627], ["correct", false], ["created_at", 2016-08-19 02:57:37 UTC], ["updated_at", 2016-08-19 02:57:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mediterrâneo"], ["question_id", 2627], ["correct", false], ["created_at", 2016-08-19 02:57:37 UTC], ["updated_at", 2016-08-19 02:57:37 UTC]]  (113.9ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual Monte marcava ao norte os limites de Israel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual Monte marcava ao norte os limites de Israel?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual Monte marcava ao norte os limites de Israel?"], ["created_at", 2016-08-19 02:57:37 UTC], ["updated_at", 2016-08-19 02:57:37 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hermon"], ["question_id", 2628], ["correct", true], ["created_at", 2016-08-19 02:57:37 UTC], ["updated_at", 2016-08-19 02:57:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hebrom"], ["question_id", 2628], ["correct", false], ["created_at", 2016-08-19 02:57:37 UTC], ["updated_at", 2016-08-19 02:57:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carmelo"], ["question_id", 2628], ["correct", false], ["created_at", 2016-08-19 02:57:37 UTC], ["updated_at", 2016-08-19 02:57:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gerizim"], ["question_id", 2628], ["correct", false], ["created_at", 2016-08-19 02:57:37 UTC], ["updated_at", 2016-08-19 02:57:37 UTC]]  (163.5ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual mulher liderou um exército em uma batalha?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual mulher liderou um exército em uma batalha?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual mulher liderou um exército em uma batalha?"], ["created_at", 2016-08-19 02:57:37 UTC], ["updated_at", 2016-08-19 02:57:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Débora"], ["question_id", 2629], ["correct", true], ["created_at", 2016-08-19 02:57:37 UTC], ["updated_at", 2016-08-19 02:57:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 2629], ["correct", false], ["created_at", 2016-08-19 02:57:37 UTC], ["updated_at", 2016-08-19 02:57:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jezabel"], ["question_id", 2629], ["correct", false], ["created_at", 2016-08-19 02:57:37 UTC], ["updated_at", 2016-08-19 02:57:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dalila"], ["question_id", 2629], ["correct", false], ["created_at", 2016-08-19 02:57:37 UTC], ["updated_at", 2016-08-19 02:57:37 UTC]]  (182.0ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual nação o rei Sisaque governava quanto atacou Jerusalém e saqueou o Templo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual nação o rei Sisaque governava quanto atacou Jerusalém e saqueou o Templo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual nação o rei Sisaque governava quanto atacou Jerusalém e saqueou o Templo?"], ["created_at", 2016-08-19 02:57:37 UTC], ["updated_at", 2016-08-19 02:57:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egípcia"], ["question_id", 2630], ["correct", true], ["created_at", 2016-08-19 02:57:37 UTC], ["updated_at", 2016-08-19 02:57:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônica"], ["question_id", 2630], ["correct", false], ["created_at", 2016-08-19 02:57:37 UTC], ["updated_at", 2016-08-19 02:57:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Grega"], ["question_id", 2630], ["correct", false], ["created_at", 2016-08-19 02:57:37 UTC], ["updated_at", 2016-08-19 02:57:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Medo-persa"], ["question_id", 2630], ["correct", false], ["created_at", 2016-08-19 02:57:37 UTC], ["updated_at", 2016-08-19 02:57:37 UTC]]  (180.6ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual nação tomou o povo israelita como escravo por aproximadamente 400 anos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual nação tomou o povo israelita como escravo por aproximadamente 400 anos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual nação tomou o povo israelita como escravo por aproximadamente 400 anos?"], ["created_at", 2016-08-19 02:57:37 UTC], ["updated_at", 2016-08-19 02:57:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egito"], ["question_id", 2631], ["correct", true], ["created_at", 2016-08-19 02:57:37 UTC], ["updated_at", 2016-08-19 02:57:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Grécia"], ["question_id", 2631], ["correct", false], ["created_at", 2016-08-19 02:57:37 UTC], ["updated_at", 2016-08-19 02:57:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônia"], ["question_id", 2631], ["correct", false], ["created_at", 2016-08-19 02:57:37 UTC], ["updated_at", 2016-08-19 02:57:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pérsia"], ["question_id", 2631], ["correct", false], ["created_at", 2016-08-19 02:57:37 UTC], ["updated_at", 2016-08-19 02:57:37 UTC]]  (197.6ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o homem que, depois de morto, matou mais pessoas que em sua vida?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o homem que, depois de morto, matou mais pessoas que em sua vida?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual o homem que, depois de morto, matou mais pessoas que em sua vida?"], ["created_at", 2016-08-19 02:57:38 UTC], ["updated_at", 2016-08-19 02:57:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 2632], ["correct", true], ["created_at", 2016-08-19 02:57:38 UTC], ["updated_at", 2016-08-19 02:57:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2632], ["correct", false], ["created_at", 2016-08-19 02:57:38 UTC], ["updated_at", 2016-08-19 02:57:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 2632], ["correct", false], ["created_at", 2016-08-19 02:57:38 UTC], ["updated_at", 2016-08-19 02:57:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 2632], ["correct", false], ["created_at", 2016-08-19 02:57:38 UTC], ["updated_at", 2016-08-19 02:57:38 UTC]]  (248.2ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o nome do filho do rei Ezequias que ocupou o trono real após sua morte?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o nome do filho do rei Ezequias que ocupou o trono real após sua morte?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual o nome do filho do rei Ezequias que ocupou o trono real após sua morte?"], ["created_at", 2016-08-19 02:57:38 UTC], ["updated_at", 2016-08-19 02:57:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Manassés"], ["question_id", 2633], ["correct", true], ["created_at", 2016-08-19 02:57:38 UTC], ["updated_at", 2016-08-19 02:57:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josias"], ["question_id", 2633], ["correct", false], ["created_at", 2016-08-19 02:57:38 UTC], ["updated_at", 2016-08-19 02:57:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hilquias"], ["question_id", 2633], ["correct", false], ["created_at", 2016-08-19 02:57:38 UTC], ["updated_at", 2016-08-19 02:57:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acaz"], ["question_id", 2633], ["correct", false], ["created_at", 2016-08-19 02:57:38 UTC], ["updated_at", 2016-08-19 02:57:38 UTC]]  (122.3ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o nome do jovem que estava dormindo sentado em uma janela enquanto Paulo pregava a mensagem?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o nome do jovem que estava dormindo sentado em uma janela enquanto Paulo pregava a mensagem?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual o nome do jovem que estava dormindo sentado em uma janela enquanto Paulo pregava a mensagem?"], ["created_at", 2016-08-19 02:57:38 UTC], ["updated_at", 2016-08-19 02:57:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Êutico"], ["question_id", 2634], ["correct", true], ["created_at", 2016-08-19 02:57:38 UTC], ["updated_at", 2016-08-19 02:57:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sópatro"], ["question_id", 2634], ["correct", false], ["created_at", 2016-08-19 02:57:38 UTC], ["updated_at", 2016-08-19 02:57:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tíquico"], ["question_id", 2634], ["correct", false], ["created_at", 2016-08-19 02:57:38 UTC], ["updated_at", 2016-08-19 02:57:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trófimo"], ["question_id", 2634], ["correct", false], ["created_at", 2016-08-19 02:57:38 UTC], ["updated_at", 2016-08-19 02:57:38 UTC]]  (131.7ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o nome do pai de Rebeca?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o nome do pai de Rebeca?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual o nome do pai de Rebeca?"], ["created_at", 2016-08-19 02:57:38 UTC], ["updated_at", 2016-08-19 02:57:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Betuel"], ["question_id", 2635], ["correct", true], ["created_at", 2016-08-19 02:57:38 UTC], ["updated_at", 2016-08-19 02:57:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 2635], ["correct", false], ["created_at", 2016-08-19 02:57:38 UTC], ["updated_at", 2016-08-19 02:57:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ló"], ["question_id", 2635], ["correct", false], ["created_at", 2016-08-19 02:57:38 UTC], ["updated_at", 2016-08-19 02:57:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noé"], ["question_id", 2635], ["correct", false], ["created_at", 2016-08-19 02:57:38 UTC], ["updated_at", 2016-08-19 02:57:38 UTC]]  (180.2ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o nome que deram à serpente de bronze levantada por Moisés no deserto?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o nome que deram à serpente de bronze levantada por Moisés no deserto?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual o nome que deram à serpente de bronze levantada por Moisés no deserto?"], ["created_at", 2016-08-19 02:57:38 UTC], ["updated_at", 2016-08-19 02:57:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Neustã"], ["question_id", 2636], ["correct", true], ["created_at", 2016-08-19 02:57:38 UTC], ["updated_at", 2016-08-19 02:57:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mefibosete"], ["question_id", 2636], ["correct", false], ["created_at", 2016-08-19 02:57:38 UTC], ["updated_at", 2016-08-19 02:57:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dagom"], ["question_id", 2636], ["correct", false], ["created_at", 2016-08-19 02:57:38 UTC], ["updated_at", 2016-08-19 02:57:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acalã"], ["question_id", 2636], ["correct", false], ["created_at", 2016-08-19 02:57:38 UTC], ["updated_at", 2016-08-19 02:57:38 UTC]]  (131.4ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o percentual do Novo Testamento que foi escrito em grego?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o percentual do Novo Testamento que foi escrito em grego?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual o percentual do Novo Testamento que foi escrito em grego?"], ["created_at", 2016-08-19 02:57:39 UTC], ["updated_at", 2016-08-19 02:57:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "100%"], ["question_id", 2637], ["correct", true], ["created_at", 2016-08-19 02:57:39 UTC], ["updated_at", 2016-08-19 02:57:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "50%"], ["question_id", 2637], ["correct", false], ["created_at", 2016-08-19 02:57:39 UTC], ["updated_at", 2016-08-19 02:57:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "80%"], ["question_id", 2637], ["correct", false], ["created_at", 2016-08-19 02:57:39 UTC], ["updated_at", 2016-08-19 02:57:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "90%"], ["question_id", 2637], ["correct", false], ["created_at", 2016-08-19 02:57:39 UTC], ["updated_at", 2016-08-19 02:57:39 UTC]]  (205.8ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o rei que adivinhava pelas nuvens, praticava feitiçaria e queimou o seu filho em sacrifício?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual o rei que adivinhava pelas nuvens, praticava feitiçaria e queimou o seu filho em sacrifício?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual o rei que adivinhava pelas nuvens, praticava feitiçaria e queimou o seu filho em sacrifício?"], ["created_at", 2016-08-19 02:57:39 UTC], ["updated_at", 2016-08-19 02:57:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Manassés"], ["question_id", 2638], ["correct", true], ["created_at", 2016-08-19 02:57:39 UTC], ["updated_at", 2016-08-19 02:57:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 2638], ["correct", false], ["created_at", 2016-08-19 02:57:39 UTC], ["updated_at", 2016-08-19 02:57:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josias"], ["question_id", 2638], ["correct", false], ["created_at", 2016-08-19 02:57:39 UTC], ["updated_at", 2016-08-19 02:57:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 2638], ["correct", false], ["created_at", 2016-08-19 02:57:39 UTC], ["updated_at", 2016-08-19 02:57:39 UTC]]  (157.1ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual planta deveria ser utilizada para aplicar o sangue do cordeiro nos batentes da porta das casas dos israelitas?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual planta deveria ser utilizada para aplicar o sangue do cordeiro nos batentes da porta das casas dos israelitas?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual planta deveria ser utilizada para aplicar o sangue do cordeiro nos batentes da porta das casas dos israelitas?"], ["created_at", 2016-08-19 02:57:39 UTC], ["updated_at", 2016-08-19 02:57:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hissopo"], ["question_id", 2639], ["correct", true], ["created_at", 2016-08-19 02:57:39 UTC], ["updated_at", 2016-08-19 02:57:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vitória-régia"], ["question_id", 2639], ["correct", false], ["created_at", 2016-08-19 02:57:39 UTC], ["updated_at", 2016-08-19 02:57:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Líbano"], ["question_id", 2639], ["correct", false], ["created_at", 2016-08-19 02:57:39 UTC], ["updated_at", 2016-08-19 02:57:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cipreste"], ["question_id", 2639], ["correct", false], ["created_at", 2016-08-19 02:57:39 UTC], ["updated_at", 2016-08-19 02:57:39 UTC]]  (280.8ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual povo considerava Dago como o principal deus da agricultura?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual povo considerava Dago como o principal deus da agricultura?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual povo considerava Dago como o principal deus da agricultura?"], ["created_at", 2016-08-19 02:57:39 UTC], ["updated_at", 2016-08-19 02:57:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filisteu"], ["question_id", 2640], ["correct", true], ["created_at", 2016-08-19 02:57:39 UTC], ["updated_at", 2016-08-19 02:57:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cananeu"], ["question_id", 2640], ["correct", false], ["created_at", 2016-08-19 02:57:39 UTC], ["updated_at", 2016-08-19 02:57:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenício"], ["question_id", 2640], ["correct", false], ["created_at", 2016-08-19 02:57:39 UTC], ["updated_at", 2016-08-19 02:57:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egípcio"], ["question_id", 2640], ["correct", false], ["created_at", 2016-08-19 02:57:39 UTC], ["updated_at", 2016-08-19 02:57:39 UTC]]  (155.1ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual povo depositou na Arca da Aliança 5 camundongos de ouro quando a mesma foi devolvida aos israelitas?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual povo depositou na Arca da Aliança 5 camundongos de ouro quando a mesma foi devolvida aos israelitas?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual povo depositou na Arca da Aliança 5 camundongos de ouro quando a mesma foi devolvida aos israelitas?"], ["created_at", 2016-08-19 02:57:39 UTC], ["updated_at", 2016-08-19 02:57:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filisteus"], ["question_id", 2641], ["correct", true], ["created_at", 2016-08-19 02:57:39 UTC], ["updated_at", 2016-08-19 02:57:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amorreus"], ["question_id", 2641], ["correct", false], ["created_at", 2016-08-19 02:57:39 UTC], ["updated_at", 2016-08-19 02:57:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cananeus"], ["question_id", 2641], ["correct", false], ["created_at", 2016-08-19 02:57:39 UTC], ["updated_at", 2016-08-19 02:57:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Galileus"], ["question_id", 2641], ["correct", false], ["created_at", 2016-08-19 02:57:39 UTC], ["updated_at", 2016-08-19 02:57:39 UTC]]  (113.4ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual povo tinha como divindade o deus Moloque, que exigia o sacrifício de crianças?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual povo tinha como divindade o deus Moloque, que exigia o sacrifício de crianças?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual povo tinha como divindade o deus Moloque, que exigia o sacrifício de crianças?"], ["created_at", 2016-08-19 02:57:40 UTC], ["updated_at", 2016-08-19 02:57:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amonita"], ["question_id", 2642], ["correct", true], ["created_at", 2016-08-19 02:57:40 UTC], ["updated_at", 2016-08-19 02:57:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moabita"], ["question_id", 2642], ["correct", false], ["created_at", 2016-08-19 02:57:40 UTC], ["updated_at", 2016-08-19 02:57:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cananeu"], ["question_id", 2642], ["correct", false], ["created_at", 2016-08-19 02:57:40 UTC], ["updated_at", 2016-08-19 02:57:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filisteu"], ["question_id", 2642], ["correct", false], ["created_at", 2016-08-19 02:57:40 UTC], ["updated_at", 2016-08-19 02:57:40 UTC]]  (195.5ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual povo, provido por Deus, peregrinou pelo deserto durante 40 anos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual povo, provido por Deus, peregrinou pelo deserto durante 40 anos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual povo, provido por Deus, peregrinou pelo deserto durante 40 anos?"], ["created_at", 2016-08-19 02:57:40 UTC], ["updated_at", 2016-08-19 02:57:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Israelita"], ["question_id", 2643], ["correct", true], ["created_at", 2016-08-19 02:57:40 UTC], ["updated_at", 2016-08-19 02:57:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mobita"], ["question_id", 2643], ["correct", false], ["created_at", 2016-08-19 02:57:40 UTC], ["updated_at", 2016-08-19 02:57:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cananeu"], ["question_id", 2643], ["correct", false], ["created_at", 2016-08-19 02:57:40 UTC], ["updated_at", 2016-08-19 02:57:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amorreu"], ["question_id", 2643], ["correct", false], ["created_at", 2016-08-19 02:57:40 UTC], ["updated_at", 2016-08-19 02:57:40 UTC]]  (181.4ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta a rainha Jezabel tentou matar?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta a rainha Jezabel tentou matar?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual profeta a rainha Jezabel tentou matar?"], ["created_at", 2016-08-19 02:57:40 UTC], ["updated_at", 2016-08-19 02:57:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 2644], ["correct", true], ["created_at", 2016-08-19 02:57:40 UTC], ["updated_at", 2016-08-19 02:57:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 2644], ["correct", false], ["created_at", 2016-08-19 02:57:40 UTC], ["updated_at", 2016-08-19 02:57:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 2644], ["correct", false], ["created_at", 2016-08-19 02:57:40 UTC], ["updated_at", 2016-08-19 02:57:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 2644], ["correct", false], ["created_at", 2016-08-19 02:57:40 UTC], ["updated_at", 2016-08-19 02:57:40 UTC]]  (147.2ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta antecedeu a Namã?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta antecedeu a Namã?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual profeta antecedeu a Namã?"], ["created_at", 2016-08-19 02:57:40 UTC], ["updated_at", 2016-08-19 02:57:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel"], ["question_id", 2645], ["correct", true], ["created_at", 2016-08-19 02:57:40 UTC], ["updated_at", 2016-08-19 02:57:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 2645], ["correct", false], ["created_at", 2016-08-19 02:57:40 UTC], ["updated_at", 2016-08-19 02:57:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 2645], ["correct", false], ["created_at", 2016-08-19 02:57:40 UTC], ["updated_at", 2016-08-19 02:57:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eli"], ["question_id", 2645], ["correct", false], ["created_at", 2016-08-19 02:57:40 UTC], ["updated_at", 2016-08-19 02:57:40 UTC]]  (139.9ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta disse a mensagem ao rei Jeroboão de que todos os filhos da casa real seriam mortos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta disse a mensagem ao rei Jeroboão de que todos os filhos da casa real seriam mortos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual profeta disse a mensagem ao rei Jeroboão de que todos os filhos da casa real seriam mortos?"], ["created_at", 2016-08-19 02:57:40 UTC], ["updated_at", 2016-08-19 02:57:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aías"], ["question_id", 2646], ["correct", true], ["created_at", 2016-08-19 02:57:40 UTC], ["updated_at", 2016-08-19 02:57:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 2646], ["correct", false], ["created_at", 2016-08-19 02:57:40 UTC], ["updated_at", 2016-08-19 02:57:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matias"], ["question_id", 2646], ["correct", false], ["created_at", 2016-08-19 02:57:40 UTC], ["updated_at", 2016-08-19 02:57:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 2646], ["correct", false], ["created_at", 2016-08-19 02:57:40 UTC], ["updated_at", 2016-08-19 02:57:40 UTC]]  (148.4ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta foi atirado em uma cisterna para afundar na lama e ser deixado lá para morrer?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta foi atirado em uma cisterna para afundar na lama e ser deixado lá para morrer?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual profeta foi atirado em uma cisterna para afundar na lama e ser deixado lá para morrer?"], ["created_at", 2016-08-19 02:57:40 UTC], ["updated_at", 2016-08-19 02:57:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeremias"], ["question_id", 2647], ["correct", true], ["created_at", 2016-08-19 02:57:40 UTC], ["updated_at", 2016-08-19 02:57:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obadias"], ["question_id", 2647], ["correct", false], ["created_at", 2016-08-19 02:57:40 UTC], ["updated_at", 2016-08-19 02:57:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 2647], ["correct", false], ["created_at", 2016-08-19 02:57:40 UTC], ["updated_at", 2016-08-19 02:57:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Habacuque"], ["question_id", 2647], ["correct", false], ["created_at", 2016-08-19 02:57:40 UTC], ["updated_at", 2016-08-19 02:57:40 UTC]]  (123.9ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta foi chamado para dizer sobre a condição de saúde do filho de Jeroboão, quando este adoeceu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta foi chamado para dizer sobre a condição de saúde do filho de Jeroboão, quando este adoeceu?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual profeta foi chamado para dizer sobre a condição de saúde do filho de Jeroboão, quando este adoeceu?"], ["created_at", 2016-08-19 02:57:41 UTC], ["updated_at", 2016-08-19 02:57:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aías"], ["question_id", 2648], ["correct", true], ["created_at", 2016-08-19 02:57:41 UTC], ["updated_at", 2016-08-19 02:57:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 2648], ["correct", false], ["created_at", 2016-08-19 02:57:41 UTC], ["updated_at", 2016-08-19 02:57:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 2648], ["correct", false], ["created_at", 2016-08-19 02:57:41 UTC], ["updated_at", 2016-08-19 02:57:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sofonias"], ["question_id", 2648], ["correct", false], ["created_at", 2016-08-19 02:57:41 UTC], ["updated_at", 2016-08-19 02:57:41 UTC]]  (138.6ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta foi o pai de João Batista?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta foi o pai de João Batista?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual profeta foi o pai de João Batista?"], ["created_at", 2016-08-19 02:57:41 UTC], ["updated_at", 2016-08-19 02:57:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias"], ["question_id", 2649], ["correct", true], ["created_at", 2016-08-19 02:57:41 UTC], ["updated_at", 2016-08-19 02:57:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 2649], ["correct", false], ["created_at", 2016-08-19 02:57:41 UTC], ["updated_at", 2016-08-19 02:57:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 2649], ["correct", false], ["created_at", 2016-08-19 02:57:41 UTC], ["updated_at", 2016-08-19 02:57:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Malaquias"], ["question_id", 2649], ["correct", false], ["created_at", 2016-08-19 02:57:41 UTC], ["updated_at", 2016-08-19 02:57:41 UTC]]  (139.1ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta impulsionou os judeus para que terminassem a reconstrução do Templo, após o retorno da Babilônia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta impulsionou os judeus para que terminassem a reconstrução do Templo, após o retorno da Babilônia?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual profeta impulsionou os judeus para que terminassem a reconstrução do Templo, após o retorno da Babilônia?"], ["created_at", 2016-08-19 02:57:41 UTC], ["updated_at", 2016-08-19 02:57:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias"], ["question_id", 2650], ["correct", true], ["created_at", 2016-08-19 02:57:41 UTC], ["updated_at", 2016-08-19 02:57:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ageu"], ["question_id", 2650], ["correct", false], ["created_at", 2016-08-19 02:57:41 UTC], ["updated_at", 2016-08-19 02:57:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esdras"], ["question_id", 2650], ["correct", false], ["created_at", 2016-08-19 02:57:41 UTC], ["updated_at", 2016-08-19 02:57:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 2650], ["correct", false], ["created_at", 2016-08-19 02:57:41 UTC], ["updated_at", 2016-08-19 02:57:41 UTC]]  (140.2ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta predisse ao rei Ezequias que os tesouros do Templo seriam levados?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta predisse ao rei Ezequias que os tesouros do Templo seriam levados?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual profeta predisse ao rei Ezequias que os tesouros do Templo seriam levados?"], ["created_at", 2016-08-19 02:57:41 UTC], ["updated_at", 2016-08-19 02:57:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 2651], ["correct", true], ["created_at", 2016-08-19 02:57:41 UTC], ["updated_at", 2016-08-19 02:57:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obadias"], ["question_id", 2651], ["correct", false], ["created_at", 2016-08-19 02:57:41 UTC], ["updated_at", 2016-08-19 02:57:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 2651], ["correct", false], ["created_at", 2016-08-19 02:57:41 UTC], ["updated_at", 2016-08-19 02:57:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Natã"], ["question_id", 2651], ["correct", false], ["created_at", 2016-08-19 02:57:41 UTC], ["updated_at", 2016-08-19 02:57:41 UTC]]  (223.3ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta se inspirava ouvindo música?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta se inspirava ouvindo música?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual profeta se inspirava ouvindo música?"], ["created_at", 2016-08-19 02:57:41 UTC], ["updated_at", 2016-08-19 02:57:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 2652], ["correct", true], ["created_at", 2016-08-19 02:57:41 UTC], ["updated_at", 2016-08-19 02:57:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 2652], ["correct", false], ["created_at", 2016-08-19 02:57:41 UTC], ["updated_at", 2016-08-19 02:57:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias"], ["question_id", 2652], ["correct", false], ["created_at", 2016-08-19 02:57:41 UTC], ["updated_at", 2016-08-19 02:57:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Habacuque"], ["question_id", 2652], ["correct", false], ["created_at", 2016-08-19 02:57:41 UTC], ["updated_at", 2016-08-19 02:57:41 UTC]]  (197.4ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta transformou-se em sacerdote?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profeta transformou-se em sacerdote?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual profeta transformou-se em sacerdote?"], ["created_at", 2016-08-19 02:57:41 UTC], ["updated_at", 2016-08-19 02:57:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias"], ["question_id", 2653], ["correct", true], ["created_at", 2016-08-19 02:57:41 UTC], ["updated_at", 2016-08-19 02:57:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 2653], ["correct", false], ["created_at", 2016-08-19 02:57:41 UTC], ["updated_at", 2016-08-19 02:57:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 2653], ["correct", false], ["created_at", 2016-08-19 02:57:41 UTC], ["updated_at", 2016-08-19 02:57:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel"], ["question_id", 2653], ["correct", false], ["created_at", 2016-08-19 02:57:41 UTC], ["updated_at", 2016-08-19 02:57:41 UTC]]  (155.3ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profissão Jesus aprendeu de seu pai?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual profissão Jesus aprendeu de seu pai?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual profissão Jesus aprendeu de seu pai?"], ["created_at", 2016-08-19 02:57:42 UTC], ["updated_at", 2016-08-19 02:57:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carpintaria"], ["question_id", 2654], ["correct", true], ["created_at", 2016-08-19 02:57:42 UTC], ["updated_at", 2016-08-19 02:57:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marcenaria"], ["question_id", 2654], ["correct", false], ["created_at", 2016-08-19 02:57:42 UTC], ["updated_at", 2016-08-19 02:57:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Alfaiataria"], ["question_id", 2654], ["correct", false], ["created_at", 2016-08-19 02:57:42 UTC], ["updated_at", 2016-08-19 02:57:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Construção Naval"], ["question_id", 2654], ["correct", false], ["created_at", 2016-08-19 02:57:42 UTC], ["updated_at", 2016-08-19 02:57:42 UTC]]  (138.5ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rainha foi visitar o rei Salomão em Jerusalém?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (1.0ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rainha foi visitar o rei Salomão em Jerusalém?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rainha foi visitar o rei Salomão em Jerusalém?"], ["created_at", 2016-08-19 02:57:42 UTC], ["updated_at", 2016-08-19 02:57:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sabá"], ["question_id", 2655], ["correct", true], ["created_at", 2016-08-19 02:57:42 UTC], ["updated_at", 2016-08-19 02:57:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vasti"], ["question_id", 2655], ["correct", false], ["created_at", 2016-08-19 02:57:42 UTC], ["updated_at", 2016-08-19 02:57:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ester"], ["question_id", 2655], ["correct", false], ["created_at", 2016-08-19 02:57:42 UTC], ["updated_at", 2016-08-19 02:57:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rute"], ["question_id", 2655], ["correct", false], ["created_at", 2016-08-19 02:57:42 UTC], ["updated_at", 2016-08-19 02:57:42 UTC]]  (156.0ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei a rainha de Sabá foi visitar em Jerusalém?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei a rainha de Sabá foi visitar em Jerusalém?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei a rainha de Sabá foi visitar em Jerusalém?"], ["created_at", 2016-08-19 02:57:42 UTC], ["updated_at", 2016-08-19 02:57:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2656], ["correct", true], ["created_at", 2016-08-19 02:57:42 UTC], ["updated_at", 2016-08-19 02:57:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 2656], ["correct", false], ["created_at", 2016-08-19 02:57:42 UTC], ["updated_at", 2016-08-19 02:57:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ezequias"], ["question_id", 2656], ["correct", false], ["created_at", 2016-08-19 02:57:42 UTC], ["updated_at", 2016-08-19 02:57:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 2656], ["correct", false], ["created_at", 2016-08-19 02:57:42 UTC], ["updated_at", 2016-08-19 02:57:42 UTC]]  (146.8ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei antecedeu o governo de Belsazar no império Babilônico?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei antecedeu o governo de Belsazar no império Babilônico?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei antecedeu o governo de Belsazar no império Babilônico?"], ["created_at", 2016-08-19 02:57:42 UTC], ["updated_at", 2016-08-19 02:57:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 2657], ["correct", true], ["created_at", 2016-08-19 02:57:42 UTC], ["updated_at", 2016-08-19 02:57:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiro"], ["question_id", 2657], ["correct", false], ["created_at", 2016-08-19 02:57:42 UTC], ["updated_at", 2016-08-19 02:57:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 2657], ["correct", false], ["created_at", 2016-08-19 02:57:42 UTC], ["updated_at", 2016-08-19 02:57:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Filho de Belsazar"], ["question_id", 2657], ["correct", false], ["created_at", 2016-08-19 02:57:42 UTC], ["updated_at", 2016-08-19 02:57:42 UTC]]  (123.5ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei antecedeu o reinado de Roboão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei antecedeu o reinado de Roboão?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei antecedeu o reinado de Roboão?"], ["created_at", 2016-08-19 02:57:42 UTC], ["updated_at", 2016-08-19 02:57:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2658], ["correct", true], ["created_at", 2016-08-19 02:57:42 UTC], ["updated_at", 2016-08-19 02:57:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 2658], ["correct", false], ["created_at", 2016-08-19 02:57:42 UTC], ["updated_at", 2016-08-19 02:57:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 2658], ["correct", false], ["created_at", 2016-08-19 02:57:42 UTC], ["updated_at", 2016-08-19 02:57:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jedidias"], ["question_id", 2658], ["correct", false], ["created_at", 2016-08-19 02:57:42 UTC], ["updated_at", 2016-08-19 02:57:42 UTC]]  (209.6ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei Atalia tentou destruir?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei Atalia tentou destruir?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei Atalia tentou destruir?"], ["created_at", 2016-08-19 02:57:42 UTC], ["updated_at", 2016-08-19 02:57:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeoás"], ["question_id", 2659], ["correct", true], ["created_at", 2016-08-19 02:57:42 UTC], ["updated_at", 2016-08-19 02:57:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ezequias"], ["question_id", 2659], ["correct", false], ["created_at", 2016-08-19 02:57:42 UTC], ["updated_at", 2016-08-19 02:57:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 2659], ["correct", false], ["created_at", 2016-08-19 02:57:42 UTC], ["updated_at", 2016-08-19 02:57:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josias"], ["question_id", 2659], ["correct", false], ["created_at", 2016-08-19 02:57:42 UTC], ["updated_at", 2016-08-19 02:57:42 UTC]]  (177.8ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei babilônico teve sonhos onde Daniel afirmou que apenas Deus era capaz de interpretá-los?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei babilônico teve sonhos onde Daniel afirmou que apenas Deus era capaz de interpretá-los?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei babilônico teve sonhos onde Daniel afirmou que apenas Deus era capaz de interpretá-los?"], ["created_at", 2016-08-19 02:57:43 UTC], ["updated_at", 2016-08-19 02:57:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 2660], ["correct", true], ["created_at", 2016-08-19 02:57:43 UTC], ["updated_at", 2016-08-19 02:57:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiglete-pileser"], ["question_id", 2660], ["correct", false], ["created_at", 2016-08-19 02:57:43 UTC], ["updated_at", 2016-08-19 02:57:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 2660], ["correct", false], ["created_at", 2016-08-19 02:57:43 UTC], ["updated_at", 2016-08-19 02:57:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belsazar"], ["question_id", 2660], ["correct", false], ["created_at", 2016-08-19 02:57:43 UTC], ["updated_at", 2016-08-19 02:57:43 UTC]]  (180.2ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei babilônico travou uma batalha contra o rei Neco do Egito e derrotou-o na cidade de Carquêmis?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei babilônico travou uma batalha contra o rei Neco do Egito e derrotou-o na cidade de Carquêmis?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei babilônico travou uma batalha contra o rei Neco do Egito e derrotou-o na cidade de Carquêmis?"], ["created_at", 2016-08-19 02:57:43 UTC], ["updated_at", 2016-08-19 02:57:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 2661], ["correct", true], ["created_at", 2016-08-19 02:57:43 UTC], ["updated_at", 2016-08-19 02:57:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiro"], ["question_id", 2661], ["correct", false], ["created_at", 2016-08-19 02:57:43 UTC], ["updated_at", 2016-08-19 02:57:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 2661], ["correct", false], ["created_at", 2016-08-19 02:57:43 UTC], ["updated_at", 2016-08-19 02:57:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belsazar"], ["question_id", 2661], ["correct", false], ["created_at", 2016-08-19 02:57:43 UTC], ["updated_at", 2016-08-19 02:57:43 UTC]]  (148.0ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei construiu altares a Baal e erigiu uma estátua da deusa Asera no Templo de Jerusalém?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei construiu altares a Baal e erigiu uma estátua da deusa Asera no Templo de Jerusalém?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei construiu altares a Baal e erigiu uma estátua da deusa Asera no Templo de Jerusalém?"], ["created_at", 2016-08-19 02:57:43 UTC], ["updated_at", 2016-08-19 02:57:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Manassés"], ["question_id", 2662], ["correct", true], ["created_at", 2016-08-19 02:57:43 UTC], ["updated_at", 2016-08-19 02:57:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ezequias"], ["question_id", 2662], ["correct", false], ["created_at", 2016-08-19 02:57:43 UTC], ["updated_at", 2016-08-19 02:57:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 2662], ["correct", false], ["created_at", 2016-08-19 02:57:43 UTC], ["updated_at", 2016-08-19 02:57:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2662], ["correct", false], ["created_at", 2016-08-19 02:57:43 UTC], ["updated_at", 2016-08-19 02:57:43 UTC]]  (121.9ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei da Assíria levou cativo todo o povo do reino do norte de Israel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei da Assíria levou cativo todo o povo do reino do norte de Israel?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei da Assíria levou cativo todo o povo do reino do norte de Israel?"], ["created_at", 2016-08-19 02:57:43 UTC], ["updated_at", 2016-08-19 02:57:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salmaneser"], ["question_id", 2663], ["correct", true], ["created_at", 2016-08-19 02:57:43 UTC], ["updated_at", 2016-08-19 02:57:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sargão"], ["question_id", 2663], ["correct", false], ["created_at", 2016-08-19 02:57:43 UTC], ["updated_at", 2016-08-19 02:57:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiglete-pileser"], ["question_id", 2663], ["correct", false], ["created_at", 2016-08-19 02:57:43 UTC], ["updated_at", 2016-08-19 02:57:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 2663], ["correct", false], ["created_at", 2016-08-19 02:57:43 UTC], ["updated_at", 2016-08-19 02:57:43 UTC]]  (132.3ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei da Babilônia mandou jogar os amigos de Daniel em uma fornalha ardente?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei da Babilônia mandou jogar os amigos de Daniel em uma fornalha ardente?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei da Babilônia mandou jogar os amigos de Daniel em uma fornalha ardente?"], ["created_at", 2016-08-19 02:57:43 UTC], ["updated_at", 2016-08-19 02:57:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 2664], ["correct", true], ["created_at", 2016-08-19 02:57:43 UTC], ["updated_at", 2016-08-19 02:57:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 2664], ["correct", false], ["created_at", 2016-08-19 02:57:43 UTC], ["updated_at", 2016-08-19 02:57:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiro"], ["question_id", 2664], ["correct", false], ["created_at", 2016-08-19 02:57:43 UTC], ["updated_at", 2016-08-19 02:57:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belsazar"], ["question_id", 2664], ["correct", false], ["created_at", 2016-08-19 02:57:43 UTC], ["updated_at", 2016-08-19 02:57:43 UTC]]  (165.5ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei da Babilônia mandou jogar os amigos de Daniel na cova dos leões?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei da Babilônia mandou jogar os amigos de Daniel na cova dos leões?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei da Babilônia mandou jogar os amigos de Daniel na cova dos leões?"], ["created_at", 2016-08-19 02:57:43 UTC], ["updated_at", 2016-08-19 02:57:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhum"], ["question_id", 2665], ["correct", true], ["created_at", 2016-08-19 02:57:43 UTC], ["updated_at", 2016-08-19 02:57:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 2665], ["correct", false], ["created_at", 2016-08-19 02:57:43 UTC], ["updated_at", 2016-08-19 02:57:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiro"], ["question_id", 2665], ["correct", false], ["created_at", 2016-08-19 02:57:43 UTC], ["updated_at", 2016-08-19 02:57:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belsazar"], ["question_id", 2665], ["correct", false], ["created_at", 2016-08-19 02:57:43 UTC], ["updated_at", 2016-08-19 02:57:43 UTC]]  (214.3ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei de Israel tinha 700 esposas?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei de Israel tinha 700 esposas?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei de Israel tinha 700 esposas?"], ["created_at", 2016-08-19 02:57:44 UTC], ["updated_at", 2016-08-19 02:57:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2666], ["correct", true], ["created_at", 2016-08-19 02:57:44 UTC], ["updated_at", 2016-08-19 02:57:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 2666], ["correct", false], ["created_at", 2016-08-19 02:57:44 UTC], ["updated_at", 2016-08-19 02:57:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ezequias"], ["question_id", 2666], ["correct", false], ["created_at", 2016-08-19 02:57:44 UTC], ["updated_at", 2016-08-19 02:57:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 2666], ["correct", false], ["created_at", 2016-08-19 02:57:44 UTC], ["updated_at", 2016-08-19 02:57:44 UTC]]  (164.9ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei de Judá construiu um túnel que permitiu que fosse trazida água para a cidade de Jerusalém?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei de Judá construiu um túnel que permitiu que fosse trazida água para a cidade de Jerusalém?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei de Judá construiu um túnel que permitiu que fosse trazida água para a cidade de Jerusalém?"], ["created_at", 2016-08-19 02:57:44 UTC], ["updated_at", 2016-08-19 02:57:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ezequias"], ["question_id", 2667], ["correct", true], ["created_at", 2016-08-19 02:57:44 UTC], ["updated_at", 2016-08-19 02:57:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zerubabel"], ["question_id", 2667], ["correct", false], ["created_at", 2016-08-19 02:57:44 UTC], ["updated_at", 2016-08-19 02:57:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 2667], ["correct", false], ["created_at", 2016-08-19 02:57:44 UTC], ["updated_at", 2016-08-19 02:57:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 2667], ["correct", false], ["created_at", 2016-08-19 02:57:44 UTC], ["updated_at", 2016-08-19 02:57:44 UTC]]  (180.7ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei de Judá foi capturado na cidade de Jericó, após ter escapado do 3º ataque do rei Nabucodonosor?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei de Judá foi capturado na cidade de Jericó, após ter escapado do 3º ataque do rei Nabucodonosor?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei de Judá foi capturado na cidade de Jericó, após ter escapado do 3º ataque do rei Nabucodonosor?"], ["created_at", 2016-08-19 02:57:44 UTC], ["updated_at", 2016-08-19 02:57:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zedequias"], ["question_id", 2668], ["correct", true], ["created_at", 2016-08-19 02:57:44 UTC], ["updated_at", 2016-08-19 02:57:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josias"], ["question_id", 2668], ["correct", false], ["created_at", 2016-08-19 02:57:44 UTC], ["updated_at", 2016-08-19 02:57:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joás"], ["question_id", 2668], ["correct", false], ["created_at", 2016-08-19 02:57:44 UTC], ["updated_at", 2016-08-19 02:57:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 2668], ["correct", false], ["created_at", 2016-08-19 02:57:44 UTC], ["updated_at", 2016-08-19 02:57:44 UTC]]  (197.7ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei devolveu a Mefibosete todas as propriedades pessoais de Saul?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei devolveu a Mefibosete todas as propriedades pessoais de Saul?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei devolveu a Mefibosete todas as propriedades pessoais de Saul?"], ["created_at", 2016-08-19 02:57:44 UTC], ["updated_at", 2016-08-19 02:57:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 2669], ["correct", true], ["created_at", 2016-08-19 02:57:44 UTC], ["updated_at", 2016-08-19 02:57:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2669], ["correct", false], ["created_at", 2016-08-19 02:57:44 UTC], ["updated_at", 2016-08-19 02:57:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 2669], ["correct", false], ["created_at", 2016-08-19 02:57:44 UTC], ["updated_at", 2016-08-19 02:57:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josias"], ["question_id", 2669], ["correct", false], ["created_at", 2016-08-19 02:57:44 UTC], ["updated_at", 2016-08-19 02:57:44 UTC]]  (205.2ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei do Egito atacou Jerusalém e saqueou o Templo, roubando assim seus tesouros?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei do Egito atacou Jerusalém e saqueou o Templo, roubando assim seus tesouros?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei do Egito atacou Jerusalém e saqueou o Templo, roubando assim seus tesouros?"], ["created_at", 2016-08-19 02:57:44 UTC], ["updated_at", 2016-08-19 02:57:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sisaque"], ["question_id", 2670], ["correct", true], ["created_at", 2016-08-19 02:57:44 UTC], ["updated_at", 2016-08-19 02:57:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 2670], ["correct", false], ["created_at", 2016-08-19 02:57:44 UTC], ["updated_at", 2016-08-19 02:57:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiglate-pileser"], ["question_id", 2670], ["correct", false], ["created_at", 2016-08-19 02:57:44 UTC], ["updated_at", 2016-08-19 02:57:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 2670], ["correct", false], ["created_at", 2016-08-19 02:57:44 UTC], ["updated_at", 2016-08-19 02:57:44 UTC]]  (138.9ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei egípcio travou uma batalha contra o rei Nabucodonosor e foi derrotado na cidade de Carquêmis?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei egípcio travou uma batalha contra o rei Nabucodonosor e foi derrotado na cidade de Carquêmis?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei egípcio travou uma batalha contra o rei Nabucodonosor e foi derrotado na cidade de Carquêmis?"], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Neco"], ["question_id", 2671], ["correct", true], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cleópatra"], ["question_id", 2671], ["correct", false], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noen"], ["question_id", 2671], ["correct", false], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Niloron"], ["question_id", 2671], ["correct", false], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]]  (156.8ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei foi morto por uma flecha atirada ao acaso?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei foi morto por uma flecha atirada ao acaso?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei foi morto por uma flecha atirada ao acaso?"], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 2672], ["correct", true], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2672], ["correct", false], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ezequias"], ["question_id", 2672], ["correct", false], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adonias"], ["question_id", 2672], ["correct", false], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]]  (140.2ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei foi questionado pelo profeta Namã?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei foi questionado pelo profeta Namã?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei foi questionado pelo profeta Namã?"], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 2673], ["correct", true], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2673], ["correct", false], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 2673], ["correct", false], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 2673], ["correct", false], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]]  (146.9ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei juntamente com seus filhos foram derrotados pelos filisteus no Monte Gilboa?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei juntamente com seus filhos foram derrotados pelos filisteus no Monte Gilboa?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei juntamente com seus filhos foram derrotados pelos filisteus no Monte Gilboa?"], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 2674], ["correct", true], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 2674], ["correct", false], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2674], ["correct", false], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acaz"], ["question_id", 2674], ["correct", false], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]]  (130.5ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei mandou buscar o profeta Aías quando seu filho adoeceu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei mandou buscar o profeta Aías quando seu filho adoeceu?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei mandou buscar o profeta Aías quando seu filho adoeceu?"], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeroboão"], ["question_id", 2675], ["correct", true], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Roboão"], ["question_id", 2675], ["correct", false], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2675], ["correct", false], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zedequias"], ["question_id", 2675], ["correct", false], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]]  (124.2ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei mandou chamar adivinhos e magos para decifrar os sonhos que tinha?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei mandou chamar adivinhos e magos para decifrar os sonhos que tinha?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei mandou chamar adivinhos e magos para decifrar os sonhos que tinha?"], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 2676], ["correct", true], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 2676], ["correct", false], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiro"], ["question_id", 2676], ["correct", false], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belsazar"], ["question_id", 2676], ["correct", false], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]]  (123.8ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei mostrou os tesouros do Templo aos babilônios?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei mostrou os tesouros do Templo aos babilônios?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei mostrou os tesouros do Templo aos babilônios?"], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ezequias"], ["question_id", 2677], ["correct", true], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 2677], ["correct", false], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 2677], ["correct", false], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adonias"], ["question_id", 2677], ["correct", false], ["created_at", 2016-08-19 02:57:45 UTC], ["updated_at", 2016-08-19 02:57:45 UTC]]  (123.1ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei o sacerdote Samuel ungiu como rei de Israel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei o sacerdote Samuel ungiu como rei de Israel?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei o sacerdote Samuel ungiu como rei de Israel?"], ["created_at", 2016-08-19 02:57:46 UTC], ["updated_at", 2016-08-19 02:57:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 2678], ["correct", true], ["created_at", 2016-08-19 02:57:46 UTC], ["updated_at", 2016-08-19 02:57:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2678], ["correct", false], ["created_at", 2016-08-19 02:57:46 UTC], ["updated_at", 2016-08-19 02:57:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Malaquias"], ["question_id", 2678], ["correct", false], ["created_at", 2016-08-19 02:57:46 UTC], ["updated_at", 2016-08-19 02:57:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obadias"], ["question_id", 2678], ["correct", false], ["created_at", 2016-08-19 02:57:46 UTC], ["updated_at", 2016-08-19 02:57:46 UTC]]  (139.7ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei pagava 150 ciclos de prata por um cavalo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei pagava 150 ciclos de prata por um cavalo?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei pagava 150 ciclos de prata por um cavalo?"], ["created_at", 2016-08-19 02:57:46 UTC], ["updated_at", 2016-08-19 02:57:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2679], ["correct", true], ["created_at", 2016-08-19 02:57:46 UTC], ["updated_at", 2016-08-19 02:57:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 2679], ["correct", false], ["created_at", 2016-08-19 02:57:46 UTC], ["updated_at", 2016-08-19 02:57:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 2679], ["correct", false], ["created_at", 2016-08-19 02:57:46 UTC], ["updated_at", 2016-08-19 02:57:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 2679], ["correct", false], ["created_at", 2016-08-19 02:57:46 UTC], ["updated_at", 2016-08-19 02:57:46 UTC]]  (122.9ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei persa jogou Daniel na cova dos leões?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei persa jogou Daniel na cova dos leões?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei persa jogou Daniel na cova dos leões?"], ["created_at", 2016-08-19 02:57:46 UTC], ["updated_at", 2016-08-19 02:57:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 2680], ["correct", true], ["created_at", 2016-08-19 02:57:46 UTC], ["updated_at", 2016-08-19 02:57:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiro"], ["question_id", 2680], ["correct", false], ["created_at", 2016-08-19 02:57:46 UTC], ["updated_at", 2016-08-19 02:57:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 2680], ["correct", false], ["created_at", 2016-08-19 02:57:46 UTC], ["updated_at", 2016-08-19 02:57:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Constantino"], ["question_id", 2680], ["correct", false], ["created_at", 2016-08-19 02:57:46 UTC], ["updated_at", 2016-08-19 02:57:46 UTC]]  (222.9ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei queria capturar Elias?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei queria capturar Elias?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei queria capturar Elias?"], ["created_at", 2016-08-19 02:57:46 UTC], ["updated_at", 2016-08-19 02:57:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 2681], ["correct", true], ["created_at", 2016-08-19 02:57:46 UTC], ["updated_at", 2016-08-19 02:57:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeoás"], ["question_id", 2681], ["correct", false], ["created_at", 2016-08-19 02:57:46 UTC], ["updated_at", 2016-08-19 02:57:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amazias"], ["question_id", 2681], ["correct", false], ["created_at", 2016-08-19 02:57:46 UTC], ["updated_at", 2016-08-19 02:57:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josias"], ["question_id", 2681], ["correct", false], ["created_at", 2016-08-19 02:57:46 UTC], ["updated_at", 2016-08-19 02:57:46 UTC]]  (197.0ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei sucedeu o governo de Nabucodonosor no império Babilônico?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei sucedeu o governo de Nabucodonosor no império Babilônico?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei sucedeu o governo de Nabucodonosor no império Babilônico?"], ["created_at", 2016-08-19 02:57:46 UTC], ["updated_at", 2016-08-19 02:57:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belsazar"], ["question_id", 2682], ["correct", true], ["created_at", 2016-08-19 02:57:46 UTC], ["updated_at", 2016-08-19 02:57:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 2682], ["correct", false], ["created_at", 2016-08-19 02:57:46 UTC], ["updated_at", 2016-08-19 02:57:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiro"], ["question_id", 2682], ["correct", false], ["created_at", 2016-08-19 02:57:46 UTC], ["updated_at", 2016-08-19 02:57:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Baquebacar"], ["question_id", 2682], ["correct", false], ["created_at", 2016-08-19 02:57:46 UTC], ["updated_at", 2016-08-19 02:57:46 UTC]]  (164.8ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei viajou pelo Monte das Oliveiras fugindo do seu filho rebelde?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei viajou pelo Monte das Oliveiras fugindo do seu filho rebelde?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei viajou pelo Monte das Oliveiras fugindo do seu filho rebelde?"], ["created_at", 2016-08-19 02:57:47 UTC], ["updated_at", 2016-08-19 02:57:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 2683], ["correct", true], ["created_at", 2016-08-19 02:57:47 UTC], ["updated_at", 2016-08-19 02:57:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2683], ["correct", false], ["created_at", 2016-08-19 02:57:47 UTC], ["updated_at", 2016-08-19 02:57:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 2683], ["correct", false], ["created_at", 2016-08-19 02:57:47 UTC], ["updated_at", 2016-08-19 02:57:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josafá"], ["question_id", 2683], ["correct", false], ["created_at", 2016-08-19 02:57:47 UTC], ["updated_at", 2016-08-19 02:57:47 UTC]]  (180.5ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei, ao ter adoecido, mandou que fosse consultado o deus Baal-Zebube, para ver se sararia da sua doença?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual rei, ao ter adoecido, mandou que fosse consultado o deus Baal-Zebube, para ver se sararia da sua doença?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual rei, ao ter adoecido, mandou que fosse consultado o deus Baal-Zebube, para ver se sararia da sua doença?"], ["created_at", 2016-08-19 02:57:47 UTC], ["updated_at", 2016-08-19 02:57:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 2684], ["correct", true], ["created_at", 2016-08-19 02:57:47 UTC], ["updated_at", 2016-08-19 02:57:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jorão"], ["question_id", 2684], ["correct", false], ["created_at", 2016-08-19 02:57:47 UTC], ["updated_at", 2016-08-19 02:57:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acaz"], ["question_id", 2684], ["correct", false], ["created_at", 2016-08-19 02:57:47 UTC], ["updated_at", 2016-08-19 02:57:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Azarias"], ["question_id", 2684], ["correct", false], ["created_at", 2016-08-19 02:57:47 UTC], ["updated_at", 2016-08-19 02:57:47 UTC]]  (188.9ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual sacerdote ungiu Davi como o novo rei de Israel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual sacerdote ungiu Davi como o novo rei de Israel?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual sacerdote ungiu Davi como o novo rei de Israel?"], ["created_at", 2016-08-19 02:57:47 UTC], ["updated_at", 2016-08-19 02:57:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel"], ["question_id", 2685], ["correct", true], ["created_at", 2016-08-19 02:57:47 UTC], ["updated_at", 2016-08-19 02:57:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eli"], ["question_id", 2685], ["correct", false], ["created_at", 2016-08-19 02:57:47 UTC], ["updated_at", 2016-08-19 02:57:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 2685], ["correct", false], ["created_at", 2016-08-19 02:57:47 UTC], ["updated_at", 2016-08-19 02:57:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 2685], ["correct", false], ["created_at", 2016-08-19 02:57:47 UTC], ["updated_at", 2016-08-19 02:57:47 UTC]]  (122.0ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual sacerdote ungiu Salomão como rei?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual sacerdote ungiu Salomão como rei?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual sacerdote ungiu Salomão como rei?"], ["created_at", 2016-08-19 02:57:47 UTC], ["updated_at", 2016-08-19 02:57:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zadoque"], ["question_id", 2686], ["correct", true], ["created_at", 2016-08-19 02:57:47 UTC], ["updated_at", 2016-08-19 02:57:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 2686], ["correct", false], ["created_at", 2016-08-19 02:57:47 UTC], ["updated_at", 2016-08-19 02:57:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eli"], ["question_id", 2686], ["correct", false], ["created_at", 2016-08-19 02:57:47 UTC], ["updated_at", 2016-08-19 02:57:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Natã"], ["question_id", 2686], ["correct", false], ["created_at", 2016-08-19 02:57:47 UTC], ["updated_at", 2016-08-19 02:57:47 UTC]]  (130.6ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual salmo possui 5 versículos exatamente iguais?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual salmo possui 5 versículos exatamente iguais?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual salmo possui 5 versículos exatamente iguais?"], ["created_at", 2016-08-19 02:57:47 UTC], ["updated_at", 2016-08-19 02:57:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "107"], ["question_id", 2687], ["correct", true], ["created_at", 2016-08-19 02:57:47 UTC], ["updated_at", 2016-08-19 02:57:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "119"], ["question_id", 2687], ["correct", false], ["created_at", 2016-08-19 02:57:47 UTC], ["updated_at", 2016-08-19 02:57:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "81"], ["question_id", 2687], ["correct", false], ["created_at", 2016-08-19 02:57:47 UTC], ["updated_at", 2016-08-19 02:57:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "150"], ["question_id", 2687], ["correct", false], ["created_at", 2016-08-19 02:57:47 UTC], ["updated_at", 2016-08-19 02:57:47 UTC]]  (139.6ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual servo de Deus teve os seus filhos mortos por um tufão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual servo de Deus teve os seus filhos mortos por um tufão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual servo de Deus teve os seus filhos mortos por um tufão?"], ["created_at", 2016-08-19 02:57:47 UTC], ["updated_at", 2016-08-19 02:57:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jó"], ["question_id", 2688], ["correct", true], ["created_at", 2016-08-19 02:57:47 UTC], ["updated_at", 2016-08-19 02:57:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ló"], ["question_id", 2688], ["correct", false], ["created_at", 2016-08-19 02:57:47 UTC], ["updated_at", 2016-08-19 02:57:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 2688], ["correct", false], ["created_at", 2016-08-19 02:57:47 UTC], ["updated_at", 2016-08-19 02:57:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 2688], ["correct", false], ["created_at", 2016-08-19 02:57:47 UTC], ["updated_at", 2016-08-19 02:57:47 UTC]]  (313.2ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual tio criou Ester como filha?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Qual tio criou Ester como filha?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Qual tio criou Ester como filha?"], ["created_at", 2016-08-19 02:57:48 UTC], ["updated_at", 2016-08-19 02:57:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mordecai"], ["question_id", 2689], ["correct", true], ["created_at", 2016-08-19 02:57:48 UTC], ["updated_at", 2016-08-19 02:57:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 2689], ["correct", false], ["created_at", 2016-08-19 02:57:48 UTC], ["updated_at", 2016-08-19 02:57:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Naamã"], ["question_id", 2689], ["correct", false], ["created_at", 2016-08-19 02:57:48 UTC], ["updated_at", 2016-08-19 02:57:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hamã"], ["question_id", 2689], ["correct", false], ["created_at", 2016-08-19 02:57:48 UTC], ["updated_at", 2016-08-19 02:57:48 UTC]]  (197.1ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando 3 mil homens amarraram Sansão, o que eles fizeram com ele?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando 3 mil homens amarraram Sansão, o que eles fizeram com ele?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando 3 mil homens amarraram Sansão, o que eles fizeram com ele?"], ["created_at", 2016-08-19 02:57:48 UTC], ["updated_at", 2016-08-19 02:57:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Leveram-no Para Os Filisteus"], ["question_id", 2690], ["correct", true], ["created_at", 2016-08-19 02:57:48 UTC], ["updated_at", 2016-08-19 02:57:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mataram-no"], ["question_id", 2690], ["correct", false], ["created_at", 2016-08-19 02:57:48 UTC], ["updated_at", 2016-08-19 02:57:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Colocaram-no Em Um Navio"], ["question_id", 2690], ["correct", false], ["created_at", 2016-08-19 02:57:48 UTC], ["updated_at", 2016-08-19 02:57:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Despiram-no das Suas Vestes"], ["question_id", 2690], ["correct", false], ["created_at", 2016-08-19 02:57:48 UTC], ["updated_at", 2016-08-19 02:57:48 UTC]]  (163.5ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando a Babilônia era governada pelo rei Belsazar, qual povo estava prestes a conquistar a Babilônia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando a Babilônia era governada pelo rei Belsazar, qual povo estava prestes a conquistar a Babilônia?"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando a Babilônia era governada pelo rei Belsazar, qual povo estava prestes a conquistar a Babilônia?"], ["created_at", 2016-08-19 02:57:48 UTC], ["updated_at", 2016-08-19 02:57:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Persa"], ["question_id", 2691], ["correct", true], ["created_at", 2016-08-19 02:57:48 UTC], ["updated_at", 2016-08-19 02:57:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Israelita"], ["question_id", 2691], ["correct", false], ["created_at", 2016-08-19 02:57:48 UTC], ["updated_at", 2016-08-19 02:57:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cananeu"], ["question_id", 2691], ["correct", false], ["created_at", 2016-08-19 02:57:48 UTC], ["updated_at", 2016-08-19 02:57:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Grego"], ["question_id", 2691], ["correct", false], ["created_at", 2016-08-19 02:57:48 UTC], ["updated_at", 2016-08-19 02:57:48 UTC]]  (205.1ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando a cabeça de Sansão foi raspada, por que ele não conseguiu vencer os filisteus como nas 3 vezes anteriores?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando a cabeça de Sansão foi raspada, por que ele não conseguiu vencer os filisteus como nas 3 vezes anteriores?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando a cabeça de Sansão foi raspada, por que ele não conseguiu vencer os filisteus como nas 3 vezes anteriores?"], ["created_at", 2016-08-19 02:57:48 UTC], ["updated_at", 2016-08-19 02:57:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque O Senhor Tinha Se Retirado Dele"], ["question_id", 2692], ["correct", true], ["created_at", 2016-08-19 02:57:48 UTC], ["updated_at", 2016-08-19 02:57:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Os Filisteus Tinham Mais Forças do Que Ele"], ["question_id", 2692], ["correct", false], ["created_at", 2016-08-19 02:57:48 UTC], ["updated_at", 2016-08-19 02:57:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Ele Estava Emocionalmente Abalado"], ["question_id", 2692], ["correct", false], ["created_at", 2016-08-19 02:57:48 UTC], ["updated_at", 2016-08-19 02:57:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Porque Ele Havia Sido Cegado"], ["question_id", 2692], ["correct", false], ["created_at", 2016-08-19 02:57:48 UTC], ["updated_at", 2016-08-19 02:57:48 UTC]]  (164.5ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando a cruel rainha Jezabel morreu ela foi:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando a cruel rainha Jezabel morreu ela foi:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando a cruel rainha Jezabel morreu ela foi:"], ["created_at", 2016-08-19 02:57:48 UTC], ["updated_at", 2016-08-19 02:57:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Devorada Pelos Cachorros"], ["question_id", 2693], ["correct", true], ["created_at", 2016-08-19 02:57:48 UTC], ["updated_at", 2016-08-19 02:57:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Enterrada Em Uma Fosse de Lama"], ["question_id", 2693], ["correct", false], ["created_at", 2016-08-19 02:57:48 UTC], ["updated_at", 2016-08-19 02:57:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pisada Pelos Cavalos dos Inimigos"], ["question_id", 2693], ["correct", false], ["created_at", 2016-08-19 02:57:48 UTC], ["updated_at", 2016-08-19 02:57:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Queimada e Suas Cinzas Jogadas Aos Porcos"], ["question_id", 2693], ["correct", false], ["created_at", 2016-08-19 02:57:48 UTC], ["updated_at", 2016-08-19 02:57:48 UTC]]  (163.5ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando a mulher pecadora derramou lágrimas sobre os pés de Jesus, com o que ela secou seus pés?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando a mulher pecadora derramou lágrimas sobre os pés de Jesus, com o que ela secou seus pés?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando a mulher pecadora derramou lágrimas sobre os pés de Jesus, com o que ela secou seus pés?"], ["created_at", 2016-08-19 02:57:49 UTC], ["updated_at", 2016-08-19 02:57:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Cabelos"], ["question_id", 2694], ["correct", true], ["created_at", 2016-08-19 02:57:49 UTC], ["updated_at", 2016-08-19 02:57:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Toalha"], ["question_id", 2694], ["correct", false], ["created_at", 2016-08-19 02:57:49 UTC], ["updated_at", 2016-08-19 02:57:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Próprio Vestido"], ["question_id", 2694], ["correct", false], ["created_at", 2016-08-19 02:57:49 UTC], ["updated_at", 2016-08-19 02:57:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Farinha"], ["question_id", 2694], ["correct", false], ["created_at", 2016-08-19 02:57:49 UTC], ["updated_at", 2016-08-19 02:57:49 UTC]]  (138.7ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando a torre de Babel estava sendo construída, o que Deus fez às pessoas que a estavam construindo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando a torre de Babel estava sendo construída, o que Deus fez às pessoas que a estavam construindo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando a torre de Babel estava sendo construída, o que Deus fez às pessoas que a estavam construindo?"], ["created_at", 2016-08-19 02:57:49 UTC], ["updated_at", 2016-08-19 02:57:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Confundiu Sua Linguagem"], ["question_id", 2695], ["correct", true], ["created_at", 2016-08-19 02:57:49 UTC], ["updated_at", 2016-08-19 02:57:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Destruiu A Torre Com Fogo"], ["question_id", 2695], ["correct", false], ["created_at", 2016-08-19 02:57:49 UTC], ["updated_at", 2016-08-19 02:57:49 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deixou-as Cegas"], ["question_id", 2695], ["correct", false], ["created_at", 2016-08-19 02:57:49 UTC], ["updated_at", 2016-08-19 02:57:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Transformou As Pessoas Em Estátuas de Sal"], ["question_id", 2695], ["correct", false], ["created_at", 2016-08-19 02:57:49 UTC], ["updated_at", 2016-08-19 02:57:49 UTC]]  (129.6ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando as obras do Templo foram interrompidas por causa da oposição, quem decretou que o trabalho fosse retomado?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando as obras do Templo foram interrompidas por causa da oposição, quem decretou que o trabalho fosse retomado?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando as obras do Templo foram interrompidas por causa da oposição, quem decretou que o trabalho fosse retomado?"], ["created_at", 2016-08-19 02:57:49 UTC], ["updated_at", 2016-08-19 02:57:49 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 2696], ["correct", true], ["created_at", 2016-08-19 02:57:49 UTC], ["updated_at", 2016-08-19 02:57:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ciro"], ["question_id", 2696], ["correct", false], ["created_at", 2016-08-19 02:57:49 UTC], ["updated_at", 2016-08-19 02:57:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Xerxes"], ["question_id", 2696], ["correct", false], ["created_at", 2016-08-19 02:57:49 UTC], ["updated_at", 2016-08-19 02:57:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Artaxerxes"], ["question_id", 2696], ["correct", false], ["created_at", 2016-08-19 02:57:49 UTC], ["updated_at", 2016-08-19 02:57:49 UTC]]  (146.4ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Dario tornou-se rei da Babilônia, para qual posição Daniel foi nomeado?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Dario tornou-se rei da Babilônia, para qual posição Daniel foi nomeado?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Dario tornou-se rei da Babilônia, para qual posição Daniel foi nomeado?"], ["created_at", 2016-08-19 02:57:49 UTC], ["updated_at", 2016-08-19 02:57:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Presidente"], ["question_id", 2697], ["correct", true], ["created_at", 2016-08-19 02:57:49 UTC], ["updated_at", 2016-08-19 02:57:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Profeta"], ["question_id", 2697], ["correct", false], ["created_at", 2016-08-19 02:57:49 UTC], ["updated_at", 2016-08-19 02:57:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Governador"], ["question_id", 2697], ["correct", false], ["created_at", 2016-08-19 02:57:49 UTC], ["updated_at", 2016-08-19 02:57:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mordomo"], ["question_id", 2697], ["correct", false], ["created_at", 2016-08-19 02:57:49 UTC], ["updated_at", 2016-08-19 02:57:49 UTC]]  (138.9ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Davi desafiou Golias com sua funda e algumas pedras, o que Davi levava consigo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Davi desafiou Golias com sua funda e algumas pedras, o que Davi levava consigo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Davi desafiou Golias com sua funda e algumas pedras, o que Davi levava consigo?"], ["created_at", 2016-08-19 02:57:49 UTC], ["updated_at", 2016-08-19 02:57:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Cajado"], ["question_id", 2698], ["correct", true], ["created_at", 2016-08-19 02:57:49 UTC], ["updated_at", 2016-08-19 02:57:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Lança"], ["question_id", 2698], ["correct", false], ["created_at", 2016-08-19 02:57:49 UTC], ["updated_at", 2016-08-19 02:57:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Escudo"], ["question_id", 2698], ["correct", false], ["created_at", 2016-08-19 02:57:49 UTC], ["updated_at", 2016-08-19 02:57:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Capacete"], ["question_id", 2698], ["correct", false], ["created_at", 2016-08-19 02:57:49 UTC], ["updated_at", 2016-08-19 02:57:49 UTC]]  (139.7ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Davi matou o gigante Golias, Davi era:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Davi matou o gigante Golias, Davi era:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Davi matou o gigante Golias, Davi era:"], ["created_at", 2016-08-19 02:57:49 UTC], ["updated_at", 2016-08-19 02:57:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adolescente"], ["question_id", 2699], ["correct", true], ["created_at", 2016-08-19 02:57:49 UTC], ["updated_at", 2016-08-19 02:57:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Criança"], ["question_id", 2699], ["correct", false], ["created_at", 2016-08-19 02:57:49 UTC], ["updated_at", 2016-08-19 02:57:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adulto"], ["question_id", 2699], ["correct", false], ["created_at", 2016-08-19 02:57:49 UTC], ["updated_at", 2016-08-19 02:57:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Idoso"], ["question_id", 2699], ["correct", false], ["created_at", 2016-08-19 02:57:49 UTC], ["updated_at", 2016-08-19 02:57:49 UTC]]  (138.6ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Davi viu Bate-Seba do teto de sua casa, o que ela estava fazendo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Davi viu Bate-Seba do teto de sua casa, o que ela estava fazendo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Davi viu Bate-Seba do teto de sua casa, o que ela estava fazendo?"], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Banhando-se"], ["question_id", 2700], ["correct", true], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cozinhando"], ["question_id", 2700], ["correct", false], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Plantando"], ["question_id", 2700], ["correct", false], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cantando"], ["question_id", 2700], ["correct", false], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]]  (130.1ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Deus apareceu para Salomão em sonho e permitiu que ele pedisse o que quisesse, o que Salomão pediu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Deus apareceu para Salomão em sonho e permitiu que ele pedisse o que quisesse, o que Salomão pediu?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Deus apareceu para Salomão em sonho e permitiu que ele pedisse o que quisesse, o que Salomão pediu?"], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sabedoria"], ["question_id", 2701], ["correct", true], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Riqueza"], ["question_id", 2701], ["correct", false], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filhos"], ["question_id", 2701], ["correct", false], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escravos"], ["question_id", 2701], ["correct", false], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]]  (130.3ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Elias foi levado para os Céus por Deus ainda vivo, o que Elias era:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Elias foi levado para os Céus por Deus ainda vivo, o que Elias era:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Elias foi levado para os Céus por Deus ainda vivo, o que Elias era:"], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Profeta de Deus"], ["question_id", 2702], ["correct", true], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Rei de Israel"], ["question_id", 2702], ["correct", false], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Juiz de Israel"], ["question_id", 2702], ["correct", false], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Servo Bom e Fiel"], ["question_id", 2702], ["correct", false], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]]  (148.2ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Elias, o profeta, começou a orar ao lado de um lago, o que começou a flutuar?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Elias, o profeta, começou a orar ao lado de um lago, o que começou a flutuar?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Elias, o profeta, começou a orar ao lado de um lago, o que começou a flutuar?"], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Ferro de Um Machado"], ["question_id", 2703], ["correct", true], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Martelo"], ["question_id", 2703], ["correct", false], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Espada"], ["question_id", 2703], ["correct", false], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Lança"], ["question_id", 2703], ["correct", false], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]]  (155.1ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Ezequias contraiu uma doença fatal, quantos anos de vida Deus lhe acrescentou?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Ezequias contraiu uma doença fatal, quantos anos de vida Deus lhe acrescentou?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Ezequias contraiu uma doença fatal, quantos anos de vida Deus lhe acrescentou?"], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "15"], ["question_id", 2704], ["correct", true], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 2704], ["correct", false], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "35"], ["question_id", 2704], ["correct", false], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "81"], ["question_id", 2704], ["correct", false], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]]  (129.8ms) commit transaction Quizzes::Question Exists (1.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando foi feita a primeira tradução completa da Bíblia para o inglês por Wycliffe?\n1,"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando foi feita a primeira tradução completa da Bíblia para o inglês por Wycliffe?\n1,"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando foi feita a primeira tradução completa da Bíblia para o inglês por Wycliffe?\n1,"], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1380"], ["question_id", 2705], ["correct", true], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1420"], ["question_id", 2705], ["correct", false], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1284"], ["question_id", 2705], ["correct", false], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1362"], ["question_id", 2705], ["correct", false], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]]  (129.6ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jeoaquim reinava em Judá, quem atacou Jerusalém?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jeoaquim reinava em Judá, quem atacou Jerusalém?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Jeoaquim reinava em Judá, quem atacou Jerusalém?"], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 2706], ["correct", true], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belzasar"], ["question_id", 2706], ["correct", false], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiro"], ["question_id", 2706], ["correct", false], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 2706], ["correct", false], ["created_at", 2016-08-19 02:57:50 UTC], ["updated_at", 2016-08-19 02:57:50 UTC]]  (139.6ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus chegou a Betfagé, enviou seus discípulos para a aldeia mais próxima para pedir emprestado um:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus chegou a Betfagé, enviou seus discípulos para a aldeia mais próxima para pedir emprestado um:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Jesus chegou a Betfagé, enviou seus discípulos para a aldeia mais próxima para pedir emprestado um:"], ["created_at", 2016-08-19 02:57:51 UTC], ["updated_at", 2016-08-19 02:57:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jumento"], ["question_id", 2707], ["correct", true], ["created_at", 2016-08-19 02:57:51 UTC], ["updated_at", 2016-08-19 02:57:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cabrito"], ["question_id", 2707], ["correct", false], ["created_at", 2016-08-19 02:57:51 UTC], ["updated_at", 2016-08-19 02:57:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Camelo"], ["question_id", 2707], ["correct", false], ["created_at", 2016-08-19 02:57:51 UTC], ["updated_at", 2016-08-19 02:57:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carneiro"], ["question_id", 2707], ["correct", false], ["created_at", 2016-08-19 02:57:51 UTC], ["updated_at", 2016-08-19 02:57:51 UTC]]  (148.8ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus e seus discípulos chegaram ao Jardim do Getsêmani, o que Jesus pediu aos seus discípulos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus e seus discípulos chegaram ao Jardim do Getsêmani, o que Jesus pediu aos seus discípulos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Jesus e seus discípulos chegaram ao Jardim do Getsêmani, o que Jesus pediu aos seus discípulos?"], ["created_at", 2016-08-19 02:57:51 UTC], ["updated_at", 2016-08-19 02:57:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Sentassem"], ["question_id", 2708], ["correct", true], ["created_at", 2016-08-19 02:57:51 UTC], ["updated_at", 2016-08-19 02:57:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Orassem"], ["question_id", 2708], ["correct", false], ["created_at", 2016-08-19 02:57:51 UTC], ["updated_at", 2016-08-19 02:57:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Dormissem"], ["question_id", 2708], ["correct", false], ["created_at", 2016-08-19 02:57:51 UTC], ["updated_at", 2016-08-19 02:57:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Que Jejuassem"], ["question_id", 2708], ["correct", false], ["created_at", 2016-08-19 02:57:51 UTC], ["updated_at", 2016-08-19 02:57:51 UTC]]  (155.6ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus estava indo para o Gólgota, quem carregou um trecho a cruz de Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus estava indo para o Gólgota, quem carregou um trecho a cruz de Jesus?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Jesus estava indo para o Gólgota, quem carregou um trecho a cruz de Jesus?"], ["created_at", 2016-08-19 02:57:51 UTC], ["updated_at", 2016-08-19 02:57:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Simão de Cirene"], ["question_id", 2709], ["correct", true], ["created_at", 2016-08-19 02:57:51 UTC], ["updated_at", 2016-08-19 02:57:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José de Arimatéia"], ["question_id", 2709], ["correct", false], ["created_at", 2016-08-19 02:57:51 UTC], ["updated_at", 2016-08-19 02:57:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zaqueu"], ["question_id", 2709], ["correct", false], ["created_at", 2016-08-19 02:57:51 UTC], ["updated_at", 2016-08-19 02:57:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nicodemos"], ["question_id", 2709], ["correct", false], ["created_at", 2016-08-19 02:57:51 UTC], ["updated_at", 2016-08-19 02:57:51 UTC]]  (173.9ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus estava jantando na casa de um dos fariseus, o que uma mulher fez por Ele?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus estava jantando na casa de um dos fariseus, o que uma mulher fez por Ele?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Jesus estava jantando na casa de um dos fariseus, o que uma mulher fez por Ele?"], ["created_at", 2016-08-19 02:57:51 UTC], ["updated_at", 2016-08-19 02:57:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ungiu Seus Pés"], ["question_id", 2710], ["correct", true], ["created_at", 2016-08-19 02:57:51 UTC], ["updated_at", 2016-08-19 02:57:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Serviu-lhe O Jantar"], ["question_id", 2710], ["correct", false], ["created_at", 2016-08-19 02:57:51 UTC], ["updated_at", 2016-08-19 02:57:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lavou Sua Túnica"], ["question_id", 2710], ["correct", false], ["created_at", 2016-08-19 02:57:51 UTC], ["updated_at", 2016-08-19 02:57:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Orou Com Ele"], ["question_id", 2710], ["correct", false], ["created_at", 2016-08-19 02:57:51 UTC], ["updated_at", 2016-08-19 02:57:51 UTC]]  (263.7ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus estava no Jardim do Getsêmani, o que lhe ocorreu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus estava no Jardim do Getsêmani, o que lhe ocorreu?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Jesus estava no Jardim do Getsêmani, o que lhe ocorreu?"], ["created_at", 2016-08-19 02:57:51 UTC], ["updated_at", 2016-08-19 02:57:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Preso"], ["question_id", 2711], ["correct", true], ["created_at", 2016-08-19 02:57:51 UTC], ["updated_at", 2016-08-19 02:57:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Acusado de Adultério"], ["question_id", 2711], ["correct", false], ["created_at", 2016-08-19 02:57:51 UTC], ["updated_at", 2016-08-19 02:57:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Apedrejado"], ["question_id", 2711], ["correct", false], ["created_at", 2016-08-19 02:57:51 UTC], ["updated_at", 2016-08-19 02:57:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foi Esfaqueado"], ["question_id", 2711], ["correct", false], ["created_at", 2016-08-19 02:57:51 UTC], ["updated_at", 2016-08-19 02:57:51 UTC]]  (139.6ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus expulsou os demônios de um homem que vivia no cemitério, para onde a legião foi?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus expulsou os demônios de um homem que vivia no cemitério, para onde a legião foi?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Jesus expulsou os demônios de um homem que vivia no cemitério, para onde a legião foi?"], ["created_at", 2016-08-19 02:57:52 UTC], ["updated_at", 2016-08-19 02:57:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Uma Manada de Porcos"], ["question_id", 2712], ["correct", true], ["created_at", 2016-08-19 02:57:52 UTC], ["updated_at", 2016-08-19 02:57:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Uma Alcatéia de Lobos"], ["question_id", 2712], ["correct", false], ["created_at", 2016-08-19 02:57:52 UTC], ["updated_at", 2016-08-19 02:57:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Um Bando de Bodes e Cabritos"], ["question_id", 2712], ["correct", false], ["created_at", 2016-08-19 02:57:52 UTC], ["updated_at", 2016-08-19 02:57:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Para Algumas Ovelhas Que Pastavam Ao Redor"], ["question_id", 2712], ["correct", false], ["created_at", 2016-08-19 02:57:52 UTC], ["updated_at", 2016-08-19 02:57:52 UTC]]  (139.3ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus foi preso, o que Pedro fez:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus foi preso, o que Pedro fez:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Jesus foi preso, o que Pedro fez:"], ["created_at", 2016-08-19 02:57:52 UTC], ["updated_at", 2016-08-19 02:57:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cortou A Orelha de Um Homem"], ["question_id", 2713], ["correct", true], ["created_at", 2016-08-19 02:57:52 UTC], ["updated_at", 2016-08-19 02:57:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Negou Jesus 3 Vezes"], ["question_id", 2713], ["correct", false], ["created_at", 2016-08-19 02:57:52 UTC], ["updated_at", 2016-08-19 02:57:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fugiu"], ["question_id", 2713], ["correct", false], ["created_at", 2016-08-19 02:57:52 UTC], ["updated_at", 2016-08-19 02:57:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matou Um dos Soldados Romanos"], ["question_id", 2713], ["correct", false], ["created_at", 2016-08-19 02:57:52 UTC], ["updated_at", 2016-08-19 02:57:52 UTC]]  (213.5ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus foi ungido com o bálsamo, qual dos discípulos se indignou por esse ato?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus foi ungido com o bálsamo, qual dos discípulos se indignou por esse ato?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Jesus foi ungido com o bálsamo, qual dos discípulos se indignou por esse ato?"], ["created_at", 2016-08-19 02:57:52 UTC], ["updated_at", 2016-08-19 02:57:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas Iscariotes"], ["question_id", 2714], ["correct", true], ["created_at", 2016-08-19 02:57:52 UTC], ["updated_at", 2016-08-19 02:57:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 2714], ["correct", false], ["created_at", 2016-08-19 02:57:52 UTC], ["updated_at", 2016-08-19 02:57:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 2714], ["correct", false], ["created_at", 2016-08-19 02:57:52 UTC], ["updated_at", 2016-08-19 02:57:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tomé"], ["question_id", 2714], ["correct", false], ["created_at", 2016-08-19 02:57:52 UTC], ["updated_at", 2016-08-19 02:57:52 UTC]]  (272.9ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus lavou os pés dos discípulos, o que Ele pretendia ensinar aos mesmos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus lavou os pés dos discípulos, o que Ele pretendia ensinar aos mesmos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Jesus lavou os pés dos discípulos, o que Ele pretendia ensinar aos mesmos?"], ["created_at", 2016-08-19 02:57:52 UTC], ["updated_at", 2016-08-19 02:57:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Servir Ao Próximo"], ["question_id", 2715], ["correct", true], ["created_at", 2016-08-19 02:57:52 UTC], ["updated_at", 2016-08-19 02:57:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Importância da Higiene Pessoal"], ["question_id", 2715], ["correct", false], ["created_at", 2016-08-19 02:57:52 UTC], ["updated_at", 2016-08-19 02:57:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Necessidade Em Usar Calçados"], ["question_id", 2715], ["correct", false], ["created_at", 2016-08-19 02:57:52 UTC], ["updated_at", 2016-08-19 02:57:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Novo Batismo, Porém Por Aspersão"], ["question_id", 2715], ["correct", false], ["created_at", 2016-08-19 02:57:52 UTC], ["updated_at", 2016-08-19 02:57:52 UTC]]  (141.2ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus se aproximava de Jerusalém montado no jumento, o que os fariseus pediram a Ele fazer com a multidão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus se aproximava de Jerusalém montado no jumento, o que os fariseus pediram a Ele fazer com a multidão?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Jesus se aproximava de Jerusalém montado no jumento, o que os fariseus pediram a Ele fazer com a multidão?"], ["created_at", 2016-08-19 02:57:52 UTC], ["updated_at", 2016-08-19 02:57:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Repreendê-la Porque O Estavam Saudando"], ["question_id", 2716], ["correct", true], ["created_at", 2016-08-19 02:57:52 UTC], ["updated_at", 2016-08-19 02:57:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acenar Para Ela"], ["question_id", 2716], ["correct", false], ["created_at", 2016-08-19 02:57:52 UTC], ["updated_at", 2016-08-19 02:57:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Falar Com Ela"], ["question_id", 2716], ["correct", false], ["created_at", 2016-08-19 02:57:52 UTC], ["updated_at", 2016-08-19 02:57:52 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ordenar Que Retornassem Paras Suas Casas"], ["question_id", 2716], ["correct", false], ["created_at", 2016-08-19 02:57:52 UTC], ["updated_at", 2016-08-19 02:57:52 UTC]]  (148.4ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus se aproximava de Jerusalém montado no jumento, quem pediu a Ele que repreendesse a multidão que O saudava?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus se aproximava de Jerusalém montado no jumento, quem pediu a Ele que repreendesse a multidão que O saudava?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Jesus se aproximava de Jerusalém montado no jumento, quem pediu a Ele que repreendesse a multidão que O saudava?"], ["created_at", 2016-08-19 02:57:52 UTC], ["updated_at", 2016-08-19 02:57:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Fariseus"], ["question_id", 2717], ["correct", true], ["created_at", 2016-08-19 02:57:52 UTC], ["updated_at", 2016-08-19 02:57:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Escribas"], ["question_id", 2717], ["correct", false], ["created_at", 2016-08-19 02:57:52 UTC], ["updated_at", 2016-08-19 02:57:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Levitas"], ["question_id", 2717], ["correct", false], ["created_at", 2016-08-19 02:57:52 UTC], ["updated_at", 2016-08-19 02:57:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Soldados Romanos"], ["question_id", 2717], ["correct", false], ["created_at", 2016-08-19 02:57:52 UTC], ["updated_at", 2016-08-19 02:57:52 UTC]]  (188.1ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus transformou água em vinho, qual evento estava sendo celebrado?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jesus transformou água em vinho, qual evento estava sendo celebrado?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Jesus transformou água em vinho, qual evento estava sendo celebrado?"], ["created_at", 2016-08-19 02:57:53 UTC], ["updated_at", 2016-08-19 02:57:53 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Casamento"], ["question_id", 2718], ["correct", true], ["created_at", 2016-08-19 02:57:53 UTC], ["updated_at", 2016-08-19 02:57:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Circuncisão"], ["question_id", 2718], ["correct", false], ["created_at", 2016-08-19 02:57:53 UTC], ["updated_at", 2016-08-19 02:57:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aniversário"], ["question_id", 2718], ["correct", false], ["created_at", 2016-08-19 02:57:53 UTC], ["updated_at", 2016-08-19 02:57:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noivado"], ["question_id", 2718], ["correct", false], ["created_at", 2016-08-19 02:57:53 UTC], ["updated_at", 2016-08-19 02:57:53 UTC]]  (180.2ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jonas foi jogado no mar, Deus o salvou de se afogar enviando:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Jonas foi jogado no mar, Deus o salvou de se afogar enviando:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Jonas foi jogado no mar, Deus o salvou de se afogar enviando:"], ["created_at", 2016-08-19 02:57:53 UTC], ["updated_at", 2016-08-19 02:57:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Grande Peixe"], ["question_id", 2719], ["correct", true], ["created_at", 2016-08-19 02:57:53 UTC], ["updated_at", 2016-08-19 02:57:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Pescador"], ["question_id", 2719], ["correct", false], ["created_at", 2016-08-19 02:57:53 UTC], ["updated_at", 2016-08-19 02:57:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Bóia Salva-vida"], ["question_id", 2719], ["correct", false], ["created_at", 2016-08-19 02:57:53 UTC], ["updated_at", 2016-08-19 02:57:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Bote"], ["question_id", 2719], ["correct", false], ["created_at", 2016-08-19 02:57:53 UTC], ["updated_at", 2016-08-19 02:57:53 UTC]]  (179.9ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando José do Egito morreu, seu corpo foi:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando José do Egito morreu, seu corpo foi:"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando José do Egito morreu, seu corpo foi:"], ["created_at", 2016-08-19 02:57:53 UTC], ["updated_at", 2016-08-19 02:57:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Embalsamado"], ["question_id", 2720], ["correct", true], ["created_at", 2016-08-19 02:57:53 UTC], ["updated_at", 2016-08-19 02:57:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Queimado"], ["question_id", 2720], ["correct", false], ["created_at", 2016-08-19 02:57:53 UTC], ["updated_at", 2016-08-19 02:57:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Transportado Para O Mar Morto"], ["question_id", 2720], ["correct", false], ["created_at", 2016-08-19 02:57:53 UTC], ["updated_at", 2016-08-19 02:57:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jogado Nas Águas do Rio Nilo"], ["question_id", 2720], ["correct", false], ["created_at", 2016-08-19 02:57:53 UTC], ["updated_at", 2016-08-19 02:57:53 UTC]]  (205.0ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando José foi vendido como escravo, quantas moedas de prata os irmãos de José receberam?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando José foi vendido como escravo, quantas moedas de prata os irmãos de José receberam?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando José foi vendido como escravo, quantas moedas de prata os irmãos de José receberam?"], ["created_at", 2016-08-19 02:57:53 UTC], ["updated_at", 2016-08-19 02:57:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "20"], ["question_id", 2721], ["correct", true], ["created_at", 2016-08-19 02:57:53 UTC], ["updated_at", 2016-08-19 02:57:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "40"], ["question_id", 2721], ["correct", false], ["created_at", 2016-08-19 02:57:53 UTC], ["updated_at", 2016-08-19 02:57:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "60"], ["question_id", 2721], ["correct", false], ["created_at", 2016-08-19 02:57:53 UTC], ["updated_at", 2016-08-19 02:57:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10"], ["question_id", 2721], ["correct", false], ["created_at", 2016-08-19 02:57:53 UTC], ["updated_at", 2016-08-19 02:57:53 UTC]]  (154.6ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Judas percebeu que Jesus havia sido condenado pelo Sinédrio, o que ele fez?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Judas percebeu que Jesus havia sido condenado pelo Sinédrio, o que ele fez?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Judas percebeu que Jesus havia sido condenado pelo Sinédrio, o que ele fez?"], ["created_at", 2016-08-19 02:57:53 UTC], ["updated_at", 2016-08-19 02:57:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Devolveu As 30 Moedas de Prata"], ["question_id", 2722], ["correct", true], ["created_at", 2016-08-19 02:57:53 UTC], ["updated_at", 2016-08-19 02:57:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Orou Por Perdão"], ["question_id", 2722], ["correct", false], ["created_at", 2016-08-19 02:57:53 UTC], ["updated_at", 2016-08-19 02:57:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deu As Moedas de Prata Aos Pobres"], ["question_id", 2722], ["correct", false], ["created_at", 2016-08-19 02:57:53 UTC], ["updated_at", 2016-08-19 02:57:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Suicidou-se"], ["question_id", 2722], ["correct", false], ["created_at", 2016-08-19 02:57:53 UTC], ["updated_at", 2016-08-19 02:57:53 UTC]]  (163.4ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Maria e José estavam procurando a Jesus quando Este tinha apenas 12 anos, onde finalmente o encontraram?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Maria e José estavam procurando a Jesus quando Este tinha apenas 12 anos, onde finalmente o encontraram?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Maria e José estavam procurando a Jesus quando Este tinha apenas 12 anos, onde finalmente o encontraram?"], ["created_at", 2016-08-19 02:57:54 UTC], ["updated_at", 2016-08-19 02:57:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Templo"], ["question_id", 2723], ["correct", true], ["created_at", 2016-08-19 02:57:54 UTC], ["updated_at", 2016-08-19 02:57:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "No Cemitério"], ["question_id", 2723], ["correct", false], ["created_at", 2016-08-19 02:57:54 UTC], ["updated_at", 2016-08-19 02:57:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Escola"], ["question_id", 2723], ["correct", false], ["created_at", 2016-08-19 02:57:54 UTC], ["updated_at", 2016-08-19 02:57:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Na Biblioteca da Cidade"], ["question_id", 2723], ["correct", false], ["created_at", 2016-08-19 02:57:54 UTC], ["updated_at", 2016-08-19 02:57:54 UTC]]  (147.9ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Maria foi visitar sua prima Isabel, quanto tempo ela ficou ausente?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Maria foi visitar sua prima Isabel, quanto tempo ela ficou ausente?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Maria foi visitar sua prima Isabel, quanto tempo ela ficou ausente?"], ["created_at", 2016-08-19 02:57:54 UTC], ["updated_at", 2016-08-19 02:57:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Meses"], ["question_id", 2724], ["correct", true], ["created_at", 2016-08-19 02:57:54 UTC], ["updated_at", 2016-08-19 02:57:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Dias"], ["question_id", 2724], ["correct", false], ["created_at", 2016-08-19 02:57:54 UTC], ["updated_at", 2016-08-19 02:57:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Semanas"], ["question_id", 2724], ["correct", false], ["created_at", 2016-08-19 02:57:54 UTC], ["updated_at", 2016-08-19 02:57:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Anos"], ["question_id", 2724], ["correct", false], ["created_at", 2016-08-19 02:57:54 UTC], ["updated_at", 2016-08-19 02:57:54 UTC]]  (147.4ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Moisés desceu do Monte Sinai pela 1ª vez com as tábuas da lei de Deus, o que Moisés viu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Moisés desceu do Monte Sinai pela 1ª vez com as tábuas da lei de Deus, o que Moisés viu?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Moisés desceu do Monte Sinai pela 1ª vez com as tábuas da lei de Deus, o que Moisés viu?"], ["created_at", 2016-08-19 02:57:54 UTC], ["updated_at", 2016-08-19 02:57:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Povo Estava Adorando Um Ídolo"], ["question_id", 2725], ["correct", true], ["created_at", 2016-08-19 02:57:54 UTC], ["updated_at", 2016-08-19 02:57:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Povo Estava Dançando A Dança da Chuva"], ["question_id", 2725], ["correct", false], ["created_at", 2016-08-19 02:57:54 UTC], ["updated_at", 2016-08-19 02:57:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Povo Havia Fugido"], ["question_id", 2725], ["correct", false], ["created_at", 2016-08-19 02:57:54 UTC], ["updated_at", 2016-08-19 02:57:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Povo Estava Lutando Entre Si"], ["question_id", 2725], ["correct", false], ["created_at", 2016-08-19 02:57:54 UTC], ["updated_at", 2016-08-19 02:57:54 UTC]]  (146.6ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Moisés era bebê, ele foi colocado por sua mãe em um cesto, e deixado no:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Moisés era bebê, ele foi colocado por sua mãe em um cesto, e deixado no:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Moisés era bebê, ele foi colocado por sua mãe em um cesto, e deixado no:"], ["created_at", 2016-08-19 02:57:54 UTC], ["updated_at", 2016-08-19 02:57:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rio Nilo"], ["question_id", 2726], ["correct", true], ["created_at", 2016-08-19 02:57:54 UTC], ["updated_at", 2016-08-19 02:57:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mar Morto"], ["question_id", 2726], ["correct", false], ["created_at", 2016-08-19 02:57:54 UTC], ["updated_at", 2016-08-19 02:57:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mar Mediterrâneo"], ["question_id", 2726], ["correct", false], ["created_at", 2016-08-19 02:57:54 UTC], ["updated_at", 2016-08-19 02:57:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deserto do Saara"], ["question_id", 2726], ["correct", false], ["created_at", 2016-08-19 02:57:54 UTC], ["updated_at", 2016-08-19 02:57:54 UTC]]  (147.2ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Moisés viu um egípcio surrando um hebreu, o que Moisés fez?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Moisés viu um egípcio surrando um hebreu, o que Moisés fez?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Moisés viu um egípcio surrando um hebreu, o que Moisés fez?"], ["created_at", 2016-08-19 02:57:54 UTC], ["updated_at", 2016-08-19 02:57:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matou O Egípcio"], ["question_id", 2727], ["correct", true], ["created_at", 2016-08-19 02:57:54 UTC], ["updated_at", 2016-08-19 02:57:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Buscou Ajuda"], ["question_id", 2727], ["correct", false], ["created_at", 2016-08-19 02:57:54 UTC], ["updated_at", 2016-08-19 02:57:54 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ajudou O Egípcio"], ["question_id", 2727], ["correct", false], ["created_at", 2016-08-19 02:57:54 UTC], ["updated_at", 2016-08-19 02:57:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Orou A Deus Por Ajuda"], ["question_id", 2727], ["correct", false], ["created_at", 2016-08-19 02:57:54 UTC], ["updated_at", 2016-08-19 02:57:54 UTC]]  (146.6ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Noé enviou da arca uma pomba, o ramo de qual árvore ela trouxe em seu bico?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Noé enviou da arca uma pomba, o ramo de qual árvore ela trouxe em seu bico?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Noé enviou da arca uma pomba, o ramo de qual árvore ela trouxe em seu bico?"], ["created_at", 2016-08-19 02:57:54 UTC], ["updated_at", 2016-08-19 02:57:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oliveira"], ["question_id", 2728], ["correct", true], ["created_at", 2016-08-19 02:57:54 UTC], ["updated_at", 2016-08-19 02:57:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pessegueiro"], ["question_id", 2728], ["correct", false], ["created_at", 2016-08-19 02:57:54 UTC], ["updated_at", 2016-08-19 02:57:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Figueira"], ["question_id", 2728], ["correct", false], ["created_at", 2016-08-19 02:57:54 UTC], ["updated_at", 2016-08-19 02:57:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tamareira"], ["question_id", 2728], ["correct", false], ["created_at", 2016-08-19 02:57:54 UTC], ["updated_at", 2016-08-19 02:57:54 UTC]]  (146.6ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Noé enviou uma pomba da arca, o que ela trouxe em seu bico?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Noé enviou uma pomba da arca, o que ela trouxe em seu bico?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Noé enviou uma pomba da arca, o que ela trouxe em seu bico?"], ["created_at", 2016-08-19 02:57:55 UTC], ["updated_at", 2016-08-19 02:57:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Ramo de Oliveira"], ["question_id", 2729], ["correct", true], ["created_at", 2016-08-19 02:57:55 UTC], ["updated_at", 2016-08-19 02:57:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Minhoca"], ["question_id", 2729], ["correct", false], ["created_at", 2016-08-19 02:57:55 UTC], ["updated_at", 2016-08-19 02:57:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Peixe"], ["question_id", 2729], ["correct", false], ["created_at", 2016-08-19 02:57:55 UTC], ["updated_at", 2016-08-19 02:57:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Casca de Árvore"], ["question_id", 2729], ["correct", false], ["created_at", 2016-08-19 02:57:55 UTC], ["updated_at", 2016-08-19 02:57:55 UTC]]  (204.6ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o anjo da morte passou pelo Egito, o sangue de qual animal foi colocado nos batentes da porta?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o anjo da morte passou pelo Egito, o sangue de qual animal foi colocado nos batentes da porta?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando o anjo da morte passou pelo Egito, o sangue de qual animal foi colocado nos batentes da porta?"], ["created_at", 2016-08-19 02:57:55 UTC], ["updated_at", 2016-08-19 02:57:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cordeiro"], ["question_id", 2730], ["correct", true], ["created_at", 2016-08-19 02:57:55 UTC], ["updated_at", 2016-08-19 02:57:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Touro"], ["question_id", 2730], ["correct", false], ["created_at", 2016-08-19 02:57:55 UTC], ["updated_at", 2016-08-19 02:57:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pomba"], ["question_id", 2730], ["correct", false], ["created_at", 2016-08-19 02:57:55 UTC], ["updated_at", 2016-08-19 02:57:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Corvo"], ["question_id", 2730], ["correct", false], ["created_at", 2016-08-19 02:57:55 UTC], ["updated_at", 2016-08-19 02:57:55 UTC]]  (155.7ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o Espírito do Senhor se apossou de Sansão, o que aconteceu com as cordas que o amarravam?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o Espírito do Senhor se apossou de Sansão, o que aconteceu com as cordas que o amarravam?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando o Espírito do Senhor se apossou de Sansão, o que aconteceu com as cordas que o amarravam?"], ["created_at", 2016-08-19 02:57:55 UTC], ["updated_at", 2016-08-19 02:57:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caíram de Suas Mãos"], ["question_id", 2731], ["correct", true], ["created_at", 2016-08-19 02:57:55 UTC], ["updated_at", 2016-08-19 02:57:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Derreteram"], ["question_id", 2731], ["correct", false], ["created_at", 2016-08-19 02:57:55 UTC], ["updated_at", 2016-08-19 02:57:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Foram Cortadas"], ["question_id", 2731], ["correct", false], ["created_at", 2016-08-19 02:57:55 UTC], ["updated_at", 2016-08-19 02:57:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Desapareceram"], ["question_id", 2731], ["correct", false], ["created_at", 2016-08-19 02:57:55 UTC], ["updated_at", 2016-08-19 02:57:55 UTC]]  (130.4ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o filho de Jeroboão adoeceu, quem ele mandou sua esposa procurar, em busca de respostas sobre a condição do menino?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o filho de Jeroboão adoeceu, quem ele mandou sua esposa procurar, em busca de respostas sobre a condição do menino?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando o filho de Jeroboão adoeceu, quem ele mandou sua esposa procurar, em busca de respostas sobre a condição do menino?"], ["created_at", 2016-08-19 02:57:55 UTC], ["updated_at", 2016-08-19 02:57:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aías"], ["question_id", 2732], ["correct", true], ["created_at", 2016-08-19 02:57:55 UTC], ["updated_at", 2016-08-19 02:57:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josias"], ["question_id", 2732], ["correct", false], ["created_at", 2016-08-19 02:57:55 UTC], ["updated_at", 2016-08-19 02:57:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bitia"], ["question_id", 2732], ["correct", false], ["created_at", 2016-08-19 02:57:55 UTC], ["updated_at", 2016-08-19 02:57:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Orias"], ["question_id", 2732], ["correct", false], ["created_at", 2016-08-19 02:57:55 UTC], ["updated_at", 2016-08-19 02:57:55 UTC]]  (130.1ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o jovem Daniel falou com o rei Nabucodonosor, quem ele disse que saberia interpretar os sonhos do rei?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o jovem Daniel falou com o rei Nabucodonosor, quem ele disse que saberia interpretar os sonhos do rei?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando o jovem Daniel falou com o rei Nabucodonosor, quem ele disse que saberia interpretar os sonhos do rei?"], ["created_at", 2016-08-19 02:57:55 UTC], ["updated_at", 2016-08-19 02:57:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Unicamente Deus"], ["question_id", 2733], ["correct", true], ["created_at", 2016-08-19 02:57:55 UTC], ["updated_at", 2016-08-19 02:57:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Anjos Maus"], ["question_id", 2733], ["correct", false], ["created_at", 2016-08-19 02:57:55 UTC], ["updated_at", 2016-08-19 02:57:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Anjos do Céu"], ["question_id", 2733], ["correct", false], ["created_at", 2016-08-19 02:57:55 UTC], ["updated_at", 2016-08-19 02:57:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Sacerdote do Templo"], ["question_id", 2733], ["correct", false], ["created_at", 2016-08-19 02:57:55 UTC], ["updated_at", 2016-08-19 02:57:55 UTC]]  (145.9ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o povo hebreu estava apostatado de Deus, que espécie de sacrifícios eram oferecidos ao deus Moloque?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o povo hebreu estava apostatado de Deus, que espécie de sacrifícios eram oferecidos ao deus Moloque?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando o povo hebreu estava apostatado de Deus, que espécie de sacrifícios eram oferecidos ao deus Moloque?"], ["created_at", 2016-08-19 02:57:55 UTC], ["updated_at", 2016-08-19 02:57:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Crianças"], ["question_id", 2734], ["correct", true], ["created_at", 2016-08-19 02:57:55 UTC], ["updated_at", 2016-08-19 02:57:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gestantes"], ["question_id", 2734], ["correct", false], ["created_at", 2016-08-19 02:57:55 UTC], ["updated_at", 2016-08-19 02:57:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escravos"], ["question_id", 2734], ["correct", false], ["created_at", 2016-08-19 02:57:55 UTC], ["updated_at", 2016-08-19 02:57:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Idosos"], ["question_id", 2734], ["correct", false], ["created_at", 2016-08-19 02:57:55 UTC], ["updated_at", 2016-08-19 02:57:55 UTC]]  (139.6ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o rei Belsazar estava dando uma festa no palácio real, o que aconteceu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o rei Belsazar estava dando uma festa no palácio real, o que aconteceu?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando o rei Belsazar estava dando uma festa no palácio real, o que aconteceu?"], ["created_at", 2016-08-19 02:57:56 UTC], ["updated_at", 2016-08-19 02:57:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Mão Sem Corpo Escreveu Na Parede"], ["question_id", 2735], ["correct", true], ["created_at", 2016-08-19 02:57:56 UTC], ["updated_at", 2016-08-19 02:57:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Pai Morreu"], ["question_id", 2735], ["correct", false], ["created_at", 2016-08-19 02:57:56 UTC], ["updated_at", 2016-08-19 02:57:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Família Real Foi Presa e Assassinada"], ["question_id", 2735], ["correct", false], ["created_at", 2016-08-19 02:57:56 UTC], ["updated_at", 2016-08-19 02:57:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Houve Um Terremoto Que Destruiu O Palácio"], ["question_id", 2735], ["correct", false], ["created_at", 2016-08-19 02:57:56 UTC], ["updated_at", 2016-08-19 02:57:56 UTC]]  (141.0ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o rei Belsazar viu uma mão sem corpo escrevendo na parede, o que estava ocorrendo no palácio real?"], ["LIMIT", 1]]  (0.2ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o rei Belsazar viu uma mão sem corpo escrevendo na parede, o que estava ocorrendo no palácio real?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando o rei Belsazar viu uma mão sem corpo escrevendo na parede, o que estava ocorrendo no palácio real?"], ["created_at", 2016-08-19 02:57:56 UTC], ["updated_at", 2016-08-19 02:57:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Festa"], ["question_id", 2736], ["correct", true], ["created_at", 2016-08-19 02:57:56 UTC], ["updated_at", 2016-08-19 02:57:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Velório"], ["question_id", 2736], ["correct", false], ["created_at", 2016-08-19 02:57:56 UTC], ["updated_at", 2016-08-19 02:57:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Reforma No Palácio"], ["question_id", 2736], ["correct", false], ["created_at", 2016-08-19 02:57:56 UTC], ["updated_at", 2016-08-19 02:57:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Palácio Estava Sendo Demolido"], ["question_id", 2736], ["correct", false], ["created_at", 2016-08-19 02:57:56 UTC], ["updated_at", 2016-08-19 02:57:56 UTC]]  (164.5ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o rei Manassés reinou, de qual deusa ele erigiu uma estátua no interior do Templo de Jerusalém?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o rei Manassés reinou, de qual deusa ele erigiu uma estátua no interior do Templo de Jerusalém?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando o rei Manassés reinou, de qual deusa ele erigiu uma estátua no interior do Templo de Jerusalém?"], ["created_at", 2016-08-19 02:57:56 UTC], ["updated_at", 2016-08-19 02:57:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Asera"], ["question_id", 2737], ["correct", true], ["created_at", 2016-08-19 02:57:56 UTC], ["updated_at", 2016-08-19 02:57:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Baal"], ["question_id", 2737], ["correct", false], ["created_at", 2016-08-19 02:57:56 UTC], ["updated_at", 2016-08-19 02:57:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bel"], ["question_id", 2737], ["correct", false], ["created_at", 2016-08-19 02:57:56 UTC], ["updated_at", 2016-08-19 02:57:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Diana"], ["question_id", 2737], ["correct", false], ["created_at", 2016-08-19 02:57:56 UTC], ["updated_at", 2016-08-19 02:57:56 UTC]]  (171.7ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o rei ouviu a mensagem de Jonas, com que roupas ele se vestiu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o rei ouviu a mensagem de Jonas, com que roupas ele se vestiu?"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando o rei ouviu a mensagem de Jonas, com que roupas ele se vestiu?"], ["created_at", 2016-08-19 02:57:56 UTC], ["updated_at", 2016-08-19 02:57:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Panos de Saco"], ["question_id", 2738], ["correct", true], ["created_at", 2016-08-19 02:57:56 UTC], ["updated_at", 2016-08-19 02:57:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Manto Real"], ["question_id", 2738], ["correct", false], ["created_at", 2016-08-19 02:57:56 UTC], ["updated_at", 2016-08-19 02:57:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Túnica"], ["question_id", 2738], ["correct", false], ["created_at", 2016-08-19 02:57:56 UTC], ["updated_at", 2016-08-19 02:57:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Roupas de Baixo"], ["question_id", 2738], ["correct", false], ["created_at", 2016-08-19 02:57:56 UTC], ["updated_at", 2016-08-19 02:57:56 UTC]]  (197.4ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o rei Zedequias escapou do cerco bailônico à cidade de Jerusalém, em qual cidade ele foi capturado?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o rei Zedequias escapou do cerco bailônico à cidade de Jerusalém, em qual cidade ele foi capturado?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando o rei Zedequias escapou do cerco bailônico à cidade de Jerusalém, em qual cidade ele foi capturado?"], ["created_at", 2016-08-19 02:57:56 UTC], ["updated_at", 2016-08-19 02:57:56 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jericó"], ["question_id", 2739], ["correct", true], ["created_at", 2016-08-19 02:57:56 UTC], ["updated_at", 2016-08-19 02:57:56 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Emaús"], ["question_id", 2739], ["correct", false], ["created_at", 2016-08-19 02:57:56 UTC], ["updated_at", 2016-08-19 02:57:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Efraim"], ["question_id", 2739], ["correct", false], ["created_at", 2016-08-19 02:57:56 UTC], ["updated_at", 2016-08-19 02:57:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Atenas"], ["question_id", 2739], ["correct", false], ["created_at", 2016-08-19 02:57:56 UTC], ["updated_at", 2016-08-19 02:57:56 UTC]]  (397.0ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o reino de Israel foi conquistado pelos assírios, quem reinava no reino de Judá?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando o reino de Israel foi conquistado pelos assírios, quem reinava no reino de Judá?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando o reino de Israel foi conquistado pelos assírios, quem reinava no reino de Judá?"], ["created_at", 2016-08-19 02:57:57 UTC], ["updated_at", 2016-08-19 02:57:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ezequias"], ["question_id", 2740], ["correct", true], ["created_at", 2016-08-19 02:57:57 UTC], ["updated_at", 2016-08-19 02:57:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uzias"], ["question_id", 2740], ["correct", false], ["created_at", 2016-08-19 02:57:57 UTC], ["updated_at", 2016-08-19 02:57:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obadias"], ["question_id", 2740], ["correct", false], ["created_at", 2016-08-19 02:57:57 UTC], ["updated_at", 2016-08-19 02:57:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 2740], ["correct", false], ["created_at", 2016-08-19 02:57:57 UTC], ["updated_at", 2016-08-19 02:57:57 UTC]]  (179.7ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando os filhos de Jacó foram comprar grãos no Egito, quem disse a eles que eles eram espias?"], ["LIMIT", 1]]  (0.2ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando os filhos de Jacó foram comprar grãos no Egito, quem disse a eles que eles eram espias?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando os filhos de Jacó foram comprar grãos no Egito, quem disse a eles que eles eram espias?"], ["created_at", 2016-08-19 02:57:57 UTC], ["updated_at", 2016-08-19 02:57:57 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 2741], ["correct", true], ["created_at", 2016-08-19 02:57:57 UTC], ["updated_at", 2016-08-19 02:57:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Próprio Jacó"], ["question_id", 2741], ["correct", false], ["created_at", 2016-08-19 02:57:57 UTC], ["updated_at", 2016-08-19 02:57:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Faraó do Egito"], ["question_id", 2741], ["correct", false], ["created_at", 2016-08-19 02:57:57 UTC], ["updated_at", 2016-08-19 02:57:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Potifar"], ["question_id", 2741], ["correct", false], ["created_at", 2016-08-19 02:57:57 UTC], ["updated_at", 2016-08-19 02:57:57 UTC]]  (188.4ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando os filisteus atacaram Sansão pela 4ª vez, o que eles lhe fizeram?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando os filisteus atacaram Sansão pela 4ª vez, o que eles lhe fizeram?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando os filisteus atacaram Sansão pela 4ª vez, o que eles lhe fizeram?"], ["created_at", 2016-08-19 02:57:57 UTC], ["updated_at", 2016-08-19 02:57:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cegaram-no"], ["question_id", 2742], ["correct", true], ["created_at", 2016-08-19 02:57:57 UTC], ["updated_at", 2016-08-19 02:57:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cortaram Sua Língua"], ["question_id", 2742], ["correct", false], ["created_at", 2016-08-19 02:57:57 UTC], ["updated_at", 2016-08-19 02:57:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cortaram Suas Mãos"], ["question_id", 2742], ["correct", false], ["created_at", 2016-08-19 02:57:57 UTC], ["updated_at", 2016-08-19 02:57:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cortaram Seus Dedos"], ["question_id", 2742], ["correct", false], ["created_at", 2016-08-19 02:57:57 UTC], ["updated_at", 2016-08-19 02:57:57 UTC]]  (146.5ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando os irmãos de José foram para o Egito para comprar grãos, o que José disse a eles?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando os irmãos de José foram para o Egito para comprar grãos, o que José disse a eles?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando os irmãos de José foram para o Egito para comprar grãos, o que José disse a eles?"], ["created_at", 2016-08-19 02:57:57 UTC], ["updated_at", 2016-08-19 02:57:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vós Sois Espias"], ["question_id", 2743], ["correct", true], ["created_at", 2016-08-19 02:57:57 UTC], ["updated_at", 2016-08-19 02:57:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vós Sois Meus Irmãos"], ["question_id", 2743], ["correct", false], ["created_at", 2016-08-19 02:57:57 UTC], ["updated_at", 2016-08-19 02:57:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vós Sois Traidores"], ["question_id", 2743], ["correct", false], ["created_at", 2016-08-19 02:57:57 UTC], ["updated_at", 2016-08-19 02:57:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Não Lhes Conheço"], ["question_id", 2743], ["correct", false], ["created_at", 2016-08-19 02:57:57 UTC], ["updated_at", 2016-08-19 02:57:57 UTC]]  (197.3ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando os judeus retornaram a Jerusalém vindo de Babilônia, como os idosos reagiram à construção do alicerce do Templo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando os judeus retornaram a Jerusalém vindo de Babilônia, como os idosos reagiram à construção do alicerce do Templo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando os judeus retornaram a Jerusalém vindo de Babilônia, como os idosos reagiram à construção do alicerce do Templo?"], ["created_at", 2016-08-19 02:57:57 UTC], ["updated_at", 2016-08-19 02:57:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eles Choraram"], ["question_id", 2744], ["correct", true], ["created_at", 2016-08-19 02:57:57 UTC], ["updated_at", 2016-08-19 02:57:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eles Dançaram"], ["question_id", 2744], ["correct", false], ["created_at", 2016-08-19 02:57:57 UTC], ["updated_at", 2016-08-19 02:57:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Comemoraram Com Um Banquete"], ["question_id", 2744], ["correct", false], ["created_at", 2016-08-19 02:57:57 UTC], ["updated_at", 2016-08-19 02:57:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cumpriram A Promessa Feita"], ["question_id", 2744], ["correct", false], ["created_at", 2016-08-19 02:57:57 UTC], ["updated_at", 2016-08-19 02:57:57 UTC]]  (139.3ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Paulo foi à Roma, o que os marinheiros do navio tentaram fazer ao avistarem terra após a violenta tempestade?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Paulo foi à Roma, o que os marinheiros do navio tentaram fazer ao avistarem terra após a violenta tempestade?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Paulo foi à Roma, o que os marinheiros do navio tentaram fazer ao avistarem terra após a violenta tempestade?"], ["created_at", 2016-08-19 02:57:58 UTC], ["updated_at", 2016-08-19 02:57:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Encalhar O Navio"], ["question_id", 2745], ["correct", true], ["created_at", 2016-08-19 02:57:58 UTC], ["updated_at", 2016-08-19 02:57:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Afundar O Navio"], ["question_id", 2745], ["correct", false], ["created_at", 2016-08-19 02:57:58 UTC], ["updated_at", 2016-08-19 02:57:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pular do Navio"], ["question_id", 2745], ["correct", false], ["created_at", 2016-08-19 02:57:58 UTC], ["updated_at", 2016-08-19 02:57:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Navegar Até O Porto"], ["question_id", 2745], ["correct", false], ["created_at", 2016-08-19 02:57:58 UTC], ["updated_at", 2016-08-19 02:57:58 UTC]]  (146.4ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Paulo foi à Roma, o que os soldados romanos tentaram fazer aos prisioneiros quando o navio estava naufragando?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Paulo foi à Roma, o que os soldados romanos tentaram fazer aos prisioneiros quando o navio estava naufragando?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Paulo foi à Roma, o que os soldados romanos tentaram fazer aos prisioneiros quando o navio estava naufragando?"], ["created_at", 2016-08-19 02:57:58 UTC], ["updated_at", 2016-08-19 02:57:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matá-los"], ["question_id", 2746], ["correct", true], ["created_at", 2016-08-19 02:57:58 UTC], ["updated_at", 2016-08-19 02:57:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Libertá-los"], ["question_id", 2746], ["correct", false], ["created_at", 2016-08-19 02:57:58 UTC], ["updated_at", 2016-08-19 02:57:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acorrentá-los"], ["question_id", 2746], ["correct", false], ["created_at", 2016-08-19 02:57:58 UTC], ["updated_at", 2016-08-19 02:57:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jogá-los Ao Mar"], ["question_id", 2746], ["correct", false], ["created_at", 2016-08-19 02:57:58 UTC], ["updated_at", 2016-08-19 02:57:58 UTC]]  (138.7ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Paulo foi à Roma, quem tentou matar os prisioneiros que haviam no navio que estava naufragando?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Paulo foi à Roma, quem tentou matar os prisioneiros que haviam no navio que estava naufragando?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Paulo foi à Roma, quem tentou matar os prisioneiros que haviam no navio que estava naufragando?"], ["created_at", 2016-08-19 02:57:58 UTC], ["updated_at", 2016-08-19 02:57:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Soldados Romanos"], ["question_id", 2747], ["correct", true], ["created_at", 2016-08-19 02:57:58 UTC], ["updated_at", 2016-08-19 02:57:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Marinheiros"], ["question_id", 2747], ["correct", false], ["created_at", 2016-08-19 02:57:58 UTC], ["updated_at", 2016-08-19 02:57:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Capitão do Navio"], ["question_id", 2747], ["correct", false], ["created_at", 2016-08-19 02:57:58 UTC], ["updated_at", 2016-08-19 02:57:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Próprio Paulo"], ["question_id", 2747], ["correct", false], ["created_at", 2016-08-19 02:57:58 UTC], ["updated_at", 2016-08-19 02:57:58 UTC]]  (138.7ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Paulo precisou retornar da Grécia p/ a Macedônia pois desejavam matá-lo, onde seus companheiros o estavam aguardando?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Paulo precisou retornar da Grécia p/ a Macedônia pois desejavam matá-lo, onde seus companheiros o estavam aguardando?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Paulo precisou retornar da Grécia p/ a Macedônia pois desejavam matá-lo, onde seus companheiros o estavam aguardando?"], ["created_at", 2016-08-19 02:57:58 UTC], ["updated_at", 2016-08-19 02:57:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trôade"], ["question_id", 2748], ["correct", true], ["created_at", 2016-08-19 02:57:58 UTC], ["updated_at", 2016-08-19 02:57:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filipos"], ["question_id", 2748], ["correct", false], ["created_at", 2016-08-19 02:57:58 UTC], ["updated_at", 2016-08-19 02:57:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mileto"], ["question_id", 2748], ["correct", false], ["created_at", 2016-08-19 02:57:58 UTC], ["updated_at", 2016-08-19 02:57:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Éfeso"], ["question_id", 2748], ["correct", false], ["created_at", 2016-08-19 02:57:58 UTC], ["updated_at", 2016-08-19 02:57:58 UTC]]  (146.4ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Roboão tornou-se rei, o que os israelitas lhe pediram?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Roboão tornou-se rei, o que os israelitas lhe pediram?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Roboão tornou-se rei, o que os israelitas lhe pediram?"], ["created_at", 2016-08-19 02:57:58 UTC], ["updated_at", 2016-08-19 02:57:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abaixar Os Impostos"], ["question_id", 2749], ["correct", true], ["created_at", 2016-08-19 02:57:58 UTC], ["updated_at", 2016-08-19 02:57:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dar Uma Festa"], ["question_id", 2749], ["correct", false], ["created_at", 2016-08-19 02:57:58 UTC], ["updated_at", 2016-08-19 02:57:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Construir-lhes Novas Casas"], ["question_id", 2749], ["correct", false], ["created_at", 2016-08-19 02:57:58 UTC], ["updated_at", 2016-08-19 02:57:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Construir Um Novo Templo"], ["question_id", 2749], ["correct", false], ["created_at", 2016-08-19 02:57:58 UTC], ["updated_at", 2016-08-19 02:57:58 UTC]]  (139.8ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Salomão morreu, onde ele foi interrado?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Salomão morreu, onde ele foi interrado?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Salomão morreu, onde ele foi interrado?"], ["created_at", 2016-08-19 02:57:58 UTC], ["updated_at", 2016-08-19 02:57:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jerusalém"], ["question_id", 2750], ["correct", true], ["created_at", 2016-08-19 02:57:58 UTC], ["updated_at", 2016-08-19 02:57:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Siquém"], ["question_id", 2750], ["correct", false], ["created_at", 2016-08-19 02:57:58 UTC], ["updated_at", 2016-08-19 02:57:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ramá"], ["question_id", 2750], ["correct", false], ["created_at", 2016-08-19 02:57:58 UTC], ["updated_at", 2016-08-19 02:57:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hebrom"], ["question_id", 2750], ["correct", false], ["created_at", 2016-08-19 02:57:58 UTC], ["updated_at", 2016-08-19 02:57:58 UTC]]  (140.0ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Sansão apaixonou-se por Dalila, ela vivia no vale de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Sansão apaixonou-se por Dalila, ela vivia no vale de:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Sansão apaixonou-se por Dalila, ela vivia no vale de:"], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Soreque"], ["question_id", 2751], ["correct", true], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Efraim"], ["question_id", 2751], ["correct", false], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Midiã"], ["question_id", 2751], ["correct", false], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jafé"], ["question_id", 2751], ["correct", false], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]]  (146.5ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Sansão estava andando pela estrada, que animal tinha em seu corpo uma colméia de mel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Sansão estava andando pela estrada, que animal tinha em seu corpo uma colméia de mel?"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Sansão estava andando pela estrada, que animal tinha em seu corpo uma colméia de mel?"], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Leão"], ["question_id", 2752], ["correct", true], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Urso"], ["question_id", 2752], ["correct", false], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cachorro"], ["question_id", 2752], ["correct", false], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ovelha"], ["question_id", 2752], ["correct", false], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]]  (121.2ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Sansão estava andando por uma estrada, o que ele encontrou no corpo de um leão morto?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Sansão estava andando por uma estrada, o que ele encontrou no corpo de um leão morto?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Sansão estava andando por uma estrada, o que ele encontrou no corpo de um leão morto?"], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mel"], ["question_id", 2753], ["correct", true], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Frutas"], ["question_id", 2753], ["correct", false], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Flores"], ["question_id", 2753], ["correct", false], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Homem"], ["question_id", 2753], ["correct", false], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]]  (138.7ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Sansão foi à cidade de Timnate, o que ele pediu aos seus pais?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Sansão foi à cidade de Timnate, o que ele pediu aos seus pais?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Sansão foi à cidade de Timnate, o que ele pediu aos seus pais?"], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma das Filhas dos Filisteus"], ["question_id", 2754], ["correct", true], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Emprego Que Lhe Pagasse Bem"], ["question_id", 2754], ["correct", false], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Boa Casa"], ["question_id", 2754], ["correct", false], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Independência"], ["question_id", 2754], ["correct", false], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]]  (154.3ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Sansão visitou a cidade de Gaza, o que ele fez por lá?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Sansão visitou a cidade de Gaza, o que ele fez por lá?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Sansão visitou a cidade de Gaza, o que ele fez por lá?"], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Visitou Uma Prostituta"], ["question_id", 2755], ["correct", true], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Visitou Sua Família"], ["question_id", 2755], ["correct", false], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Visitou Os Líderes Religiosos"], ["question_id", 2755], ["correct", false], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Visitou Os Doentes"], ["question_id", 2755], ["correct", false], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]]  (137.9ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando um caldo venenoso foi acidentalmente oferecido a Eliseu, o que ele colocou na panela para torná-lo comestível?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando um caldo venenoso foi acidentalmente oferecido a Eliseu, o que ele colocou na panela para torná-lo comestível?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando um caldo venenoso foi acidentalmente oferecido a Eliseu, o que ele colocou na panela para torná-lo comestível?"], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Farinha"], ["question_id", 2756], ["correct", true], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sal"], ["question_id", 2756], ["correct", false], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ervas Amargas"], ["question_id", 2756], ["correct", false], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]] SQL (0.4ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Azeite"], ["question_id", 2756], ["correct", false], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]]  (146.8ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Zedequias governava o reino de Judá, quem atacou Jerusalém pela 3ª vez?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quando Zedequias governava o reino de Judá, quem atacou Jerusalém pela 3ª vez?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quando Zedequias governava o reino de Judá, quem atacou Jerusalém pela 3ª vez?"], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Babilônicos"], ["question_id", 2757], ["correct", true], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Sírios"], ["question_id", 2757], ["correct", false], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Medo-persas"], ["question_id", 2757], ["correct", false], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Gregos"], ["question_id", 2757], ["correct", false], ["created_at", 2016-08-19 02:57:59 UTC], ["updated_at", 2016-08-19 02:57:59 UTC]]  (121.4ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas esposas Jacó tinha?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas esposas Jacó tinha?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas esposas Jacó tinha?"], ["created_at", 2016-08-19 02:58:00 UTC], ["updated_at", 2016-08-19 02:58:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 2758], ["correct", true], ["created_at", 2016-08-19 02:58:00 UTC], ["updated_at", 2016-08-19 02:58:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 2758], ["correct", false], ["created_at", 2016-08-19 02:58:00 UTC], ["updated_at", 2016-08-19 02:58:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas Uma"], ["question_id", 2758], ["correct", false], ["created_at", 2016-08-19 02:58:00 UTC], ["updated_at", 2016-08-19 02:58:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nunca Foi Casado"], ["question_id", 2758], ["correct", false], ["created_at", 2016-08-19 02:58:00 UTC], ["updated_at", 2016-08-19 02:58:00 UTC]]  (132.2ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas esposas Salomão teve?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas esposas Salomão teve?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas esposas Salomão teve?"], ["created_at", 2016-08-19 02:58:00 UTC], ["updated_at", 2016-08-19 02:58:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Diversas"], ["question_id", 2759], ["correct", true], ["created_at", 2016-08-19 02:58:00 UTC], ["updated_at", 2016-08-19 02:58:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas Uma Única"], ["question_id", 2759], ["correct", false], ["created_at", 2016-08-19 02:58:00 UTC], ["updated_at", 2016-08-19 02:58:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 2759], ["correct", false], ["created_at", 2016-08-19 02:58:00 UTC], ["updated_at", 2016-08-19 02:58:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhuma, Pois Morreu Solteiro"], ["question_id", 2759], ["correct", false], ["created_at", 2016-08-19 02:58:00 UTC], ["updated_at", 2016-08-19 02:58:00 UTC]]  (114.5ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas esposas tinha o rei Salomão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas esposas tinha o rei Salomão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas esposas tinha o rei Salomão?"], ["created_at", 2016-08-19 02:58:00 UTC], ["updated_at", 2016-08-19 02:58:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "700"], ["question_id", 2760], ["correct", true], ["created_at", 2016-08-19 02:58:00 UTC], ["updated_at", 2016-08-19 02:58:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7"], ["question_id", 2760], ["correct", false], ["created_at", 2016-08-19 02:58:00 UTC], ["updated_at", 2016-08-19 02:58:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "70"], ["question_id", 2760], ["correct", false], ["created_at", 2016-08-19 02:58:00 UTC], ["updated_at", 2016-08-19 02:58:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas Uma"], ["question_id", 2760], ["correct", false], ["created_at", 2016-08-19 02:58:00 UTC], ["updated_at", 2016-08-19 02:58:00 UTC]]  (150.0ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas janelas havia na arca de Noé?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas janelas havia na arca de Noé?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas janelas havia na arca de Noé?"], ["created_at", 2016-08-19 02:58:00 UTC], ["updated_at", 2016-08-19 02:58:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 2761], ["correct", true], ["created_at", 2016-08-19 02:58:00 UTC], ["updated_at", 2016-08-19 02:58:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhuma, Mas Apenas Uma Grande Porta"], ["question_id", 2761], ["correct", false], ["created_at", 2016-08-19 02:58:00 UTC], ["updated_at", 2016-08-19 02:58:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 (uma de Cada Lado)"], ["question_id", 2761], ["correct", false], ["created_at", 2016-08-19 02:58:00 UTC], ["updated_at", 2016-08-19 02:58:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 (as Duas Em Um Único Lado)"], ["question_id", 2761], ["correct", false], ["created_at", 2016-08-19 02:58:00 UTC], ["updated_at", 2016-08-19 02:58:00 UTC]]  (172.8ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas letras a Bíblia contém aproximadamente?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas letras a Bíblia contém aproximadamente?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas letras a Bíblia contém aproximadamente?"], ["created_at", 2016-08-19 02:58:00 UTC], ["updated_at", 2016-08-19 02:58:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3566500"], ["question_id", 2762], ["correct", true], ["created_at", 2016-08-19 02:58:00 UTC], ["updated_at", 2016-08-19 02:58:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1950500"], ["question_id", 2762], ["correct", false], ["created_at", 2016-08-19 02:58:00 UTC], ["updated_at", 2016-08-19 02:58:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5231500"], ["question_id", 2762], ["correct", false], ["created_at", 2016-08-19 02:58:00 UTC], ["updated_at", 2016-08-19 02:58:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7341500"], ["question_id", 2762], ["correct", false], ["created_at", 2016-08-19 02:58:00 UTC], ["updated_at", 2016-08-19 02:58:00 UTC]]  (272.7ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas letras possui o maior versículo da Bíblia (Ester 8:9)?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas letras possui o maior versículo da Bíblia (Ester 8:9)?"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas letras possui o maior versículo da Bíblia (Ester 8:9)?"], ["created_at", 2016-08-19 02:58:00 UTC], ["updated_at", 2016-08-19 02:58:00 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "415"], ["question_id", 2763], ["correct", true], ["created_at", 2016-08-19 02:58:00 UTC], ["updated_at", 2016-08-19 02:58:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "213"], ["question_id", 2763], ["correct", false], ["created_at", 2016-08-19 02:58:00 UTC], ["updated_at", 2016-08-19 02:58:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "352"], ["question_id", 2763], ["correct", false], ["created_at", 2016-08-19 02:58:00 UTC], ["updated_at", 2016-08-19 02:58:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "641"], ["question_id", 2763], ["correct", false], ["created_at", 2016-08-19 02:58:00 UTC], ["updated_at", 2016-08-19 02:58:00 UTC]]  (162.7ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas letras possui o menor versículo da Bíblia (Êxodo 20:13)?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas letras possui o menor versículo da Bíblia (Êxodo 20:13)?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas letras possui o menor versículo da Bíblia (Êxodo 20:13)?"], ["created_at", 2016-08-19 02:58:01 UTC], ["updated_at", 2016-08-19 02:58:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10"], ["question_id", 2764], ["correct", true], ["created_at", 2016-08-19 02:58:01 UTC], ["updated_at", 2016-08-19 02:58:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "32"], ["question_id", 2764], ["correct", false], ["created_at", 2016-08-19 02:58:01 UTC], ["updated_at", 2016-08-19 02:58:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 2764], ["correct", false], ["created_at", 2016-08-19 02:58:01 UTC], ["updated_at", 2016-08-19 02:58:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "73"], ["question_id", 2764], ["correct", false], ["created_at", 2016-08-19 02:58:01 UTC], ["updated_at", 2016-08-19 02:58:01 UTC]]  (113.3ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas ovelhas foram sacrificadas como oferta pacífica quando Deus entrou no Templo de Jerusalém?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas ovelhas foram sacrificadas como oferta pacífica quando Deus entrou no Templo de Jerusalém?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas ovelhas foram sacrificadas como oferta pacífica quando Deus entrou no Templo de Jerusalém?"], ["created_at", 2016-08-19 02:58:01 UTC], ["updated_at", 2016-08-19 02:58:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "120000"], ["question_id", 2765], ["correct", true], ["created_at", 2016-08-19 02:58:01 UTC], ["updated_at", 2016-08-19 02:58:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "20000"], ["question_id", 2765], ["correct", false], ["created_at", 2016-08-19 02:58:01 UTC], ["updated_at", 2016-08-19 02:58:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "40000"], ["question_id", 2765], ["correct", false], ["created_at", 2016-08-19 02:58:01 UTC], ["updated_at", 2016-08-19 02:58:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4000"], ["question_id", 2765], ["correct", false], ["created_at", 2016-08-19 02:58:01 UTC], ["updated_at", 2016-08-19 02:58:01 UTC]]  (230.2ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas palavras a Bíblia contém aproximadamente?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas palavras a Bíblia contém aproximadamente?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas palavras a Bíblia contém aproximadamente?"], ["created_at", 2016-08-19 02:58:01 UTC], ["updated_at", 2016-08-19 02:58:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "773690"], ["question_id", 2766], ["correct", true], ["created_at", 2016-08-19 02:58:01 UTC], ["updated_at", 2016-08-19 02:58:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "591690"], ["question_id", 2766], ["correct", false], ["created_at", 2016-08-19 02:58:01 UTC], ["updated_at", 2016-08-19 02:58:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "941690"], ["question_id", 2766], ["correct", false], ["created_at", 2016-08-19 02:58:01 UTC], ["updated_at", 2016-08-19 02:58:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "294690"], ["question_id", 2766], ["correct", false], ["created_at", 2016-08-19 02:58:01 UTC], ["updated_at", 2016-08-19 02:58:01 UTC]]  (172.6ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pedras Davi apanhou no chão para matar o gigante Golias?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pedras Davi apanhou no chão para matar o gigante Golias?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas pedras Davi apanhou no chão para matar o gigante Golias?"], ["created_at", 2016-08-19 02:58:01 UTC], ["updated_at", 2016-08-19 02:58:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 2767], ["correct", true], ["created_at", 2016-08-19 02:58:01 UTC], ["updated_at", 2016-08-19 02:58:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 2767], ["correct", false], ["created_at", 2016-08-19 02:58:01 UTC], ["updated_at", 2016-08-19 02:58:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 2767], ["correct", false], ["created_at", 2016-08-19 02:58:01 UTC], ["updated_at", 2016-08-19 02:58:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 2767], ["correct", false], ["created_at", 2016-08-19 02:58:01 UTC], ["updated_at", 2016-08-19 02:58:01 UTC]]  (164.6ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pessoas haviam no navio que naufragou onde Paulo estava em sua viagem para Roma?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pessoas haviam no navio que naufragou onde Paulo estava em sua viagem para Roma?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas pessoas haviam no navio que naufragou onde Paulo estava em sua viagem para Roma?"], ["created_at", 2016-08-19 02:58:01 UTC], ["updated_at", 2016-08-19 02:58:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "276"], ["question_id", 2768], ["correct", true], ["created_at", 2016-08-19 02:58:01 UTC], ["updated_at", 2016-08-19 02:58:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "390"], ["question_id", 2768], ["correct", false], ["created_at", 2016-08-19 02:58:01 UTC], ["updated_at", 2016-08-19 02:58:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "121"], ["question_id", 2768], ["correct", false], ["created_at", 2016-08-19 02:58:01 UTC], ["updated_at", 2016-08-19 02:58:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "88"], ["question_id", 2768], ["correct", false], ["created_at", 2016-08-19 02:58:01 UTC], ["updated_at", 2016-08-19 02:58:01 UTC]]  (129.6ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pessoas Jesus alimentou com 5 peixes e 2 pães?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pessoas Jesus alimentou com 5 peixes e 2 pães?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas pessoas Jesus alimentou com 5 peixes e 2 pães?"], ["created_at", 2016-08-19 02:58:02 UTC], ["updated_at", 2016-08-19 02:58:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5000"], ["question_id", 2769], ["correct", true], ["created_at", 2016-08-19 02:58:02 UTC], ["updated_at", 2016-08-19 02:58:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3000"], ["question_id", 2769], ["correct", false], ["created_at", 2016-08-19 02:58:02 UTC], ["updated_at", 2016-08-19 02:58:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1500"], ["question_id", 2769], ["correct", false], ["created_at", 2016-08-19 02:58:02 UTC], ["updated_at", 2016-08-19 02:58:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7500"], ["question_id", 2769], ["correct", false], ["created_at", 2016-08-19 02:58:02 UTC], ["updated_at", 2016-08-19 02:58:02 UTC]]  (172.9ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pessoas justas Abraão estava procurando em Sodoma?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pessoas justas Abraão estava procurando em Sodoma?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas pessoas justas Abraão estava procurando em Sodoma?"], ["created_at", 2016-08-19 02:58:02 UTC], ["updated_at", 2016-08-19 02:58:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10"], ["question_id", 2770], ["correct", true], ["created_at", 2016-08-19 02:58:02 UTC], ["updated_at", 2016-08-19 02:58:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "18"], ["question_id", 2770], ["correct", false], ["created_at", 2016-08-19 02:58:02 UTC], ["updated_at", 2016-08-19 02:58:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "60"], ["question_id", 2770], ["correct", false], ["created_at", 2016-08-19 02:58:02 UTC], ["updated_at", 2016-08-19 02:58:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 2770], ["correct", false], ["created_at", 2016-08-19 02:58:02 UTC], ["updated_at", 2016-08-19 02:58:02 UTC]]  (204.6ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pessoas morreram do povo israelita em função da praga enviada por Deus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pessoas morreram do povo israelita em função da praga enviada por Deus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas pessoas morreram do povo israelita em função da praga enviada por Deus?"], ["created_at", 2016-08-19 02:58:02 UTC], ["updated_at", 2016-08-19 02:58:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "14700"], ["question_id", 2771], ["correct", true], ["created_at", 2016-08-19 02:58:02 UTC], ["updated_at", 2016-08-19 02:58:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "147000"], ["question_id", 2771], ["correct", false], ["created_at", 2016-08-19 02:58:02 UTC], ["updated_at", 2016-08-19 02:58:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1470"], ["question_id", 2771], ["correct", false], ["created_at", 2016-08-19 02:58:02 UTC], ["updated_at", 2016-08-19 02:58:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "147"], ["question_id", 2771], ["correct", false], ["created_at", 2016-08-19 02:58:02 UTC], ["updated_at", 2016-08-19 02:58:02 UTC]]  (147.3ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pessoas perderam a sua vida por não saberem pronunciar a palavra Shiboleth?\n1,"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas pessoas perderam a sua vida por não saberem pronunciar a palavra Shiboleth?\n1,"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas pessoas perderam a sua vida por não saberem pronunciar a palavra Shiboleth?\n1,"], ["created_at", 2016-08-19 02:58:02 UTC], ["updated_at", 2016-08-19 02:58:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "42000"], ["question_id", 2772], ["correct", true], ["created_at", 2016-08-19 02:58:02 UTC], ["updated_at", 2016-08-19 02:58:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1200"], ["question_id", 2772], ["correct", false], ["created_at", 2016-08-19 02:58:02 UTC], ["updated_at", 2016-08-19 02:58:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "240"], ["question_id", 2772], ["correct", false], ["created_at", 2016-08-19 02:58:02 UTC], ["updated_at", 2016-08-19 02:58:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10500"], ["question_id", 2772], ["correct", false], ["created_at", 2016-08-19 02:58:02 UTC], ["updated_at", 2016-08-19 02:58:02 UTC]]  (138.1ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas portas havia na arca de Noé?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas portas havia na arca de Noé?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas portas havia na arca de Noé?"], ["created_at", 2016-08-19 02:58:02 UTC], ["updated_at", 2016-08-19 02:58:02 UTC]] SQL (0.7ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 2773], ["correct", true], ["created_at", 2016-08-19 02:58:02 UTC], ["updated_at", 2016-08-19 02:58:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhuma, Mas Sim Uma Grande Janela"], ["question_id", 2773], ["correct", false], ["created_at", 2016-08-19 02:58:02 UTC], ["updated_at", 2016-08-19 02:58:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 (as Duas Em Um Único Lado)"], ["question_id", 2773], ["correct", false], ["created_at", 2016-08-19 02:58:02 UTC], ["updated_at", 2016-08-19 02:58:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 (uma de Cada Lado)"], ["question_id", 2773], ["correct", false], ["created_at", 2016-08-19 02:58:02 UTC], ["updated_at", 2016-08-19 02:58:02 UTC]]  (173.6ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes Deus apareceu a Salomão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes Deus apareceu a Salomão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas vezes Deus apareceu a Salomão?"], ["created_at", 2016-08-19 02:58:02 UTC], ["updated_at", 2016-08-19 02:58:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 2774], ["correct", true], ["created_at", 2016-08-19 02:58:02 UTC], ["updated_at", 2016-08-19 02:58:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 2774], ["correct", false], ["created_at", 2016-08-19 02:58:02 UTC], ["updated_at", 2016-08-19 02:58:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "8"], ["question_id", 2774], ["correct", false], ["created_at", 2016-08-19 02:58:02 UTC], ["updated_at", 2016-08-19 02:58:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "16"], ["question_id", 2774], ["correct", false], ["created_at", 2016-08-19 02:58:02 UTC], ["updated_at", 2016-08-19 02:58:02 UTC]]  (317.8ms) commit transaction Quizzes::Question Exists (1.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes Eliseu disse para Naamã se molhar no rio Jordão para se curar da lepra?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes Eliseu disse para Naamã se molhar no rio Jordão para se curar da lepra?"], ["LIMIT", 1]] SQL (0.7ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas vezes Eliseu disse para Naamã se molhar no rio Jordão para se curar da lepra?"], ["created_at", 2016-08-19 02:58:03 UTC], ["updated_at", 2016-08-19 02:58:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7"], ["question_id", 2775], ["correct", true], ["created_at", 2016-08-19 02:58:03 UTC], ["updated_at", 2016-08-19 02:58:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12"], ["question_id", 2775], ["correct", false], ["created_at", 2016-08-19 02:58:03 UTC], ["updated_at", 2016-08-19 02:58:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 2775], ["correct", false], ["created_at", 2016-08-19 02:58:03 UTC], ["updated_at", 2016-08-19 02:58:03 UTC]] SQL (0.5ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 2775], ["correct", false], ["created_at", 2016-08-19 02:58:03 UTC], ["updated_at", 2016-08-19 02:58:03 UTC]]  (130.0ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes Jesus perguntou a Pedro se este o amava?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes Jesus perguntou a Pedro se este o amava?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas vezes Jesus perguntou a Pedro se este o amava?"], ["created_at", 2016-08-19 02:58:03 UTC], ["updated_at", 2016-08-19 02:58:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 2776], ["correct", true], ["created_at", 2016-08-19 02:58:03 UTC], ["updated_at", 2016-08-19 02:58:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 2776], ["correct", false], ["created_at", 2016-08-19 02:58:03 UTC], ["updated_at", 2016-08-19 02:58:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 2776], ["correct", false], ["created_at", 2016-08-19 02:58:03 UTC], ["updated_at", 2016-08-19 02:58:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhuma"], ["question_id", 2776], ["correct", false], ["created_at", 2016-08-19 02:58:03 UTC], ["updated_at", 2016-08-19 02:58:03 UTC]]  (122.6ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes Noé enviu uma pomba para procurar por terra seca?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes Noé enviu uma pomba para procurar por terra seca?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas vezes Noé enviu uma pomba para procurar por terra seca?"], ["created_at", 2016-08-19 02:58:03 UTC], ["updated_at", 2016-08-19 02:58:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 2777], ["correct", true], ["created_at", 2016-08-19 02:58:03 UTC], ["updated_at", 2016-08-19 02:58:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 2777], ["correct", false], ["created_at", 2016-08-19 02:58:03 UTC], ["updated_at", 2016-08-19 02:58:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7"], ["question_id", 2777], ["correct", false], ["created_at", 2016-08-19 02:58:03 UTC], ["updated_at", 2016-08-19 02:58:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 2777], ["correct", false], ["created_at", 2016-08-19 02:58:03 UTC], ["updated_at", 2016-08-19 02:58:03 UTC]]  (129.5ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes o rei Nabucodonosor atacou Jerusalém?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes o rei Nabucodonosor atacou Jerusalém?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas vezes o rei Nabucodonosor atacou Jerusalém?"], ["created_at", 2016-08-19 02:58:03 UTC], ["updated_at", 2016-08-19 02:58:03 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 2778], ["correct", true], ["created_at", 2016-08-19 02:58:03 UTC], ["updated_at", 2016-08-19 02:58:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 2778], ["correct", false], ["created_at", 2016-08-19 02:58:03 UTC], ["updated_at", 2016-08-19 02:58:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 2778], ["correct", false], ["created_at", 2016-08-19 02:58:03 UTC], ["updated_at", 2016-08-19 02:58:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 2778], ["correct", false], ["created_at", 2016-08-19 02:58:03 UTC], ["updated_at", 2016-08-19 02:58:03 UTC]]  (146.5ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes Pedro negou a Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas vezes Pedro negou a Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas vezes Pedro negou a Jesus?"], ["created_at", 2016-08-19 02:58:03 UTC], ["updated_at", 2016-08-19 02:58:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 2779], ["correct", true], ["created_at", 2016-08-19 02:58:03 UTC], ["updated_at", 2016-08-19 02:58:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 2779], ["correct", false], ["created_at", 2016-08-19 02:58:03 UTC], ["updated_at", 2016-08-19 02:58:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 2779], ["correct", false], ["created_at", 2016-08-19 02:58:03 UTC], ["updated_at", 2016-08-19 02:58:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhuma"], ["question_id", 2779], ["correct", false], ["created_at", 2016-08-19 02:58:03 UTC], ["updated_at", 2016-08-19 02:58:03 UTC]]  (137.2ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas voltas o povo de Israel deu em volta dos muros da cidade de Jericó, para que estes caíssem?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantas voltas o povo de Israel deu em volta dos muros da cidade de Jericó, para que estes caíssem?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantas voltas o povo de Israel deu em volta dos muros da cidade de Jericó, para que estes caíssem?"], ["created_at", 2016-08-19 02:58:03 UTC], ["updated_at", 2016-08-19 02:58:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7"], ["question_id", 2780], ["correct", true], ["created_at", 2016-08-19 02:58:03 UTC], ["updated_at", 2016-08-19 02:58:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12"], ["question_id", 2780], ["correct", false], ["created_at", 2016-08-19 02:58:03 UTC], ["updated_at", 2016-08-19 02:58:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 2780], ["correct", false], ["created_at", 2016-08-19 02:58:03 UTC], ["updated_at", 2016-08-19 02:58:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "9"], ["question_id", 2780], ["correct", false], ["created_at", 2016-08-19 02:58:03 UTC], ["updated_at", 2016-08-19 02:58:03 UTC]]  (121.3ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto custou o terreno que foi a sepultura de Sara?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto custou o terreno que foi a sepultura de Sara?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quanto custou o terreno que foi a sepultura de Sara?"], ["created_at", 2016-08-19 02:58:04 UTC], ["updated_at", 2016-08-19 02:58:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "400 Barras de Prata"], ["question_id", 2781], ["correct", true], ["created_at", 2016-08-19 02:58:04 UTC], ["updated_at", 2016-08-19 02:58:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "240 Camêlos"], ["question_id", 2781], ["correct", false], ["created_at", 2016-08-19 02:58:04 UTC], ["updated_at", 2016-08-19 02:58:04 UTC]] SQL (0.6ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "300 Kg de Ouro"], ["question_id", 2781], ["correct", false], ["created_at", 2016-08-19 02:58:04 UTC], ["updated_at", 2016-08-19 02:58:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "120 Côvados de Terra Fértil"], ["question_id", 2781], ["correct", false], ["created_at", 2016-08-19 02:58:04 UTC], ["updated_at", 2016-08-19 02:58:04 UTC]]  (147.1ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto Jesus foi tentado por Satanás, para matar a fome de Jesus Satanás pediu que as pedras fossem transformadas em:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto Jesus foi tentado por Satanás, para matar a fome de Jesus Satanás pediu que as pedras fossem transformadas em:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quanto Jesus foi tentado por Satanás, para matar a fome de Jesus Satanás pediu que as pedras fossem transformadas em:"], ["created_at", 2016-08-19 02:58:04 UTC], ["updated_at", 2016-08-19 02:58:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pão"], ["question_id", 2782], ["correct", true], ["created_at", 2016-08-19 02:58:04 UTC], ["updated_at", 2016-08-19 02:58:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maná"], ["question_id", 2782], ["correct", false], ["created_at", 2016-08-19 02:58:04 UTC], ["updated_at", 2016-08-19 02:58:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bolo"], ["question_id", 2782], ["correct", false], ["created_at", 2016-08-19 02:58:04 UTC], ["updated_at", 2016-08-19 02:58:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assado"], ["question_id", 2782], ["correct", false], ["created_at", 2016-08-19 02:58:04 UTC], ["updated_at", 2016-08-19 02:58:04 UTC]]  (129.2ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto Judas Iscariotes disse que custava o perfume que lavou os pés de Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto Judas Iscariotes disse que custava o perfume que lavou os pés de Jesus?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quanto Judas Iscariotes disse que custava o perfume que lavou os pés de Jesus?"], ["created_at", 2016-08-19 02:58:04 UTC], ["updated_at", 2016-08-19 02:58:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "300 Denários"], ["question_id", 2783], ["correct", true], ["created_at", 2016-08-19 02:58:04 UTC], ["updated_at", 2016-08-19 02:58:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "200 Denários"], ["question_id", 2783], ["correct", false], ["created_at", 2016-08-19 02:58:04 UTC], ["updated_at", 2016-08-19 02:58:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "500 Denários"], ["question_id", 2783], ["correct", false], ["created_at", 2016-08-19 02:58:04 UTC], ["updated_at", 2016-08-19 02:58:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "100 Denários"], ["question_id", 2783], ["correct", false], ["created_at", 2016-08-19 02:58:04 UTC], ["updated_at", 2016-08-19 02:58:04 UTC]]  (130.1ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto os príncipes filisteus ofereceram a Dalila para que ela descobrissem o segredo da força de Sansão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto os príncipes filisteus ofereceram a Dalila para que ela descobrissem o segredo da força de Sansão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quanto os príncipes filisteus ofereceram a Dalila para que ela descobrissem o segredo da força de Sansão?"], ["created_at", 2016-08-19 02:58:04 UTC], ["updated_at", 2016-08-19 02:58:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1.100 Moedas de Prata de Cada Príncipe"], ["question_id", 2784], ["correct", true], ["created_at", 2016-08-19 02:58:04 UTC], ["updated_at", 2016-08-19 02:58:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1.100 Moedas de Prata Ao Total"], ["question_id", 2784], ["correct", false], ["created_at", 2016-08-19 02:58:04 UTC], ["updated_at", 2016-08-19 02:58:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1.100 Moedas de Prata A Cada Ano"], ["question_id", 2784], ["correct", false], ["created_at", 2016-08-19 02:58:04 UTC], ["updated_at", 2016-08-19 02:58:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1.100 Moedas de Prata Todo Mês"], ["question_id", 2784], ["correct", false], ["created_at", 2016-08-19 02:58:04 UTC], ["updated_at", 2016-08-19 02:58:04 UTC]]  (137.0ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto pagava Salomão por um cavalo?\n1,"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto pagava Salomão por um cavalo?\n1,"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quanto pagava Salomão por um cavalo?\n1,"], ["created_at", 2016-08-19 02:58:04 UTC], ["updated_at", 2016-08-19 02:58:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "150 Ciclos de Prata"], ["question_id", 2785], ["correct", true], ["created_at", 2016-08-19 02:58:04 UTC], ["updated_at", 2016-08-19 02:58:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "150 Moedas de Ouro"], ["question_id", 2785], ["correct", false], ["created_at", 2016-08-19 02:58:04 UTC], ["updated_at", 2016-08-19 02:58:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "150 Barras de Cobre"], ["question_id", 2785], ["correct", false], ["created_at", 2016-08-19 02:58:04 UTC], ["updated_at", 2016-08-19 02:58:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "150 Vestes de Ouro"], ["question_id", 2785], ["correct", false], ["created_at", 2016-08-19 02:58:04 UTC], ["updated_at", 2016-08-19 02:58:04 UTC]]  (131.2ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto Satanás tentou a Jesus, o que o mesmo pediu que Jesus transformasse em pão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto Satanás tentou a Jesus, o que o mesmo pediu que Jesus transformasse em pão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quanto Satanás tentou a Jesus, o que o mesmo pediu que Jesus transformasse em pão?"], ["created_at", 2016-08-19 02:58:04 UTC], ["updated_at", 2016-08-19 02:58:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Pedras"], ["question_id", 2786], ["correct", true], ["created_at", 2016-08-19 02:58:04 UTC], ["updated_at", 2016-08-19 02:58:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Cobras"], ["question_id", 2786], ["correct", false], ["created_at", 2016-08-19 02:58:04 UTC], ["updated_at", 2016-08-19 02:58:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Varas"], ["question_id", 2786], ["correct", false], ["created_at", 2016-08-19 02:58:04 UTC], ["updated_at", 2016-08-19 02:58:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Pássaros"], ["question_id", 2786], ["correct", false], ["created_at", 2016-08-19 02:58:04 UTC], ["updated_at", 2016-08-19 02:58:04 UTC]]  (172.6ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto talentos de prata Hamã ofereceu ao Rei Assuero para exterminar os judeus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (1.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto talentos de prata Hamã ofereceu ao Rei Assuero para exterminar os judeus?"], ["LIMIT", 1]] SQL (0.6ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quanto talentos de prata Hamã ofereceu ao Rei Assuero para exterminar os judeus?"], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10000"], ["question_id", 2787], ["correct", true], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2000"], ["question_id", 2787], ["correct", false], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "100000"], ["question_id", 2787], ["correct", false], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "20000"], ["question_id", 2787], ["correct", false], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]]  (144.2ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto tempo durou a celebração de dedicação do Templo de Jerusalém?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto tempo durou a celebração de dedicação do Templo de Jerusalém?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quanto tempo durou a celebração de dedicação do Templo de Jerusalém?"], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "14 Dias"], ["question_id", 2788], ["correct", true], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7 Dias"], ["question_id", 2788], ["correct", false], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Dias"], ["question_id", 2788], ["correct", false], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "30 Dias"], ["question_id", 2788], ["correct", false], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]]  (120.0ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto tempo Moisés ficou no Monte Sinai com Deus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (1.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto tempo Moisés ficou no Monte Sinai com Deus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quanto tempo Moisés ficou no Monte Sinai com Deus?"], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "40 Dias"], ["question_id", 2789], ["correct", true], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4 Dias"], ["question_id", 2789], ["correct", false], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 Semanas"], ["question_id", 2789], ["correct", false], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 Dias"], ["question_id", 2789], ["correct", false], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]]  (129.2ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto tempo passou até que José e Maria reencontrassem Jesus, que havia separado-se deles em uma viagem?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto tempo passou até que José e Maria reencontrassem Jesus, que havia separado-se deles em uma viagem?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quanto tempo passou até que José e Maria reencontrassem Jesus, que havia separado-se deles em uma viagem?"], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Dias"], ["question_id", 2790], ["correct", true], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Dia"], ["question_id", 2790], ["correct", false], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10 Dias"], ["question_id", 2790], ["correct", false], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "6 Dias"], ["question_id", 2790], ["correct", false], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]]  (155.3ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto tempo passou até que Maria percebesse que Jesus, então com 12 anos de idade, não estava na caravana de regresso?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quanto tempo passou até que Maria percebesse que Jesus, então com 12 anos de idade, não estava na caravana de regresso?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quanto tempo passou até que Maria percebesse que Jesus, então com 12 anos de idade, não estava na caravana de regresso?"], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Dia"], ["question_id", 2791], ["correct", true], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Dias"], ["question_id", 2791], ["correct", false], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7 Dias"], ["question_id", 2791], ["correct", false], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10 Dias"], ["question_id", 2791], ["correct", false], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]]  (130.0ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos andares havia na arca de Noé?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos andares havia na arca de Noé?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos andares havia na arca de Noé?"], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 2792], ["correct", true], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 2792], ["correct", false], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 2792], ["correct", false], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas Um"], ["question_id", 2792], ["correct", false], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]]  (132.9ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos Arão era mais velho do que Moisés?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos Arão era mais velho do que Moisés?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos anos Arão era mais velho do que Moisés?"], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 2793], ["correct", true], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 2793], ["correct", false], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 2793], ["correct", false], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "15"], ["question_id", 2793], ["correct", false], ["created_at", 2016-08-19 02:58:05 UTC], ["updated_at", 2016-08-19 02:58:05 UTC]]  (171.6ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos de diferença há entre os irmãos Esaú e Jacó?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos de diferença há entre os irmãos Esaú e Jacó?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos anos de diferença há entre os irmãos Esaú e Jacó?"], ["created_at", 2016-08-19 02:58:06 UTC], ["updated_at", 2016-08-19 02:58:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhum, Pois São Irmãos Gêmeos"], ["question_id", 2794], ["correct", true], ["created_at", 2016-08-19 02:58:06 UTC], ["updated_at", 2016-08-19 02:58:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 Anos"], ["question_id", 2794], ["correct", false], ["created_at", 2016-08-19 02:58:06 UTC], ["updated_at", 2016-08-19 02:58:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Anos"], ["question_id", 2794], ["correct", false], ["created_at", 2016-08-19 02:58:06 UTC], ["updated_at", 2016-08-19 02:58:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Ano"], ["question_id", 2794], ["correct", false], ["created_at", 2016-08-19 02:58:06 UTC], ["updated_at", 2016-08-19 02:58:06 UTC]]  (196.3ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos Jacó precisou trabalhar para casar-se com Léia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos Jacó precisou trabalhar para casar-se com Léia?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos anos Jacó precisou trabalhar para casar-se com Léia?"], ["created_at", 2016-08-19 02:58:06 UTC], ["updated_at", 2016-08-19 02:58:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7"], ["question_id", 2795], ["correct", true], ["created_at", 2016-08-19 02:58:06 UTC], ["updated_at", 2016-08-19 02:58:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "14"], ["question_id", 2795], ["correct", false], ["created_at", 2016-08-19 02:58:06 UTC], ["updated_at", 2016-08-19 02:58:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10"], ["question_id", 2795], ["correct", false], ["created_at", 2016-08-19 02:58:06 UTC], ["updated_at", 2016-08-19 02:58:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 2795], ["correct", false], ["created_at", 2016-08-19 02:58:06 UTC], ["updated_at", 2016-08-19 02:58:06 UTC]]  (262.6ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos Jacó precisou trabalhar para finalmente casar-se com Raquel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos Jacó precisou trabalhar para finalmente casar-se com Raquel?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos anos Jacó precisou trabalhar para finalmente casar-se com Raquel?"], ["created_at", 2016-08-19 02:58:06 UTC], ["updated_at", 2016-08-19 02:58:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "14"], ["question_id", 2796], ["correct", true], ["created_at", 2016-08-19 02:58:06 UTC], ["updated_at", 2016-08-19 02:58:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7"], ["question_id", 2796], ["correct", false], ["created_at", 2016-08-19 02:58:06 UTC], ["updated_at", 2016-08-19 02:58:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10"], ["question_id", 2796], ["correct", false], ["created_at", 2016-08-19 02:58:06 UTC], ["updated_at", 2016-08-19 02:58:06 UTC]] SQL (0.6ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 2796], ["correct", false], ["created_at", 2016-08-19 02:58:06 UTC], ["updated_at", 2016-08-19 02:58:06 UTC]]  (188.5ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos José do Egito tinha quando morreu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (1.2ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos José do Egito tinha quando morreu?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos anos José do Egito tinha quando morreu?"], ["created_at", 2016-08-19 02:58:06 UTC], ["updated_at", 2016-08-19 02:58:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "110"], ["question_id", 2797], ["correct", true], ["created_at", 2016-08-19 02:58:06 UTC], ["updated_at", 2016-08-19 02:58:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "90"], ["question_id", 2797], ["correct", false], ["created_at", 2016-08-19 02:58:06 UTC], ["updated_at", 2016-08-19 02:58:06 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "70"], ["question_id", 2797], ["correct", false], ["created_at", 2016-08-19 02:58:06 UTC], ["updated_at", 2016-08-19 02:58:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "115"], ["question_id", 2797], ["correct", false], ["created_at", 2016-08-19 02:58:06 UTC], ["updated_at", 2016-08-19 02:58:06 UTC]]  (203.7ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos Mefibosete tinha quando foi deixado cair por sua babá, e que com isso afetou seus 2 pés?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos Mefibosete tinha quando foi deixado cair por sua babá, e que com isso afetou seus 2 pés?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos anos Mefibosete tinha quando foi deixado cair por sua babá, e que com isso afetou seus 2 pés?"], ["created_at", 2016-08-19 02:58:07 UTC], ["updated_at", 2016-08-19 02:58:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 2798], ["correct", true], ["created_at", 2016-08-19 02:58:07 UTC], ["updated_at", 2016-08-19 02:58:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 2798], ["correct", false], ["created_at", 2016-08-19 02:58:07 UTC], ["updated_at", 2016-08-19 02:58:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 2798], ["correct", false], ["created_at", 2016-08-19 02:58:07 UTC], ["updated_at", 2016-08-19 02:58:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 2798], ["correct", false], ["created_at", 2016-08-19 02:58:07 UTC], ["updated_at", 2016-08-19 02:58:07 UTC]]  (136.8ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos o rei Salomão levou para construir o Templo de Deus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos o rei Salomão levou para construir o Templo de Deus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos anos o rei Salomão levou para construir o Templo de Deus?"], ["created_at", 2016-08-19 02:58:07 UTC], ["updated_at", 2016-08-19 02:58:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7"], ["question_id", 2799], ["correct", true], ["created_at", 2016-08-19 02:58:07 UTC], ["updated_at", 2016-08-19 02:58:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12"], ["question_id", 2799], ["correct", false], ["created_at", 2016-08-19 02:58:07 UTC], ["updated_at", 2016-08-19 02:58:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 2799], ["correct", false], ["created_at", 2016-08-19 02:58:07 UTC], ["updated_at", 2016-08-19 02:58:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 2799], ["correct", false], ["created_at", 2016-08-19 02:58:07 UTC], ["updated_at", 2016-08-19 02:58:07 UTC]]  (221.5ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos tinha Manassés quando foi constituído rei do povo de Israel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos tinha Manassés quando foi constituído rei do povo de Israel?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos anos tinha Manassés quando foi constituído rei do povo de Israel?"], ["created_at", 2016-08-19 02:58:07 UTC], ["updated_at", 2016-08-19 02:58:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12"], ["question_id", 2800], ["correct", true], ["created_at", 2016-08-19 02:58:07 UTC], ["updated_at", 2016-08-19 02:58:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "25"], ["question_id", 2800], ["correct", false], ["created_at", 2016-08-19 02:58:07 UTC], ["updated_at", 2016-08-19 02:58:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "45"], ["question_id", 2800], ["correct", false], ["created_at", 2016-08-19 02:58:07 UTC], ["updated_at", 2016-08-19 02:58:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7"], ["question_id", 2800], ["correct", false], ["created_at", 2016-08-19 02:58:07 UTC], ["updated_at", 2016-08-19 02:58:07 UTC]]  (153.2ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos viveu Matusalém, o homem mais velho da Bíblia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos anos viveu Matusalém, o homem mais velho da Bíblia?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos anos viveu Matusalém, o homem mais velho da Bíblia?"], ["created_at", 2016-08-19 02:58:07 UTC], ["updated_at", 2016-08-19 02:58:07 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "969"], ["question_id", 2801], ["correct", true], ["created_at", 2016-08-19 02:58:07 UTC], ["updated_at", 2016-08-19 02:58:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "909"], ["question_id", 2801], ["correct", false], ["created_at", 2016-08-19 02:58:07 UTC], ["updated_at", 2016-08-19 02:58:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "999"], ["question_id", 2801], ["correct", false], ["created_at", 2016-08-19 02:58:07 UTC], ["updated_at", 2016-08-19 02:58:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "949"], ["question_id", 2801], ["correct", false], ["created_at", 2016-08-19 02:58:07 UTC], ["updated_at", 2016-08-19 02:58:07 UTC]]  (154.4ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos apóstolos Jesus chamou?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos apóstolos Jesus chamou?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos apóstolos Jesus chamou?"], ["created_at", 2016-08-19 02:58:07 UTC], ["updated_at", 2016-08-19 02:58:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12"], ["question_id", 2802], ["correct", true], ["created_at", 2016-08-19 02:58:07 UTC], ["updated_at", 2016-08-19 02:58:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "11"], ["question_id", 2802], ["correct", false], ["created_at", 2016-08-19 02:58:07 UTC], ["updated_at", 2016-08-19 02:58:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "13"], ["question_id", 2802], ["correct", false], ["created_at", 2016-08-19 02:58:07 UTC], ["updated_at", 2016-08-19 02:58:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10"], ["question_id", 2802], ["correct", false], ["created_at", 2016-08-19 02:58:07 UTC], ["updated_at", 2016-08-19 02:58:07 UTC]]  (233.0ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos bois foram sacrificados como oferta pacífica quando Deus entrou no Templo de Jerusalém?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos bois foram sacrificados como oferta pacífica quando Deus entrou no Templo de Jerusalém?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos bois foram sacrificados como oferta pacífica quando Deus entrou no Templo de Jerusalém?"], ["created_at", 2016-08-19 02:58:07 UTC], ["updated_at", 2016-08-19 02:58:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "22000"], ["question_id", 2803], ["correct", true], ["created_at", 2016-08-19 02:58:07 UTC], ["updated_at", 2016-08-19 02:58:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2200"], ["question_id", 2803], ["correct", false], ["created_at", 2016-08-19 02:58:07 UTC], ["updated_at", 2016-08-19 02:58:07 UTC]] SQL (0.8ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "200"], ["question_id", 2803], ["correct", false], ["created_at", 2016-08-19 02:58:07 UTC], ["updated_at", 2016-08-19 02:58:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12000"], ["question_id", 2803], ["correct", false], ["created_at", 2016-08-19 02:58:07 UTC], ["updated_at", 2016-08-19 02:58:07 UTC]]  (210.0ms) commit transaction Quizzes::Question Exists (1.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos cânticos escreveu Salomão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos cânticos escreveu Salomão?"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos cânticos escreveu Salomão?"], ["created_at", 2016-08-19 02:58:08 UTC], ["updated_at", 2016-08-19 02:58:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1005"], ["question_id", 2804], ["correct", true], ["created_at", 2016-08-19 02:58:08 UTC], ["updated_at", 2016-08-19 02:58:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "505"], ["question_id", 2804], ["correct", false], ["created_at", 2016-08-19 02:58:08 UTC], ["updated_at", 2016-08-19 02:58:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "805"], ["question_id", 2804], ["correct", false], ["created_at", 2016-08-19 02:58:08 UTC], ["updated_at", 2016-08-19 02:58:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "205"], ["question_id", 2804], ["correct", false], ["created_at", 2016-08-19 02:58:08 UTC], ["updated_at", 2016-08-19 02:58:08 UTC]]  (194.9ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos capítulos a Bíblia possui?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos capítulos a Bíblia possui?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos capítulos a Bíblia possui?"], ["created_at", 2016-08-19 02:58:08 UTC], ["updated_at", 2016-08-19 02:58:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1189"], ["question_id", 2805], ["correct", true], ["created_at", 2016-08-19 02:58:08 UTC], ["updated_at", 2016-08-19 02:58:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "964"], ["question_id", 2805], ["correct", false], ["created_at", 2016-08-19 02:58:08 UTC], ["updated_at", 2016-08-19 02:58:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2412"], ["question_id", 2805], ["correct", false], ["created_at", 2016-08-19 02:58:08 UTC], ["updated_at", 2016-08-19 02:58:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1518"], ["question_id", 2805], ["correct", false], ["created_at", 2016-08-19 02:58:08 UTC], ["updated_at", 2016-08-19 02:58:08 UTC]]  (270.7ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos capítulos possui o maior livro da Bíblia (Salmos)?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos capítulos possui o maior livro da Bíblia (Salmos)?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos capítulos possui o maior livro da Bíblia (Salmos)?"], ["created_at", 2016-08-19 02:58:08 UTC], ["updated_at", 2016-08-19 02:58:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "150"], ["question_id", 2806], ["correct", true], ["created_at", 2016-08-19 02:58:08 UTC], ["updated_at", 2016-08-19 02:58:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "65"], ["question_id", 2806], ["correct", false], ["created_at", 2016-08-19 02:58:08 UTC], ["updated_at", 2016-08-19 02:58:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "95"], ["question_id", 2806], ["correct", false], ["created_at", 2016-08-19 02:58:08 UTC], ["updated_at", 2016-08-19 02:58:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "119"], ["question_id", 2806], ["correct", false], ["created_at", 2016-08-19 02:58:08 UTC], ["updated_at", 2016-08-19 02:58:08 UTC]]  (147.9ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos cestos de comida ainda sobraram após todas as pessoas terem se alimentado no milagre da multiplicação?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos cestos de comida ainda sobraram após todas as pessoas terem se alimentado no milagre da multiplicação?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos cestos de comida ainda sobraram após todas as pessoas terem se alimentado no milagre da multiplicação?"], ["created_at", 2016-08-19 02:58:08 UTC], ["updated_at", 2016-08-19 02:58:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12 Cestos"], ["question_id", 2807], ["correct", true], ["created_at", 2016-08-19 02:58:08 UTC], ["updated_at", 2016-08-19 02:58:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10 Cestos"], ["question_id", 2807], ["correct", false], ["created_at", 2016-08-19 02:58:08 UTC], ["updated_at", 2016-08-19 02:58:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Cestos"], ["question_id", 2807], ["correct", false], ["created_at", 2016-08-19 02:58:08 UTC], ["updated_at", 2016-08-19 02:58:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "15 Cestos"], ["question_id", 2807], ["correct", false], ["created_at", 2016-08-19 02:58:08 UTC], ["updated_at", 2016-08-19 02:58:08 UTC]]  (196.0ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos conveses havia na arca de Noé?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos conveses havia na arca de Noé?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos conveses havia na arca de Noé?"], ["created_at", 2016-08-19 02:58:09 UTC], ["updated_at", 2016-08-19 02:58:09 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 2808], ["correct", true], ["created_at", 2016-08-19 02:58:09 UTC], ["updated_at", 2016-08-19 02:58:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 2808], ["correct", false], ["created_at", 2016-08-19 02:58:09 UTC], ["updated_at", 2016-08-19 02:58:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 2808], ["correct", false], ["created_at", 2016-08-19 02:58:09 UTC], ["updated_at", 2016-08-19 02:58:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhum"], ["question_id", 2808], ["correct", false], ["created_at", 2016-08-19 02:58:09 UTC], ["updated_at", 2016-08-19 02:58:09 UTC]]  (138.1ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos demônios Jesus expulsou de Maria Madalena?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos demônios Jesus expulsou de Maria Madalena?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos demônios Jesus expulsou de Maria Madalena?"], ["created_at", 2016-08-19 02:58:09 UTC], ["updated_at", 2016-08-19 02:58:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7"], ["question_id", 2809], ["correct", true], ["created_at", 2016-08-19 02:58:09 UTC], ["updated_at", 2016-08-19 02:58:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 2809], ["correct", false], ["created_at", 2016-08-19 02:58:09 UTC], ["updated_at", 2016-08-19 02:58:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 2809], ["correct", false], ["created_at", 2016-08-19 02:58:09 UTC], ["updated_at", 2016-08-19 02:58:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 2809], ["correct", false], ["created_at", 2016-08-19 02:58:09 UTC], ["updated_at", 2016-08-19 02:58:09 UTC]]  (113.2ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos dias a mãe de Rebeca sugeriu que ela ficasse com seus parentes antes de partir para se casar?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos dias a mãe de Rebeca sugeriu que ela ficasse com seus parentes antes de partir para se casar?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos dias a mãe de Rebeca sugeriu que ela ficasse com seus parentes antes de partir para se casar?"], ["created_at", 2016-08-19 02:58:09 UTC], ["updated_at", 2016-08-19 02:58:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10 Dias"], ["question_id", 2810], ["correct", true], ["created_at", 2016-08-19 02:58:09 UTC], ["updated_at", 2016-08-19 02:58:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "30 Dias"], ["question_id", 2810], ["correct", false], ["created_at", 2016-08-19 02:58:09 UTC], ["updated_at", 2016-08-19 02:58:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 Dias"], ["question_id", 2810], ["correct", false], ["created_at", 2016-08-19 02:58:09 UTC], ["updated_at", 2016-08-19 02:58:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "14 Dias"], ["question_id", 2810], ["correct", false], ["created_at", 2016-08-19 02:58:09 UTC], ["updated_at", 2016-08-19 02:58:09 UTC]]  (129.0ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos dias Jesus jejuou enquanto esteve no deserto, antes de iniciar seu ministério?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos dias Jesus jejuou enquanto esteve no deserto, antes de iniciar seu ministério?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos dias Jesus jejuou enquanto esteve no deserto, antes de iniciar seu ministério?"], ["created_at", 2016-08-19 02:58:09 UTC], ["updated_at", 2016-08-19 02:58:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "40"], ["question_id", 2811], ["correct", true], ["created_at", 2016-08-19 02:58:09 UTC], ["updated_at", 2016-08-19 02:58:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "30"], ["question_id", 2811], ["correct", false], ["created_at", 2016-08-19 02:58:09 UTC], ["updated_at", 2016-08-19 02:58:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "50"], ["question_id", 2811], ["correct", false], ["created_at", 2016-08-19 02:58:09 UTC], ["updated_at", 2016-08-19 02:58:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "20"], ["question_id", 2811], ["correct", false], ["created_at", 2016-08-19 02:58:09 UTC], ["updated_at", 2016-08-19 02:58:09 UTC]]  (189.1ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos dias Lázaro esteve sepultado antes de ser ressuscitado por Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos dias Lázaro esteve sepultado antes de ser ressuscitado por Jesus?"], ["LIMIT", 1]] SQL (0.9ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos dias Lázaro esteve sepultado antes de ser ressuscitado por Jesus?"], ["created_at", 2016-08-19 02:58:09 UTC], ["updated_at", 2016-08-19 02:58:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 2812], ["correct", true], ["created_at", 2016-08-19 02:58:09 UTC], ["updated_at", 2016-08-19 02:58:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7"], ["question_id", 2812], ["correct", false], ["created_at", 2016-08-19 02:58:09 UTC], ["updated_at", 2016-08-19 02:58:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 2812], ["correct", false], ["created_at", 2016-08-19 02:58:09 UTC], ["updated_at", 2016-08-19 02:58:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 2812], ["correct", false], ["created_at", 2016-08-19 02:58:09 UTC], ["updated_at", 2016-08-19 02:58:09 UTC]]  (178.8ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos discípulos Jesus mandou tomar emprestado um jumento?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos discípulos Jesus mandou tomar emprestado um jumento?"], ["LIMIT", 1]] SQL (0.9ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos discípulos Jesus mandou tomar emprestado um jumento?"], ["created_at", 2016-08-19 02:58:09 UTC], ["updated_at", 2016-08-19 02:58:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 2813], ["correct", true], ["created_at", 2016-08-19 02:58:09 UTC], ["updated_at", 2016-08-19 02:58:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 2813], ["correct", false], ["created_at", 2016-08-19 02:58:09 UTC], ["updated_at", 2016-08-19 02:58:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 2813], ["correct", false], ["created_at", 2016-08-19 02:58:09 UTC], ["updated_at", 2016-08-19 02:58:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 2813], ["correct", false], ["created_at", 2016-08-19 02:58:09 UTC], ["updated_at", 2016-08-19 02:58:09 UTC]]  (145.6ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos Evangelhos existem no Antigo Testamento?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos Evangelhos existem no Antigo Testamento?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos Evangelhos existem no Antigo Testamento?"], ["created_at", 2016-08-19 02:58:10 UTC], ["updated_at", 2016-08-19 02:58:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhum"], ["question_id", 2814], ["correct", true], ["created_at", 2016-08-19 02:58:10 UTC], ["updated_at", 2016-08-19 02:58:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 2814], ["correct", false], ["created_at", 2016-08-19 02:58:10 UTC], ["updated_at", 2016-08-19 02:58:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 2814], ["correct", false], ["created_at", 2016-08-19 02:58:10 UTC], ["updated_at", 2016-08-19 02:58:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 2814], ["correct", false], ["created_at", 2016-08-19 02:58:10 UTC], ["updated_at", 2016-08-19 02:58:10 UTC]]  (136.6ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos Evangelhos existem no Novo Testamento?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos Evangelhos existem no Novo Testamento?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos Evangelhos existem no Novo Testamento?"], ["created_at", 2016-08-19 02:58:10 UTC], ["updated_at", 2016-08-19 02:58:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 2815], ["correct", true], ["created_at", 2016-08-19 02:58:10 UTC], ["updated_at", 2016-08-19 02:58:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 2815], ["correct", false], ["created_at", 2016-08-19 02:58:10 UTC], ["updated_at", 2016-08-19 02:58:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 2815], ["correct", false], ["created_at", 2016-08-19 02:58:10 UTC], ["updated_at", 2016-08-19 02:58:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 2815], ["correct", false], ["created_at", 2016-08-19 02:58:10 UTC], ["updated_at", 2016-08-19 02:58:10 UTC]]  (186.9ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filhos de Davi nasceram durante seu reinado em Hebrom?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filhos de Davi nasceram durante seu reinado em Hebrom?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos filhos de Davi nasceram durante seu reinado em Hebrom?"], ["created_at", 2016-08-19 02:58:10 UTC], ["updated_at", 2016-08-19 02:58:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "6"], ["question_id", 2816], ["correct", true], ["created_at", 2016-08-19 02:58:10 UTC], ["updated_at", 2016-08-19 02:58:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 2816], ["correct", false], ["created_at", 2016-08-19 02:58:10 UTC], ["updated_at", 2016-08-19 02:58:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 2816], ["correct", false], ["created_at", 2016-08-19 02:58:10 UTC], ["updated_at", 2016-08-19 02:58:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 2816], ["correct", false], ["created_at", 2016-08-19 02:58:10 UTC], ["updated_at", 2016-08-19 02:58:10 UTC]]  (111.6ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filhos de José se tornaram líderes das tribos de Israel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filhos de José se tornaram líderes das tribos de Israel?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos filhos de José se tornaram líderes das tribos de Israel?"], ["created_at", 2016-08-19 02:58:10 UTC], ["updated_at", 2016-08-19 02:58:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhum"], ["question_id", 2817], ["correct", true], ["created_at", 2016-08-19 02:58:10 UTC], ["updated_at", 2016-08-19 02:58:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12"], ["question_id", 2817], ["correct", false], ["created_at", 2016-08-19 02:58:10 UTC], ["updated_at", 2016-08-19 02:58:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas 6"], ["question_id", 2817], ["correct", false], ["created_at", 2016-08-19 02:58:10 UTC], ["updated_at", 2016-08-19 02:58:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "18"], ["question_id", 2817], ["correct", false], ["created_at", 2016-08-19 02:58:10 UTC], ["updated_at", 2016-08-19 02:58:10 UTC]]  (337.8ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filhos Jair, juiz de Israel, tinha?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filhos Jair, juiz de Israel, tinha?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos filhos Jair, juiz de Israel, tinha?"], ["created_at", 2016-08-19 02:58:10 UTC], ["updated_at", 2016-08-19 02:58:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "30"], ["question_id", 2818], ["correct", true], ["created_at", 2016-08-19 02:58:10 UTC], ["updated_at", 2016-08-19 02:58:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 2818], ["correct", false], ["created_at", 2016-08-19 02:58:10 UTC], ["updated_at", 2016-08-19 02:58:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "13"], ["question_id", 2818], ["correct", false], ["created_at", 2016-08-19 02:58:10 UTC], ["updated_at", 2016-08-19 02:58:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "23"], ["question_id", 2818], ["correct", false], ["created_at", 2016-08-19 02:58:10 UTC], ["updated_at", 2016-08-19 02:58:10 UTC]]  (138.2ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filhos Noé tinha?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filhos Noé tinha?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos filhos Noé tinha?"], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 2819], ["correct", true], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 2819], ["correct", false], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 2819], ["correct", false], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7"], ["question_id", 2819], ["correct", false], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]]  (145.4ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filisteus morreram quando Sansão destruiu a construção em que se encontravam?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filisteus morreram quando Sansão destruiu a construção em que se encontravam?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos filisteus morreram quando Sansão destruiu a construção em que se encontravam?"], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3 Mil"], ["question_id", 2820], ["correct", true], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 Mil"], ["question_id", 2820], ["correct", false], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "300"], ["question_id", 2820], ["correct", false], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5 Mil"], ["question_id", 2820], ["correct", false], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]]  (146.4ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filisteus Sansão matou com apenas uma única queixada de jumento?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos filisteus Sansão matou com apenas uma única queixada de jumento?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos filisteus Sansão matou com apenas uma única queixada de jumento?"], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1000"], ["question_id", 2821], ["correct", true], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "300"], ["question_id", 2821], ["correct", false], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "600"], ["question_id", 2821], ["correct", false], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1500"], ["question_id", 2821], ["correct", false], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]]  (128.8ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos foram os dias da criação?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos foram os dias da criação?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos foram os dias da criação?"], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "6"], ["question_id", 2822], ["correct", true], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7"], ["question_id", 2822], ["correct", false], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 2822], ["correct", false], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhum"], ["question_id", 2822], ["correct", false], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]]  (136.8ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos foram os filhos que Davi teve com Bate-Seba?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos foram os filhos que Davi teve com Bate-Seba?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos foram os filhos que Davi teve com Bate-Seba?"], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 2823], ["correct", true], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 2823], ["correct", false], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 2823], ["correct", false], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 2823], ["correct", false], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]]  (145.0ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos Governadores o rei Dario nomeou quando assumiu o reino da Babilônia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos Governadores o rei Dario nomeou quando assumiu o reino da Babilônia?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos Governadores o rei Dario nomeou quando assumiu o reino da Babilônia?"], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "120"], ["question_id", 2824], ["correct", true], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12"], ["question_id", 2824], ["correct", false], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 2824], ["correct", false], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "60"], ["question_id", 2824], ["correct", false], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]]  (120.2ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos homens foram precisos para amarrar Sansão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos homens foram precisos para amarrar Sansão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos homens foram precisos para amarrar Sansão?"], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3000"], ["question_id", 2825], ["correct", true], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "30"], ["question_id", 2825], ["correct", false], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "300"], ["question_id", 2825], ["correct", false], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 2825], ["correct", false], ["created_at", 2016-08-19 02:58:11 UTC], ["updated_at", 2016-08-19 02:58:11 UTC]]  (136.7ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos músicos faziam parte da orquestra do rei Davi?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos músicos faziam parte da orquestra do rei Davi?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos músicos faziam parte da orquestra do rei Davi?"], ["created_at", 2016-08-19 02:58:12 UTC], ["updated_at", 2016-08-19 02:58:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "288"], ["question_id", 2826], ["correct", true], ["created_at", 2016-08-19 02:58:12 UTC], ["updated_at", 2016-08-19 02:58:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "28"], ["question_id", 2826], ["correct", false], ["created_at", 2016-08-19 02:58:12 UTC], ["updated_at", 2016-08-19 02:58:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "88"], ["question_id", 2826], ["correct", false], ["created_at", 2016-08-19 02:58:12 UTC], ["updated_at", 2016-08-19 02:58:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "148"], ["question_id", 2826], ["correct", false], ["created_at", 2016-08-19 02:58:12 UTC], ["updated_at", 2016-08-19 02:58:12 UTC]]  (128.4ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos personagens do Velho Testamento apareceram na montanha durante a transfiguração?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos personagens do Velho Testamento apareceram na montanha durante a transfiguração?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos personagens do Velho Testamento apareceram na montanha durante a transfiguração?"], ["created_at", 2016-08-19 02:58:12 UTC], ["updated_at", 2016-08-19 02:58:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 2827], ["correct", true], ["created_at", 2016-08-19 02:58:12 UTC], ["updated_at", 2016-08-19 02:58:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 2827], ["correct", false], ["created_at", 2016-08-19 02:58:12 UTC], ["updated_at", 2016-08-19 02:58:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 2827], ["correct", false], ["created_at", 2016-08-19 02:58:12 UTC], ["updated_at", 2016-08-19 02:58:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 2827], ["correct", false], ["created_at", 2016-08-19 02:58:12 UTC], ["updated_at", 2016-08-19 02:58:12 UTC]]  (104.9ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos Presidentes o rei Dario nomeou quando assumiu o reino da Babilônia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos Presidentes o rei Dario nomeou quando assumiu o reino da Babilônia?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos Presidentes o rei Dario nomeou quando assumiu o reino da Babilônia?"], ["created_at", 2016-08-19 02:58:12 UTC], ["updated_at", 2016-08-19 02:58:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 2828], ["correct", true], ["created_at", 2016-08-19 02:58:12 UTC], ["updated_at", 2016-08-19 02:58:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "6"], ["question_id", 2828], ["correct", false], ["created_at", 2016-08-19 02:58:12 UTC], ["updated_at", 2016-08-19 02:58:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "9"], ["question_id", 2828], ["correct", false], ["created_at", 2016-08-19 02:58:12 UTC], ["updated_at", 2016-08-19 02:58:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 2828], ["correct", false], ["created_at", 2016-08-19 02:58:12 UTC], ["updated_at", 2016-08-19 02:58:12 UTC]]  (105.3ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos príncipes filisteus ofereceram a Dalila 1.100 moedas de prata?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos príncipes filisteus ofereceram a Dalila 1.100 moedas de prata?"], ["LIMIT", 1]] SQL (32.8ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos príncipes filisteus ofereceram a Dalila 1.100 moedas de prata?"], ["created_at", 2016-08-19 02:58:12 UTC], ["updated_at", 2016-08-19 02:58:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 2829], ["correct", true], ["created_at", 2016-08-19 02:58:12 UTC], ["updated_at", 2016-08-19 02:58:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas 1"], ["question_id", 2829], ["correct", false], ["created_at", 2016-08-19 02:58:12 UTC], ["updated_at", 2016-08-19 02:58:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todos Os 10"], ["question_id", 2829], ["correct", false], ["created_at", 2016-08-19 02:58:12 UTC], ["updated_at", 2016-08-19 02:58:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7"], ["question_id", 2829], ["correct", false], ["created_at", 2016-08-19 02:58:12 UTC], ["updated_at", 2016-08-19 02:58:12 UTC]]  (149.3ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos provérbios escreveu Salomão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos provérbios escreveu Salomão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos provérbios escreveu Salomão?"], ["created_at", 2016-08-19 02:58:12 UTC], ["updated_at", 2016-08-19 02:58:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3000"], ["question_id", 2830], ["correct", true], ["created_at", 2016-08-19 02:58:12 UTC], ["updated_at", 2016-08-19 02:58:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "13000"], ["question_id", 2830], ["correct", false], ["created_at", 2016-08-19 02:58:12 UTC], ["updated_at", 2016-08-19 02:58:12 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1500"], ["question_id", 2830], ["correct", false], ["created_at", 2016-08-19 02:58:12 UTC], ["updated_at", 2016-08-19 02:58:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5000"], ["question_id", 2830], ["correct", false], ["created_at", 2016-08-19 02:58:12 UTC], ["updated_at", 2016-08-19 02:58:12 UTC]]  (197.1ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos querubins de ouro haviam sobre o propiciatório da Arca da Aliança?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos querubins de ouro haviam sobre o propiciatório da Arca da Aliança?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos querubins de ouro haviam sobre o propiciatório da Arca da Aliança?"], ["created_at", 2016-08-19 02:58:12 UTC], ["updated_at", 2016-08-19 02:58:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 2831], ["correct", true], ["created_at", 2016-08-19 02:58:12 UTC], ["updated_at", 2016-08-19 02:58:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1"], ["question_id", 2831], ["correct", false], ["created_at", 2016-08-19 02:58:12 UTC], ["updated_at", 2016-08-19 02:58:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 2831], ["correct", false], ["created_at", 2016-08-19 02:58:12 UTC], ["updated_at", 2016-08-19 02:58:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhum de Ouro, Mas 2 de Prata"], ["question_id", 2831], ["correct", false], ["created_at", 2016-08-19 02:58:12 UTC], ["updated_at", 2016-08-19 02:58:12 UTC]]  (197.1ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos trabalhadores foram designados para a construção do Templo de Jerusalém?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos trabalhadores foram designados para a construção do Templo de Jerusalém?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos trabalhadores foram designados para a construção do Templo de Jerusalém?"], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "30000"], ["question_id", 2832], ["correct", true], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10000"], ["question_id", 2832], ["correct", false], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5000"], ["question_id", 2832], ["correct", false], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "70000"], ["question_id", 2832], ["correct", false], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]]  (121.8ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos versículos a Bíblia possui?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos versículos a Bíblia possui?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos versículos a Bíblia possui?"], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "31102"], ["question_id", 2833], ["correct", true], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "19453"], ["question_id", 2833], ["correct", false], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "54870"], ["question_id", 2833], ["correct", false], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "69541"], ["question_id", 2833], ["correct", false], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]]  (156.4ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos versículos possui o maior capítulo da Bíblia (Salmos 119)?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos versículos possui o maior capítulo da Bíblia (Salmos 119)?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos versículos possui o maior capítulo da Bíblia (Salmos 119)?"], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "176"], ["question_id", 2834], ["correct", true], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "150"], ["question_id", 2834], ["correct", false], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "145"], ["question_id", 2834], ["correct", false], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "160"], ["question_id", 2834], ["correct", false], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]]  (129.9ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos versículos possui o menor capítulo da Bíblia (Salmos 117)?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos versículos possui o menor capítulo da Bíblia (Salmos 117)?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos versículos possui o menor capítulo da Bíblia (Salmos 117)?"], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 2835], ["correct", true], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "9"], ["question_id", 2835], ["correct", false], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "6"], ["question_id", 2835], ["correct", false], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4"], ["question_id", 2835], ["correct", false], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]]  (114.8ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos versículos possui o menor livro da Bíblia (2ª João)?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quantos versículos possui o menor livro da Bíblia (2ª João)?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quantos versículos possui o menor livro da Bíblia (2ª João)?"], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "13"], ["question_id", 2836], ["correct", true], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "15"], ["question_id", 2836], ["correct", false], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "11"], ["question_id", 2836], ["correct", false], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "17"], ["question_id", 2836], ["correct", false], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]]  (172.0ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que animais os 30 filhos de Jair, juiz de Israel, montavam?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que animais os 30 filhos de Jair, juiz de Israel, montavam?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que animais os 30 filhos de Jair, juiz de Israel, montavam?"], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jumentos"], ["question_id", 2837], ["correct", true], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cavalos"], ["question_id", 2837], ["correct", false], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Camelos"], ["question_id", 2837], ["correct", false], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Burros"], ["question_id", 2837], ["correct", false], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]]  (132.3ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que animal Balaão possuía que chegou a falar após ter visto um anjo do Senhor?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que animal Balaão possuía que chegou a falar após ter visto um anjo do Senhor?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que animal Balaão possuía que chegou a falar após ter visto um anjo do Senhor?"], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Burro"], ["question_id", 2838], ["correct", true], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cavalo"], ["question_id", 2838], ["correct", false], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cachorro"], ["question_id", 2838], ["correct", false], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vaca"], ["question_id", 2838], ["correct", false], ["created_at", 2016-08-19 02:58:13 UTC], ["updated_at", 2016-08-19 02:58:13 UTC]]  (121.9ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que animal comprimiu o pé de Balaão contra o muro?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que animal comprimiu o pé de Balaão contra o muro?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que animal comprimiu o pé de Balaão contra o muro?"], ["created_at", 2016-08-19 02:58:14 UTC], ["updated_at", 2016-08-19 02:58:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jumenta"], ["question_id", 2839], ["correct", true], ["created_at", 2016-08-19 02:58:14 UTC], ["updated_at", 2016-08-19 02:58:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Burro"], ["question_id", 2839], ["correct", false], ["created_at", 2016-08-19 02:58:14 UTC], ["updated_at", 2016-08-19 02:58:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cavalo"], ["question_id", 2839], ["correct", false], ["created_at", 2016-08-19 02:58:14 UTC], ["updated_at", 2016-08-19 02:58:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Boi"], ["question_id", 2839], ["correct", false], ["created_at", 2016-08-19 02:58:14 UTC], ["updated_at", 2016-08-19 02:58:14 UTC]]  (138.7ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que animal teria que ser reposto cinco vezes mais se fosse roubado por alguém?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que animal teria que ser reposto cinco vezes mais se fosse roubado por alguém?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que animal teria que ser reposto cinco vezes mais se fosse roubado por alguém?"], ["created_at", 2016-08-19 02:58:14 UTC], ["updated_at", 2016-08-19 02:58:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Boi"], ["question_id", 2840], ["correct", true], ["created_at", 2016-08-19 02:58:14 UTC], ["updated_at", 2016-08-19 02:58:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ovelha"], ["question_id", 2840], ["correct", false], ["created_at", 2016-08-19 02:58:14 UTC], ["updated_at", 2016-08-19 02:58:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jumento"], ["question_id", 2840], ["correct", false], ["created_at", 2016-08-19 02:58:14 UTC], ["updated_at", 2016-08-19 02:58:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cabrito"], ["question_id", 2840], ["correct", false], ["created_at", 2016-08-19 02:58:14 UTC], ["updated_at", 2016-08-19 02:58:14 UTC]]  (122.3ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que cena incrível Moisés presenciou quando ele estava no Monte Horebe?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que cena incrível Moisés presenciou quando ele estava no Monte Horebe?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que cena incrível Moisés presenciou quando ele estava no Monte Horebe?"], ["created_at", 2016-08-19 02:58:14 UTC], ["updated_at", 2016-08-19 02:58:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Arbusto Em Chamas Que Não Se Consumia"], ["question_id", 2841], ["correct", true], ["created_at", 2016-08-19 02:58:14 UTC], ["updated_at", 2016-08-19 02:58:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Água Jorrando de Uma Pedra"], ["question_id", 2841], ["correct", false], ["created_at", 2016-08-19 02:58:14 UTC], ["updated_at", 2016-08-19 02:58:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Bando de Codornizes Que Falavam"], ["question_id", 2841], ["correct", false], ["created_at", 2016-08-19 02:58:14 UTC], ["updated_at", 2016-08-19 02:58:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Ovelha Que Voava"], ["question_id", 2841], ["correct", false], ["created_at", 2016-08-19 02:58:14 UTC], ["updated_at", 2016-08-19 02:58:14 UTC]]  (121.7ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que desejava construir o Templo de Deus, mas cujo pedido foi negado por Deus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que desejava construir o Templo de Deus, mas cujo pedido foi negado por Deus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que desejava construir o Templo de Deus, mas cujo pedido foi negado por Deus?"], ["created_at", 2016-08-19 02:58:14 UTC], ["updated_at", 2016-08-19 02:58:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 2842], ["correct", true], ["created_at", 2016-08-19 02:58:14 UTC], ["updated_at", 2016-08-19 02:58:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2842], ["correct", false], ["created_at", 2016-08-19 02:58:14 UTC], ["updated_at", 2016-08-19 02:58:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel"], ["question_id", 2842], ["correct", false], ["created_at", 2016-08-19 02:58:14 UTC], ["updated_at", 2016-08-19 02:58:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 2842], ["correct", false], ["created_at", 2016-08-19 02:58:14 UTC], ["updated_at", 2016-08-19 02:58:14 UTC]]  (147.6ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que discípulo Jesus encontrou sob uma figueira?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que discípulo Jesus encontrou sob uma figueira?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que discípulo Jesus encontrou sob uma figueira?"], ["created_at", 2016-08-19 02:58:14 UTC], ["updated_at", 2016-08-19 02:58:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Natanael"], ["question_id", 2843], ["correct", true], ["created_at", 2016-08-19 02:58:14 UTC], ["updated_at", 2016-08-19 02:58:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mateus"], ["question_id", 2843], ["correct", false], ["created_at", 2016-08-19 02:58:14 UTC], ["updated_at", 2016-08-19 02:58:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marcos"], ["question_id", 2843], ["correct", false], ["created_at", 2016-08-19 02:58:14 UTC], ["updated_at", 2016-08-19 02:58:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 2843], ["correct", false], ["created_at", 2016-08-19 02:58:14 UTC], ["updated_at", 2016-08-19 02:58:14 UTC]]  (180.1ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que evento ocorreu quando Jesus tinha apenas 8 dias de idade?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que evento ocorreu quando Jesus tinha apenas 8 dias de idade?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que evento ocorreu quando Jesus tinha apenas 8 dias de idade?"], ["created_at", 2016-08-19 02:58:14 UTC], ["updated_at", 2016-08-19 02:58:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Foi Circuncidado"], ["question_id", 2844], ["correct", true], ["created_at", 2016-08-19 02:58:14 UTC], ["updated_at", 2016-08-19 02:58:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Foi Desmamado"], ["question_id", 2844], ["correct", false], ["created_at", 2016-08-19 02:58:14 UTC], ["updated_at", 2016-08-19 02:58:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Foi Batizado"], ["question_id", 2844], ["correct", false], ["created_at", 2016-08-19 02:58:14 UTC], ["updated_at", 2016-08-19 02:58:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Foi Apresentado Ao Templo"], ["question_id", 2844], ["correct", false], ["created_at", 2016-08-19 02:58:14 UTC], ["updated_at", 2016-08-19 02:58:14 UTC]]  (147.3ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que faixa de montanhas produziu as árvores de cedro e de cipreste que Salomão utilizou na construção do Templo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que faixa de montanhas produziu as árvores de cedro e de cipreste que Salomão utilizou na construção do Templo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que faixa de montanhas produziu as árvores de cedro e de cipreste que Salomão utilizou na construção do Templo?"], ["created_at", 2016-08-19 02:58:15 UTC], ["updated_at", 2016-08-19 02:58:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Montanhas do Líbano"], ["question_id", 2845], ["correct", true], ["created_at", 2016-08-19 02:58:15 UTC], ["updated_at", 2016-08-19 02:58:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Montanhas da Síria"], ["question_id", 2845], ["correct", false], ["created_at", 2016-08-19 02:58:15 UTC], ["updated_at", 2016-08-19 02:58:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Montanhas da Assíria"], ["question_id", 2845], ["correct", false], ["created_at", 2016-08-19 02:58:15 UTC], ["updated_at", 2016-08-19 02:58:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Montanhas da Líbia"], ["question_id", 2845], ["correct", false], ["created_at", 2016-08-19 02:58:15 UTC], ["updated_at", 2016-08-19 02:58:15 UTC]]  (155.4ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que falso deus era a divindade principal de Canaã?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que falso deus era a divindade principal de Canaã?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que falso deus era a divindade principal de Canaã?"], ["created_at", 2016-08-19 02:58:15 UTC], ["updated_at", 2016-08-19 02:58:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Baal"], ["question_id", 2846], ["correct", true], ["created_at", 2016-08-19 02:58:15 UTC], ["updated_at", 2016-08-19 02:58:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zeus"], ["question_id", 2846], ["correct", false], ["created_at", 2016-08-19 02:58:15 UTC], ["updated_at", 2016-08-19 02:58:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amon"], ["question_id", 2846], ["correct", false], ["created_at", 2016-08-19 02:58:15 UTC], ["updated_at", 2016-08-19 02:58:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiglete-pileser"], ["question_id", 2846], ["correct", false], ["created_at", 2016-08-19 02:58:15 UTC], ["updated_at", 2016-08-19 02:58:15 UTC]]  (213.8ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que foi a mãe de Jeroboão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que foi a mãe de Jeroboão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que foi a mãe de Jeroboão?"], ["created_at", 2016-08-19 02:58:15 UTC], ["updated_at", 2016-08-19 02:58:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maacá"], ["question_id", 2847], ["correct", true], ["created_at", 2016-08-19 02:58:15 UTC], ["updated_at", 2016-08-19 02:58:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vasti"], ["question_id", 2847], ["correct", false], ["created_at", 2016-08-19 02:58:15 UTC], ["updated_at", 2016-08-19 02:58:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ester"], ["question_id", 2847], ["correct", false], ["created_at", 2016-08-19 02:58:15 UTC], ["updated_at", 2016-08-19 02:58:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sabá"], ["question_id", 2847], ["correct", false], ["created_at", 2016-08-19 02:58:15 UTC], ["updated_at", 2016-08-19 02:58:15 UTC]]  (130.3ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que foi o pai dos músicos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que foi o pai dos músicos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que foi o pai dos músicos?"], ["created_at", 2016-08-19 02:58:15 UTC], ["updated_at", 2016-08-19 02:58:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jubal"], ["question_id", 2848], ["correct", true], ["created_at", 2016-08-19 02:58:15 UTC], ["updated_at", 2016-08-19 02:58:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matusalém"], ["question_id", 2848], ["correct", false], ["created_at", 2016-08-19 02:58:15 UTC], ["updated_at", 2016-08-19 02:58:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Melquisedeque"], ["question_id", 2848], ["correct", false], ["created_at", 2016-08-19 02:58:15 UTC], ["updated_at", 2016-08-19 02:58:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jafé"], ["question_id", 2848], ["correct", false], ["created_at", 2016-08-19 02:58:15 UTC], ["updated_at", 2016-08-19 02:58:15 UTC]]  (232.1ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que grupo de pessoas queria saber o segredo da força de Sansão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que grupo de pessoas queria saber o segredo da força de Sansão?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que grupo de pessoas queria saber o segredo da força de Sansão?"], ["created_at", 2016-08-19 02:58:15 UTC], ["updated_at", 2016-08-19 02:58:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Filisteus"], ["question_id", 2849], ["correct", true], ["created_at", 2016-08-19 02:58:15 UTC], ["updated_at", 2016-08-19 02:58:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Amalequitas"], ["question_id", 2849], ["correct", false], ["created_at", 2016-08-19 02:58:15 UTC], ["updated_at", 2016-08-19 02:58:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Persas"], ["question_id", 2849], ["correct", false], ["created_at", 2016-08-19 02:58:15 UTC], ["updated_at", 2016-08-19 02:58:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Fariseus"], ["question_id", 2849], ["correct", false], ["created_at", 2016-08-19 02:58:15 UTC], ["updated_at", 2016-08-19 02:58:15 UTC]]  (131.8ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que homem israelita era celebrado por sua beleza?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que homem israelita era celebrado por sua beleza?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que homem israelita era celebrado por sua beleza?"], ["created_at", 2016-08-19 02:58:15 UTC], ["updated_at", 2016-08-19 02:58:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 2850], ["correct", true], ["created_at", 2016-08-19 02:58:15 UTC], ["updated_at", 2016-08-19 02:58:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Balaão"], ["question_id", 2850], ["correct", false], ["created_at", 2016-08-19 02:58:15 UTC], ["updated_at", 2016-08-19 02:58:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 2850], ["correct", false], ["created_at", 2016-08-19 02:58:15 UTC], ["updated_at", 2016-08-19 02:58:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2850], ["correct", false], ["created_at", 2016-08-19 02:58:15 UTC], ["updated_at", 2016-08-19 02:58:15 UTC]]  (130.8ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que ídolo representava o deus sírio louvado pelo general Naamã?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que ídolo representava o deus sírio louvado pelo general Naamã?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que ídolo representava o deus sírio louvado pelo general Naamã?"], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rimon"], ["question_id", 2851], ["correct", true], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bel"], ["question_id", 2851], ["correct", false], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gade"], ["question_id", 2851], ["correct", false], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nebo"], ["question_id", 2851], ["correct", false], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]]  (123.9ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que instrumento era tocado nos funerais nos tempos do Novo Testamento?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que instrumento era tocado nos funerais nos tempos do Novo Testamento?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que instrumento era tocado nos funerais nos tempos do Novo Testamento?"], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Flauta"], ["question_id", 2852], ["correct", true], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Harpa"], ["question_id", 2852], ["correct", false], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trombetas"], ["question_id", 2852], ["correct", false], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Liras"], ["question_id", 2852], ["correct", false], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]]  (105.5ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que instrumento musical foi ouvido antes de Moisés subir ao Sinai e receber a Lei?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que instrumento musical foi ouvido antes de Moisés subir ao Sinai e receber a Lei?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que instrumento musical foi ouvido antes de Moisés subir ao Sinai e receber a Lei?"], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trombeta"], ["question_id", 2853], ["correct", true], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Harpas"], ["question_id", 2853], ["correct", false], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tambores"], ["question_id", 2853], ["correct", false], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tamborim"], ["question_id", 2853], ["correct", false], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]]  (123.3ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que instrumentos Miriã tocou depois da travessia do Mar Vermelho?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que instrumentos Miriã tocou depois da travessia do Mar Vermelho?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que instrumentos Miriã tocou depois da travessia do Mar Vermelho?"], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tamborim"], ["question_id", 2854], ["correct", true], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Flauta"], ["question_id", 2854], ["correct", false], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Harpa"], ["question_id", 2854], ["correct", false], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trombeta"], ["question_id", 2854], ["correct", false], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]]  (123.8ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mandamento nos instrui a não matar?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mandamento nos instrui a não matar?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que mandamento nos instrui a não matar?"], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "6º"], ["question_id", 2855], ["correct", true], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "8º"], ["question_id", 2855], ["correct", false], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10º"], ["question_id", 2855], ["correct", false], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "9º"], ["question_id", 2855], ["correct", false], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]]  (131.1ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mandamento nos instrui a sermos honestos com o próximo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mandamento nos instrui a sermos honestos com o próximo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que mandamento nos instrui a sermos honestos com o próximo?"], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "9º"], ["question_id", 2856], ["correct", true], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "7º"], ["question_id", 2856], ["correct", false], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5º"], ["question_id", 2856], ["correct", false], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "10º"], ["question_id", 2856], ["correct", false], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]]  (130.4ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que monte era tão sagrado que se um animal o tocasse morreria instantaneamente?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que monte era tão sagrado que se um animal o tocasse morreria instantaneamente?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que monte era tão sagrado que se um animal o tocasse morreria instantaneamente?"], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sinai"], ["question_id", 2857], ["correct", true], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hebrom"], ["question_id", 2857], ["correct", false], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carmelo"], ["question_id", 2857], ["correct", false], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ararat"], ["question_id", 2857], ["correct", false], ["created_at", 2016-08-19 02:58:16 UTC], ["updated_at", 2016-08-19 02:58:16 UTC]]  (122.4ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mulher abandonou a família para acompanhar a sogra?\n1,"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mulher abandonou a família para acompanhar a sogra?\n1,"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que mulher abandonou a família para acompanhar a sogra?\n1,"], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rute"], ["question_id", 2858], ["correct", true], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ester"], ["question_id", 2858], ["correct", false], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 2858], ["correct", false], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Raquel"], ["question_id", 2858], ["correct", false], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]]  (122.5ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mulher ajudou o filho a praticar uma fraude?\n1,"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mulher ajudou o filho a praticar uma fraude?\n1,"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que mulher ajudou o filho a praticar uma fraude?\n1,"], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 2859], ["correct", true], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isabel"], ["question_id", 2859], ["correct", false], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Diná"], ["question_id", 2859], ["correct", false], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Priscila"], ["question_id", 2859], ["correct", false], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]]  (113.6ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mulher devotada dedicou seu filho, Samuel, ao Senhor?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mulher devotada dedicou seu filho, Samuel, ao Senhor?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que mulher devotada dedicou seu filho, Samuel, ao Senhor?"], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 2860], ["correct", true], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lídia"], ["question_id", 2860], ["correct", false], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elisabete"], ["question_id", 2860], ["correct", false], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abigail"], ["question_id", 2860], ["correct", false], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]]  (114.3ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mulher diabólica tentou destruir o rei Jeoás e toda a prole de Judá?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mulher diabólica tentou destruir o rei Jeoás e toda a prole de Judá?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que mulher diabólica tentou destruir o rei Jeoás e toda a prole de Judá?"], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Atalia"], ["question_id", 2861], ["correct", true], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliana"], ["question_id", 2861], ["correct", false], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elcana"], ["question_id", 2861], ["correct", false], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jezabel"], ["question_id", 2861], ["correct", false], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]]  (114.9ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mulher matou toda a família real para ser rainha?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que mulher matou toda a família real para ser rainha?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que mulher matou toda a família real para ser rainha?"], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Atalia"], ["question_id", 2862], ["correct", true], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rute"], ["question_id", 2862], ["correct", false], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jezabel"], ["question_id", 2862], ["correct", false], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeoseba"], ["question_id", 2862], ["correct", false], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]]  (131.1ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que parte do corpo de Mefibosete foi afetada quando sua babá o deixou cair com apenas 5 anos de idade?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que parte do corpo de Mefibosete foi afetada quando sua babá o deixou cair com apenas 5 anos de idade?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que parte do corpo de Mefibosete foi afetada quando sua babá o deixou cair com apenas 5 anos de idade?"], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Pés"], ["question_id", 2863], ["correct", true], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Braços"], ["question_id", 2863], ["correct", false], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Suas Mãos"], ["question_id", 2863], ["correct", false], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Suas Pernas"], ["question_id", 2863], ["correct", false], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]]  (113.5ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que parte do corpo uma jumenta comprimiu o profeta Balaão contra um muro?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que parte do corpo uma jumenta comprimiu o profeta Balaão contra um muro?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que parte do corpo uma jumenta comprimiu o profeta Balaão contra um muro?"], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pé"], ["question_id", 2864], ["correct", true], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mão"], ["question_id", 2864], ["correct", false], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cabeça"], ["question_id", 2864], ["correct", false], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tórax"], ["question_id", 2864], ["correct", false], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]]  (114.6ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que pessoas o profeta Isaías predisse que seriam levadas cativas para Babilônia e se tornatiam eunucas no palácio?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que pessoas o profeta Isaías predisse que seriam levadas cativas para Babilônia e se tornatiam eunucas no palácio?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que pessoas o profeta Isaías predisse que seriam levadas cativas para Babilônia e se tornatiam eunucas no palácio?"], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Filhos de Ezequias"], ["question_id", 2865], ["correct", true], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Profetas de Judá"], ["question_id", 2865], ["correct", false], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Família de Isaías"], ["question_id", 2865], ["correct", false], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Toda A Nação Israelita"], ["question_id", 2865], ["correct", false], ["created_at", 2016-08-19 02:58:17 UTC], ["updated_at", 2016-08-19 02:58:17 UTC]]  (121.1ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que povo chamava Belzebu como o \"príncipe dos espíritos do diabo\"?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que povo chamava Belzebu como o \"príncipe dos espíritos do diabo\"?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que povo chamava Belzebu como o \"príncipe dos espíritos do diabo\"?"], ["created_at", 2016-08-19 02:58:18 UTC], ["updated_at", 2016-08-19 02:58:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fariseus"], ["question_id", 2866], ["correct", true], ["created_at", 2016-08-19 02:58:18 UTC], ["updated_at", 2016-08-19 02:58:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Levitas"], ["question_id", 2866], ["correct", false], ["created_at", 2016-08-19 02:58:18 UTC], ["updated_at", 2016-08-19 02:58:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escribas"], ["question_id", 2866], ["correct", false], ["created_at", 2016-08-19 02:58:18 UTC], ["updated_at", 2016-08-19 02:58:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Romanos"], ["question_id", 2866], ["correct", false], ["created_at", 2016-08-19 02:58:18 UTC], ["updated_at", 2016-08-19 02:58:18 UTC]]  (114.2ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que povo derrotou o rei Saul e seus filhos no Monte Gilboa?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que povo derrotou o rei Saul e seus filhos no Monte Gilboa?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que povo derrotou o rei Saul e seus filhos no Monte Gilboa?"], ["created_at", 2016-08-19 02:58:18 UTC], ["updated_at", 2016-08-19 02:58:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Filisteu"], ["question_id", 2867], ["correct", true], ["created_at", 2016-08-19 02:58:18 UTC], ["updated_at", 2016-08-19 02:58:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cananeu"], ["question_id", 2867], ["correct", false], ["created_at", 2016-08-19 02:58:18 UTC], ["updated_at", 2016-08-19 02:58:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amorreu"], ["question_id", 2867], ["correct", false], ["created_at", 2016-08-19 02:58:18 UTC], ["updated_at", 2016-08-19 02:58:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônico"], ["question_id", 2867], ["correct", false], ["created_at", 2016-08-19 02:58:18 UTC], ["updated_at", 2016-08-19 02:58:18 UTC]]  (200.3ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que rei reconheceu que Deus fez com ele o mesmo que ele tinha feito aos seus inimigos?\n1,"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que rei reconheceu que Deus fez com ele o mesmo que ele tinha feito aos seus inimigos?\n1,"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que rei reconheceu que Deus fez com ele o mesmo que ele tinha feito aos seus inimigos?\n1,"], ["created_at", 2016-08-19 02:58:18 UTC], ["updated_at", 2016-08-19 02:58:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adoni-bezeque"], ["question_id", 2868], ["correct", true], ["created_at", 2016-08-19 02:58:18 UTC], ["updated_at", 2016-08-19 02:58:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bezeque"], ["question_id", 2868], ["correct", false], ["created_at", 2016-08-19 02:58:18 UTC], ["updated_at", 2016-08-19 02:58:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eglom"], ["question_id", 2868], ["correct", false], ["created_at", 2016-08-19 02:58:18 UTC], ["updated_at", 2016-08-19 02:58:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Baraque"], ["question_id", 2868], ["correct", false], ["created_at", 2016-08-19 02:58:18 UTC], ["updated_at", 2016-08-19 02:58:18 UTC]]  (247.9ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que rio se transformou em sangue?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que rio se transformou em sangue?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que rio se transformou em sangue?"], ["created_at", 2016-08-19 02:58:18 UTC], ["updated_at", 2016-08-19 02:58:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nilo"], ["question_id", 2869], ["correct", true], ["created_at", 2016-08-19 02:58:18 UTC], ["updated_at", 2016-08-19 02:58:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tigre"], ["question_id", 2869], ["correct", false], ["created_at", 2016-08-19 02:58:18 UTC], ["updated_at", 2016-08-19 02:58:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eufrates"], ["question_id", 2869], ["correct", false], ["created_at", 2016-08-19 02:58:18 UTC], ["updated_at", 2016-08-19 02:58:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jordão"], ["question_id", 2869], ["correct", false], ["created_at", 2016-08-19 02:58:18 UTC], ["updated_at", 2016-08-19 02:58:18 UTC]]  (163.4ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que substância Jesus disse ser inútil após ter perdido o gosto?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Que substância Jesus disse ser inútil após ter perdido o gosto?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Que substância Jesus disse ser inútil após ter perdido o gosto?"], ["created_at", 2016-08-19 02:58:18 UTC], ["updated_at", 2016-08-19 02:58:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sal"], ["question_id", 2870], ["correct", true], ["created_at", 2016-08-19 02:58:18 UTC], ["updated_at", 2016-08-19 02:58:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Açúcar"], ["question_id", 2870], ["correct", false], ["created_at", 2016-08-19 02:58:18 UTC], ["updated_at", 2016-08-19 02:58:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Levedo"], ["question_id", 2870], ["correct", false], ["created_at", 2016-08-19 02:58:18 UTC], ["updated_at", 2016-08-19 02:58:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fermento"], ["question_id", 2870], ["correct", false], ["created_at", 2016-08-19 02:58:18 UTC], ["updated_at", 2016-08-19 02:58:18 UTC]]  (180.1ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem absteu-se de alimentar-se dos alimentos impuros que haviam na mesa do rei?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem absteu-se de alimentar-se dos alimentos impuros que haviam na mesa do rei?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem absteu-se de alimentar-se dos alimentos impuros que haviam na mesa do rei?"], ["created_at", 2016-08-19 02:58:19 UTC], ["updated_at", 2016-08-19 02:58:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 2871], ["correct", true], ["created_at", 2016-08-19 02:58:19 UTC], ["updated_at", 2016-08-19 02:58:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 2871], ["correct", false], ["created_at", 2016-08-19 02:58:19 UTC], ["updated_at", 2016-08-19 02:58:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Naamã"], ["question_id", 2871], ["correct", false], ["created_at", 2016-08-19 02:58:19 UTC], ["updated_at", 2016-08-19 02:58:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Potifar"], ["question_id", 2871], ["correct", false], ["created_at", 2016-08-19 02:58:19 UTC], ["updated_at", 2016-08-19 02:58:19 UTC]]  (163.1ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem aconselhou Jacó a retornar para a terra de seus pais?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem aconselhou Jacó a retornar para a terra de seus pais?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem aconselhou Jacó a retornar para a terra de seus pais?"], ["created_at", 2016-08-19 02:58:19 UTC], ["updated_at", 2016-08-19 02:58:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Deus"], ["question_id", 2872], ["correct", true], ["created_at", 2016-08-19 02:58:19 UTC], ["updated_at", 2016-08-19 02:58:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Profeta Elias"], ["question_id", 2872], ["correct", false], ["created_at", 2016-08-19 02:58:19 UTC], ["updated_at", 2016-08-19 02:58:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Anjo"], ["question_id", 2872], ["correct", false], ["created_at", 2016-08-19 02:58:19 UTC], ["updated_at", 2016-08-19 02:58:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 2872], ["correct", false], ["created_at", 2016-08-19 02:58:19 UTC], ["updated_at", 2016-08-19 02:58:19 UTC]]  (200.1ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem adoeceu que obrigou o rei Jeroboão a procurar o profeta Aías para dizer-lhe sobre sua condição de saúde?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem adoeceu que obrigou o rei Jeroboão a procurar o profeta Aías para dizer-lhe sobre sua condição de saúde?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem adoeceu que obrigou o rei Jeroboão a procurar o profeta Aías para dizer-lhe sobre sua condição de saúde?"], ["created_at", 2016-08-19 02:58:19 UTC], ["updated_at", 2016-08-19 02:58:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Filho"], ["question_id", 2873], ["correct", true], ["created_at", 2016-08-19 02:58:19 UTC], ["updated_at", 2016-08-19 02:58:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Neto"], ["question_id", 2873], ["correct", false], ["created_at", 2016-08-19 02:58:19 UTC], ["updated_at", 2016-08-19 02:58:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Pai"], ["question_id", 2873], ["correct", false], ["created_at", 2016-08-19 02:58:19 UTC], ["updated_at", 2016-08-19 02:58:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Sogra"], ["question_id", 2873], ["correct", false], ["created_at", 2016-08-19 02:58:19 UTC], ["updated_at", 2016-08-19 02:58:19 UTC]]  (188.8ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem afirmou que apenas Deus poderia interpretar os sonhos que o rei Nabucodonosor estava tendo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem afirmou que apenas Deus poderia interpretar os sonhos que o rei Nabucodonosor estava tendo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem afirmou que apenas Deus poderia interpretar os sonhos que o rei Nabucodonosor estava tendo?"], ["created_at", 2016-08-19 02:58:19 UTC], ["updated_at", 2016-08-19 02:58:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 2874], ["correct", true], ["created_at", 2016-08-19 02:58:19 UTC], ["updated_at", 2016-08-19 02:58:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mesaque"], ["question_id", 2874], ["correct", false], ["created_at", 2016-08-19 02:58:19 UTC], ["updated_at", 2016-08-19 02:58:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sadraque"], ["question_id", 2874], ["correct", false], ["created_at", 2016-08-19 02:58:19 UTC], ["updated_at", 2016-08-19 02:58:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 2874], ["correct", false], ["created_at", 2016-08-19 02:58:19 UTC], ["updated_at", 2016-08-19 02:58:19 UTC]]  (139.4ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ajudou uma viúva pobre enchendo várias vasilhas de azeite?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ajudou uma viúva pobre enchendo várias vasilhas de azeite?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ajudou uma viúva pobre enchendo várias vasilhas de azeite?"], ["created_at", 2016-08-19 02:58:19 UTC], ["updated_at", 2016-08-19 02:58:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 2875], ["correct", true], ["created_at", 2016-08-19 02:58:19 UTC], ["updated_at", 2016-08-19 02:58:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 2875], ["correct", false], ["created_at", 2016-08-19 02:58:19 UTC], ["updated_at", 2016-08-19 02:58:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eli"], ["question_id", 2875], ["correct", false], ["created_at", 2016-08-19 02:58:19 UTC], ["updated_at", 2016-08-19 02:58:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elismael"], ["question_id", 2875], ["correct", false], ["created_at", 2016-08-19 02:58:19 UTC], ["updated_at", 2016-08-19 02:58:19 UTC]]  (148.2ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem amarrou Sansão com 7 tendões não secos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem amarrou Sansão com 7 tendões não secos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem amarrou Sansão com 7 tendões não secos?"], ["created_at", 2016-08-19 02:58:19 UTC], ["updated_at", 2016-08-19 02:58:19 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dalila"], ["question_id", 2876], ["correct", true], ["created_at", 2016-08-19 02:58:19 UTC], ["updated_at", 2016-08-19 02:58:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Príncipes Filisteus"], ["question_id", 2876], ["correct", false], ["created_at", 2016-08-19 02:58:19 UTC], ["updated_at", 2016-08-19 02:58:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Líderes Religiosos Filisteus"], ["question_id", 2876], ["correct", false], ["created_at", 2016-08-19 02:58:19 UTC], ["updated_at", 2016-08-19 02:58:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Povo Filisteu"], ["question_id", 2876], ["correct", false], ["created_at", 2016-08-19 02:58:19 UTC], ["updated_at", 2016-08-19 02:58:19 UTC]]  (188.3ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem amparou Saulo e defendeu-o para os apóstolos, assegurando-lhes que agora Saulo era um verdadeiro cristão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem amparou Saulo e defendeu-o para os apóstolos, assegurando-lhes que agora Saulo era um verdadeiro cristão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem amparou Saulo e defendeu-o para os apóstolos, assegurando-lhes que agora Saulo era um verdadeiro cristão?"], ["created_at", 2016-08-19 02:58:20 UTC], ["updated_at", 2016-08-19 02:58:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Barnabé"], ["question_id", 2877], ["correct", true], ["created_at", 2016-08-19 02:58:20 UTC], ["updated_at", 2016-08-19 02:58:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ananias"], ["question_id", 2877], ["correct", false], ["created_at", 2016-08-19 02:58:20 UTC], ["updated_at", 2016-08-19 02:58:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Silas"], ["question_id", 2877], ["correct", false], ["created_at", 2016-08-19 02:58:20 UTC], ["updated_at", 2016-08-19 02:58:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marcos"], ["question_id", 2877], ["correct", false], ["created_at", 2016-08-19 02:58:20 UTC], ["updated_at", 2016-08-19 02:58:20 UTC]]  (179.6ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Ananias curou da cegueira?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Ananias curou da cegueira?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem Ananias curou da cegueira?"], ["created_at", 2016-08-19 02:58:20 UTC], ["updated_at", 2016-08-19 02:58:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 2878], ["correct", true], ["created_at", 2016-08-19 02:58:20 UTC], ["updated_at", 2016-08-19 02:58:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saulo"], ["question_id", 2878], ["correct", false], ["created_at", 2016-08-19 02:58:20 UTC], ["updated_at", 2016-08-19 02:58:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 2878], ["correct", false], ["created_at", 2016-08-19 02:58:20 UTC], ["updated_at", 2016-08-19 02:58:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Timóteo"], ["question_id", 2878], ["correct", false], ["created_at", 2016-08-19 02:58:20 UTC], ["updated_at", 2016-08-19 02:58:20 UTC]]  (138.9ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem apareceu a Jesus na montanha durante a transfiguração?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem apareceu a Jesus na montanha durante a transfiguração?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem apareceu a Jesus na montanha durante a transfiguração?"], ["created_at", 2016-08-19 02:58:20 UTC], ["updated_at", 2016-08-19 02:58:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés e Elias"], ["question_id", 2879], ["correct", true], ["created_at", 2016-08-19 02:58:20 UTC], ["updated_at", 2016-08-19 02:58:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Enoque e Moisés"], ["question_id", 2879], ["correct", false], ["created_at", 2016-08-19 02:58:20 UTC], ["updated_at", 2016-08-19 02:58:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias e Enoque"], ["question_id", 2879], ["correct", false], ["created_at", 2016-08-19 02:58:20 UTC], ["updated_at", 2016-08-19 02:58:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés e Abraão"], ["question_id", 2879], ["correct", false], ["created_at", 2016-08-19 02:58:20 UTC], ["updated_at", 2016-08-19 02:58:20 UTC]]  (131.6ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem apareceu a Jesus para tentá-lo no deserto?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem apareceu a Jesus para tentá-lo no deserto?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem apareceu a Jesus para tentá-lo no deserto?"], ["created_at", 2016-08-19 02:58:20 UTC], ["updated_at", 2016-08-19 02:58:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Satanás"], ["question_id", 2880], ["correct", true], ["created_at", 2016-08-19 02:58:20 UTC], ["updated_at", 2016-08-19 02:58:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodias"], ["question_id", 2880], ["correct", false], ["created_at", 2016-08-19 02:58:20 UTC], ["updated_at", 2016-08-19 02:58:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 2880], ["correct", false], ["created_at", 2016-08-19 02:58:20 UTC], ["updated_at", 2016-08-19 02:58:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Legião de Demônios"], ["question_id", 2880], ["correct", false], ["created_at", 2016-08-19 02:58:20 UTC], ["updated_at", 2016-08-19 02:58:20 UTC]]  (173.6ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem apresentou Jesus surrado à multidão, dizendo: \"Eis o homem!\"?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem apresentou Jesus surrado à multidão, dizendo: \"Eis o homem!\"?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem apresentou Jesus surrado à multidão, dizendo: \"Eis o homem!\"?"], ["created_at", 2016-08-19 02:58:20 UTC], ["updated_at", 2016-08-19 02:58:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 2881], ["correct", true], ["created_at", 2016-08-19 02:58:20 UTC], ["updated_at", 2016-08-19 02:58:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Agripa"], ["question_id", 2881], ["correct", false], ["created_at", 2016-08-19 02:58:20 UTC], ["updated_at", 2016-08-19 02:58:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Antipa"], ["question_id", 2881], ["correct", false], ["created_at", 2016-08-19 02:58:20 UTC], ["updated_at", 2016-08-19 02:58:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sacerdote Caifás"], ["question_id", 2881], ["correct", false], ["created_at", 2016-08-19 02:58:20 UTC], ["updated_at", 2016-08-19 02:58:20 UTC]]  (129.8ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem arrancou as portas de entrada da cidade de Gaza?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem arrancou as portas de entrada da cidade de Gaza?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem arrancou as portas de entrada da cidade de Gaza?"], ["created_at", 2016-08-19 02:58:20 UTC], ["updated_at", 2016-08-19 02:58:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 2882], ["correct", true], ["created_at", 2016-08-19 02:58:20 UTC], ["updated_at", 2016-08-19 02:58:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 2882], ["correct", false], ["created_at", 2016-08-19 02:58:20 UTC], ["updated_at", 2016-08-19 02:58:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel"], ["question_id", 2882], ["correct", false], ["created_at", 2016-08-19 02:58:20 UTC], ["updated_at", 2016-08-19 02:58:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2882], ["correct", false], ["created_at", 2016-08-19 02:58:20 UTC], ["updated_at", 2016-08-19 02:58:20 UTC]]  (130.8ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem arrependeu-se após ter visto Jesus ser levado preso para a presença de Pôncio Pilatos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem arrependeu-se após ter visto Jesus ser levado preso para a presença de Pôncio Pilatos?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem arrependeu-se após ter visto Jesus ser levado preso para a presença de Pôncio Pilatos?"], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas"], ["question_id", 2883], ["correct", true], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 2883], ["correct", false], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 2883], ["correct", false], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 2883], ["correct", false], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]]  (130.3ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Atalia matou para poder ser rainha?\n1,"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Atalia matou para poder ser rainha?\n1,"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem Atalia matou para poder ser rainha?\n1,"], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Toda A Família Real"], ["question_id", 2884], ["correct", true], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Rei"], ["question_id", 2884], ["correct", false], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Irmãos do Rei"], ["question_id", 2884], ["correct", false], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Mãe"], ["question_id", 2884], ["correct", false], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]]  (130.3ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Barnabé defendeu perante os apóstolos, assegurando que ele havia se convertido?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Barnabé defendeu perante os apóstolos, assegurando que ele havia se convertido?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem Barnabé defendeu perante os apóstolos, assegurando que ele havia se convertido?"], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 2885], ["correct", true], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saulo"], ["question_id", 2885], ["correct", false], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas Iscariotes"], ["question_id", 2885], ["correct", false], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Barrabás"], ["question_id", 2885], ["correct", false], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]]  (130.5ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem batizava as pessoas no rio Jordão para que se arrependessem e buscassem o perdão de Deus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem batizava as pessoas no rio Jordão para que se arrependessem e buscassem o perdão de Deus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem batizava as pessoas no rio Jordão para que se arrependessem e buscassem o perdão de Deus?"], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 2886], ["correct", true], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 2886], ["correct", false], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "André"], ["question_id", 2886], ["correct", false], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zaqueu"], ["question_id", 2886], ["correct", false], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]]  (130.5ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem casou-se com Bate-Seba após ela ter terminado seu período de luto por Urias?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem casou-se com Bate-Seba após ela ter terminado seu período de luto por Urias?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem casou-se com Bate-Seba após ela ter terminado seu período de luto por Urias?"], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 2887], ["correct", true], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2887], ["correct", false], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 2887], ["correct", false], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 2887], ["correct", false], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]]  (130.4ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem casou-se com Maria, mãe de Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem casou-se com Maria, mãe de Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem casou-se com Maria, mãe de Jesus?"], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 2888], ["correct", true], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias"], ["question_id", 2888], ["correct", false], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 2888], ["correct", false], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tomé"], ["question_id", 2888], ["correct", false], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]]  (113.5ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem cavalgou um camelo quando dirigia-se ao seu casamento?\n1,"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem cavalgou um camelo quando dirigia-se ao seu casamento?\n1,"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem cavalgou um camelo quando dirigia-se ao seu casamento?\n1,"], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 2889], ["correct", true], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 2889], ["correct", false], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria, Mãe de Jesus"], ["question_id", 2889], ["correct", false], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 2889], ["correct", false], ["created_at", 2016-08-19 02:58:21 UTC], ["updated_at", 2016-08-19 02:58:21 UTC]]  (130.4ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem chamou o fogo dos Céus para consumir um altar de sacrifícios?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem chamou o fogo dos Céus para consumir um altar de sacrifícios?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem chamou o fogo dos Céus para consumir um altar de sacrifícios?"], ["created_at", 2016-08-19 02:58:22 UTC], ["updated_at", 2016-08-19 02:58:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 2890], ["correct", true], ["created_at", 2016-08-19 02:58:22 UTC], ["updated_at", 2016-08-19 02:58:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 2890], ["correct", false], ["created_at", 2016-08-19 02:58:22 UTC], ["updated_at", 2016-08-19 02:58:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 2890], ["correct", false], ["created_at", 2016-08-19 02:58:22 UTC], ["updated_at", 2016-08-19 02:58:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obadias"], ["question_id", 2890], ["correct", false], ["created_at", 2016-08-19 02:58:22 UTC], ["updated_at", 2016-08-19 02:58:22 UTC]]  (139.4ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem chorou quando viu o alicerce do Templo ser reconstruído, após terem retornado do cativeiro da Babilônia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem chorou quando viu o alicerce do Templo ser reconstruído, após terem retornado do cativeiro da Babilônia?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem chorou quando viu o alicerce do Templo ser reconstruído, após terem retornado do cativeiro da Babilônia?"], ["created_at", 2016-08-19 02:58:22 UTC], ["updated_at", 2016-08-19 02:58:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Idosos"], ["question_id", 2891], ["correct", true], ["created_at", 2016-08-19 02:58:22 UTC], ["updated_at", 2016-08-19 02:58:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Crianças"], ["question_id", 2891], ["correct", false], ["created_at", 2016-08-19 02:58:22 UTC], ["updated_at", 2016-08-19 02:58:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Líderes Religiosos"], ["question_id", 2891], ["correct", false], ["created_at", 2016-08-19 02:58:22 UTC], ["updated_at", 2016-08-19 02:58:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Profetas"], ["question_id", 2891], ["correct", false], ["created_at", 2016-08-19 02:58:22 UTC], ["updated_at", 2016-08-19 02:58:22 UTC]]  (114.4ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem chorou sobre Jerusalém no Monte das Oliveiras?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem chorou sobre Jerusalém no Monte das Oliveiras?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem chorou sobre Jerusalém no Monte das Oliveiras?"], ["created_at", 2016-08-19 02:58:22 UTC], ["updated_at", 2016-08-19 02:58:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 2892], ["correct", true], ["created_at", 2016-08-19 02:58:22 UTC], ["updated_at", 2016-08-19 02:58:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 2892], ["correct", false], ["created_at", 2016-08-19 02:58:22 UTC], ["updated_at", 2016-08-19 02:58:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lázaro"], ["question_id", 2892], ["correct", false], ["created_at", 2016-08-19 02:58:22 UTC], ["updated_at", 2016-08-19 02:58:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 2892], ["correct", false], ["created_at", 2016-08-19 02:58:22 UTC], ["updated_at", 2016-08-19 02:58:22 UTC]]  (106.5ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem colocou o bebê Moisés em um cesto no rio Nilo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem colocou o bebê Moisés em um cesto no rio Nilo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem colocou o bebê Moisés em um cesto no rio Nilo?"], ["created_at", 2016-08-19 02:58:22 UTC], ["updated_at", 2016-08-19 02:58:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Mãe"], ["question_id", 2893], ["correct", true], ["created_at", 2016-08-19 02:58:22 UTC], ["updated_at", 2016-08-19 02:58:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Irmã"], ["question_id", 2893], ["correct", false], ["created_at", 2016-08-19 02:58:22 UTC], ["updated_at", 2016-08-19 02:58:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Irmão"], ["question_id", 2893], ["correct", false], ["created_at", 2016-08-19 02:58:22 UTC], ["updated_at", 2016-08-19 02:58:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Pai"], ["question_id", 2893], ["correct", false], ["created_at", 2016-08-19 02:58:22 UTC], ["updated_at", 2016-08-19 02:58:22 UTC]]  (138.5ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem colocou os irmãos de José na prisão, quando estes foram comprar grãos no Egito?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem colocou os irmãos de José na prisão, quando estes foram comprar grãos no Egito?"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem colocou os irmãos de José na prisão, quando estes foram comprar grãos no Egito?"], ["created_at", 2016-08-19 02:58:22 UTC], ["updated_at", 2016-08-19 02:58:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 2894], ["correct", true], ["created_at", 2016-08-19 02:58:22 UTC], ["updated_at", 2016-08-19 02:58:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Faraó"], ["question_id", 2894], ["correct", false], ["created_at", 2016-08-19 02:58:22 UTC], ["updated_at", 2016-08-19 02:58:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Potifar"], ["question_id", 2894], ["correct", false], ["created_at", 2016-08-19 02:58:22 UTC], ["updated_at", 2016-08-19 02:58:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 2894], ["correct", false], ["created_at", 2016-08-19 02:58:22 UTC], ["updated_at", 2016-08-19 02:58:22 UTC]]  (205.0ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem colocou Zedequias no trono do reino de Judá?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem colocou Zedequias no trono do reino de Judá?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem colocou Zedequias no trono do reino de Judá?"], ["created_at", 2016-08-19 02:58:22 UTC], ["updated_at", 2016-08-19 02:58:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 2895], ["correct", true], ["created_at", 2016-08-19 02:58:22 UTC], ["updated_at", 2016-08-19 02:58:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiro"], ["question_id", 2895], ["correct", false], ["created_at", 2016-08-19 02:58:22 UTC], ["updated_at", 2016-08-19 02:58:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiglete-pileser"], ["question_id", 2895], ["correct", false], ["created_at", 2016-08-19 02:58:22 UTC], ["updated_at", 2016-08-19 02:58:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belsazar"], ["question_id", 2895], ["correct", false], ["created_at", 2016-08-19 02:58:22 UTC], ["updated_at", 2016-08-19 02:58:22 UTC]]  (430.4ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem comandou os israelitas em sua batalha contra Jericó?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem comandou os israelitas em sua batalha contra Jericó?"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem comandou os israelitas em sua batalha contra Jericó?"], ["created_at", 2016-08-19 02:58:23 UTC], ["updated_at", 2016-08-19 02:58:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 2896], ["correct", true], ["created_at", 2016-08-19 02:58:23 UTC], ["updated_at", 2016-08-19 02:58:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 2896], ["correct", false], ["created_at", 2016-08-19 02:58:23 UTC], ["updated_at", 2016-08-19 02:58:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 2896], ["correct", false], ["created_at", 2016-08-19 02:58:23 UTC], ["updated_at", 2016-08-19 02:58:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 2896], ["correct", false], ["created_at", 2016-08-19 02:58:23 UTC], ["updated_at", 2016-08-19 02:58:23 UTC]]  (273.2ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem comprou o direito de primogenitura que não lhe era seu por direito?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem comprou o direito de primogenitura que não lhe era seu por direito?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem comprou o direito de primogenitura que não lhe era seu por direito?"], ["created_at", 2016-08-19 02:58:23 UTC], ["updated_at", 2016-08-19 02:58:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 2897], ["correct", true], ["created_at", 2016-08-19 02:58:23 UTC], ["updated_at", 2016-08-19 02:58:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 2897], ["correct", false], ["created_at", 2016-08-19 02:58:23 UTC], ["updated_at", 2016-08-19 02:58:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 2897], ["correct", false], ["created_at", 2016-08-19 02:58:23 UTC], ["updated_at", 2016-08-19 02:58:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 2897], ["correct", false], ["created_at", 2016-08-19 02:58:23 UTC], ["updated_at", 2016-08-19 02:58:23 UTC]]  (146.3ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem comunicou a Maria, futura mãe de Jesus, que ela iria ter um bebê?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem comunicou a Maria, futura mãe de Jesus, que ela iria ter um bebê?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem comunicou a Maria, futura mãe de Jesus, que ela iria ter um bebê?"], ["created_at", 2016-08-19 02:58:23 UTC], ["updated_at", 2016-08-19 02:58:23 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anjo Gabriel"], ["question_id", 2898], ["correct", true], ["created_at", 2016-08-19 02:58:23 UTC], ["updated_at", 2016-08-19 02:58:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Próprio Deus"], ["question_id", 2898], ["correct", false], ["created_at", 2016-08-19 02:58:23 UTC], ["updated_at", 2016-08-19 02:58:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José, Seu Marido"], ["question_id", 2898], ["correct", false], ["created_at", 2016-08-19 02:58:23 UTC], ["updated_at", 2016-08-19 02:58:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Irmã Isabel"], ["question_id", 2898], ["correct", false], ["created_at", 2016-08-19 02:58:23 UTC], ["updated_at", 2016-08-19 02:58:23 UTC]]  (121.8ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem conduziu os israelitas cantando após a travessia do Mar Vermelho?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem conduziu os israelitas cantando após a travessia do Mar Vermelho?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem conduziu os israelitas cantando após a travessia do Mar Vermelho?"], ["created_at", 2016-08-19 02:58:23 UTC], ["updated_at", 2016-08-19 02:58:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 2899], ["correct", true], ["created_at", 2016-08-19 02:58:23 UTC], ["updated_at", 2016-08-19 02:58:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zípora"], ["question_id", 2899], ["correct", false], ["created_at", 2016-08-19 02:58:23 UTC], ["updated_at", 2016-08-19 02:58:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 2899], ["correct", false], ["created_at", 2016-08-19 02:58:23 UTC], ["updated_at", 2016-08-19 02:58:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abigail"], ["question_id", 2899], ["correct", false], ["created_at", 2016-08-19 02:58:23 UTC], ["updated_at", 2016-08-19 02:58:23 UTC]]  (131.3ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem confundiu um canto da multidão com um canto de guerra?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem confundiu um canto da multidão com um canto de guerra?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem confundiu um canto da multidão com um canto de guerra?"], ["created_at", 2016-08-19 02:58:23 UTC], ["updated_at", 2016-08-19 02:58:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 2900], ["correct", true], ["created_at", 2016-08-19 02:58:23 UTC], ["updated_at", 2016-08-19 02:58:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2900], ["correct", false], ["created_at", 2016-08-19 02:58:23 UTC], ["updated_at", 2016-08-19 02:58:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ezequias"], ["question_id", 2900], ["correct", false], ["created_at", 2016-08-19 02:58:23 UTC], ["updated_at", 2016-08-19 02:58:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias"], ["question_id", 2900], ["correct", false], ["created_at", 2016-08-19 02:58:23 UTC], ["updated_at", 2016-08-19 02:58:23 UTC]]  (148.2ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem construiu a cidade de Nínive?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem construiu a cidade de Nínive?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem construiu a cidade de Nínive?"], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ninrode"], ["question_id", 2901], ["correct", true], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caim"], ["question_id", 2901], ["correct", false], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mefibosete"], ["question_id", 2901], ["correct", false], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Enoque"], ["question_id", 2901], ["correct", false], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]]  (115.0ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem construiu o Templo de Deus em Jerusalém?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem construiu o Templo de Deus em Jerusalém?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem construiu o Templo de Deus em Jerusalém?"], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2902], ["correct", true], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 2902], ["correct", false], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Simeão"], ["question_id", 2902], ["correct", false], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 2902], ["correct", false], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]]  (114.9ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem contou aos pastores sobre o nascimento de Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem contou aos pastores sobre o nascimento de Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem contou aos pastores sobre o nascimento de Jesus?"], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Anjos"], ["question_id", 2903], ["correct", true], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Próprio Deus"], ["question_id", 2903], ["correct", false], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Anjo Gabriel"], ["question_id", 2903], ["correct", false], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Anjo Miguel"], ["question_id", 2903], ["correct", false], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]]  (113.9ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem cortava os cabelos no fim de cada ano, pois os mesmos muito lhe pesavam?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem cortava os cabelos no fim de cada ano, pois os mesmos muito lhe pesavam?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem cortava os cabelos no fim de cada ano, pois os mesmos muito lhe pesavam?"], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 2904], ["correct", true], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 2904], ["correct", false], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eli"], ["question_id", 2904], ["correct", false], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jefté"], ["question_id", 2904], ["correct", false], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]]  (130.8ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem cortou o cabelo de Sansão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem cortou o cabelo de Sansão?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem cortou o cabelo de Sansão?"], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dalila"], ["question_id", 2905], ["correct", true], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cleópatra"], ["question_id", 2905], ["correct", false], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rainha Jezabel"], ["question_id", 2905], ["correct", false], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria Madalena"], ["question_id", 2905], ["correct", false], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]]  (106.7ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem cuspiu em Jesus enquanto o mesmo estava sendo surrado?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem cuspiu em Jesus enquanto o mesmo estava sendo surrado?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem cuspiu em Jesus enquanto o mesmo estava sendo surrado?"], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Soldados Romanos"], ["question_id", 2906], ["correct", true], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Sacerdotes do Templo"], ["question_id", 2906], ["correct", false], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Fariseus"], ["question_id", 2906], ["correct", false], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Povo Judeu"], ["question_id", 2906], ["correct", false], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]]  (130.6ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem dançou na festa de aniversário de Herodes?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem dançou na festa de aniversário de Herodes?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem dançou na festa de aniversário de Herodes?"], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Filha de Herodias"], ["question_id", 2907], ["correct", true], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodias"], ["question_id", 2907], ["correct", false], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Irmã de Herodias"], ["question_id", 2907], ["correct", false], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Neta de Herodias"], ["question_id", 2907], ["correct", false], ["created_at", 2016-08-19 02:58:24 UTC], ["updated_at", 2016-08-19 02:58:24 UTC]]  (123.9ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem decidiu que, caso as pessoas não conseguissem decifrar seus sonhos, essas pessoas seriam mortas?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem decidiu que, caso as pessoas não conseguissem decifrar seus sonhos, essas pessoas seriam mortas?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem decidiu que, caso as pessoas não conseguissem decifrar seus sonhos, essas pessoas seriam mortas?"], ["created_at", 2016-08-19 02:58:25 UTC], ["updated_at", 2016-08-19 02:58:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 2908], ["correct", true], ["created_at", 2016-08-19 02:58:25 UTC], ["updated_at", 2016-08-19 02:58:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 2908], ["correct", false], ["created_at", 2016-08-19 02:58:25 UTC], ["updated_at", 2016-08-19 02:58:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Faraó do Egito"], ["question_id", 2908], ["correct", false], ["created_at", 2016-08-19 02:58:25 UTC], ["updated_at", 2016-08-19 02:58:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Alexandre, O Grande"], ["question_id", 2908], ["correct", false], ["created_at", 2016-08-19 02:58:25 UTC], ["updated_at", 2016-08-19 02:58:25 UTC]]  (138.7ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem deixou seu filho sob um arbusto para não vê-lo morrer?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem deixou seu filho sob um arbusto para não vê-lo morrer?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem deixou seu filho sob um arbusto para não vê-lo morrer?"], ["created_at", 2016-08-19 02:58:25 UTC], ["updated_at", 2016-08-19 02:58:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Agar"], ["question_id", 2909], ["correct", true], ["created_at", 2016-08-19 02:58:25 UTC], ["updated_at", 2016-08-19 02:58:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ester"], ["question_id", 2909], ["correct", false], ["created_at", 2016-08-19 02:58:25 UTC], ["updated_at", 2016-08-19 02:58:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sara"], ["question_id", 2909], ["correct", false], ["created_at", 2016-08-19 02:58:25 UTC], ["updated_at", 2016-08-19 02:58:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 2909], ["correct", false], ["created_at", 2016-08-19 02:58:25 UTC], ["updated_at", 2016-08-19 02:58:25 UTC]]  (196.9ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem deu beijos políticos aos cidadãos de Israel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem deu beijos políticos aos cidadãos de Israel?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem deu beijos políticos aos cidadãos de Israel?"], ["created_at", 2016-08-19 02:58:25 UTC], ["updated_at", 2016-08-19 02:58:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 2910], ["correct", true], ["created_at", 2016-08-19 02:58:25 UTC], ["updated_at", 2016-08-19 02:58:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Labão"], ["question_id", 2910], ["correct", false], ["created_at", 2016-08-19 02:58:25 UTC], ["updated_at", 2016-08-19 02:58:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 2910], ["correct", false], ["created_at", 2016-08-19 02:58:25 UTC], ["updated_at", 2016-08-19 02:58:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 2910], ["correct", false], ["created_at", 2016-08-19 02:58:25 UTC], ["updated_at", 2016-08-19 02:58:25 UTC]]  (197.7ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem deu presentes de ouro ao menino Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem deu presentes de ouro ao menino Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem deu presentes de ouro ao menino Jesus?"], ["created_at", 2016-08-19 02:58:25 UTC], ["updated_at", 2016-08-19 02:58:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Reis Magos"], ["question_id", 2911], ["correct", true], ["created_at", 2016-08-19 02:58:25 UTC], ["updated_at", 2016-08-19 02:58:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes"], ["question_id", 2911], ["correct", false], ["created_at", 2016-08-19 02:58:25 UTC], ["updated_at", 2016-08-19 02:58:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Pastores"], ["question_id", 2911], ["correct", false], ["created_at", 2016-08-19 02:58:25 UTC], ["updated_at", 2016-08-19 02:58:25 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 2911], ["correct", false], ["created_at", 2016-08-19 02:58:25 UTC], ["updated_at", 2016-08-19 02:58:25 UTC]]  (129.9ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem deu um beijo de traição em Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem deu um beijo de traição em Jesus?"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem deu um beijo de traição em Jesus?"], ["created_at", 2016-08-19 02:58:25 UTC], ["updated_at", 2016-08-19 02:58:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas Iscariotes"], ["question_id", 2912], ["correct", true], ["created_at", 2016-08-19 02:58:25 UTC], ["updated_at", 2016-08-19 02:58:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José de Arimatéia"], ["question_id", 2912], ["correct", false], ["created_at", 2016-08-19 02:58:25 UTC], ["updated_at", 2016-08-19 02:58:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caifás"], ["question_id", 2912], ["correct", false], ["created_at", 2016-08-19 02:58:25 UTC], ["updated_at", 2016-08-19 02:58:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Líderes Religiosos Judeus"], ["question_id", 2912], ["correct", false], ["created_at", 2016-08-19 02:58:25 UTC], ["updated_at", 2016-08-19 02:58:25 UTC]]  (172.7ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Deus enviou para preparar o caminho de Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Deus enviou para preparar o caminho de Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem Deus enviou para preparar o caminho de Jesus?"], ["created_at", 2016-08-19 02:58:25 UTC], ["updated_at", 2016-08-19 02:58:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 2913], ["correct", true], ["created_at", 2016-08-19 02:58:25 UTC], ["updated_at", 2016-08-19 02:58:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias"], ["question_id", 2913], ["correct", false], ["created_at", 2016-08-19 02:58:25 UTC], ["updated_at", 2016-08-19 02:58:25 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Pai, José"], ["question_id", 2913], ["correct", false], ["created_at", 2016-08-19 02:58:25 UTC], ["updated_at", 2016-08-19 02:58:25 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Mãe, Maria"], ["question_id", 2913], ["correct", false], ["created_at", 2016-08-19 02:58:25 UTC], ["updated_at", 2016-08-19 02:58:25 UTC]]  (138.2ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse a frase \"Raça de víboras, quem vos ensinou a fugir da ira vindoura?\""], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse a frase \"Raça de víboras, quem vos ensinou a fugir da ira vindoura?\""], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem disse a frase \"Raça de víboras, quem vos ensinou a fugir da ira vindoura?\""], ["created_at", 2016-08-19 02:58:26 UTC], ["updated_at", 2016-08-19 02:58:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 2914], ["correct", true], ["created_at", 2016-08-19 02:58:26 UTC], ["updated_at", 2016-08-19 02:58:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 2914], ["correct", false], ["created_at", 2016-08-19 02:58:26 UTC], ["updated_at", 2016-08-19 02:58:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 2914], ["correct", false], ["created_at", 2016-08-19 02:58:26 UTC], ["updated_at", 2016-08-19 02:58:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Estêvão"], ["question_id", 2914], ["correct", false], ["created_at", 2016-08-19 02:58:26 UTC], ["updated_at", 2016-08-19 02:58:26 UTC]]  (196.3ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse a Zacarias que ele teria um filho?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse a Zacarias que ele teria um filho?"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem disse a Zacarias que ele teria um filho?"], ["created_at", 2016-08-19 02:58:26 UTC], ["updated_at", 2016-08-19 02:58:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anjo"], ["question_id", 2915], ["correct", true], ["created_at", 2016-08-19 02:58:26 UTC], ["updated_at", 2016-08-19 02:58:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isabel"], ["question_id", 2915], ["correct", false], ["created_at", 2016-08-19 02:58:26 UTC], ["updated_at", 2016-08-19 02:58:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria, Mãe de Jesus"], ["question_id", 2915], ["correct", false], ["created_at", 2016-08-19 02:58:26 UTC], ["updated_at", 2016-08-19 02:58:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José, Pai de Jesus"], ["question_id", 2915], ["correct", false], ["created_at", 2016-08-19 02:58:26 UTC], ["updated_at", 2016-08-19 02:58:26 UTC]]  (195.7ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse ao Faraó que haveria um período de muita fome no Egito?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse ao Faraó que haveria um período de muita fome no Egito?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem disse ao Faraó que haveria um período de muita fome no Egito?"], ["created_at", 2016-08-19 02:58:26 UTC], ["updated_at", 2016-08-19 02:58:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 2916], ["correct", true], ["created_at", 2016-08-19 02:58:26 UTC], ["updated_at", 2016-08-19 02:58:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 2916], ["correct", false], ["created_at", 2016-08-19 02:58:26 UTC], ["updated_at", 2016-08-19 02:58:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 2916], ["correct", false], ["created_at", 2016-08-19 02:58:26 UTC], ["updated_at", 2016-08-19 02:58:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 2916], ["correct", false], ["created_at", 2016-08-19 02:58:26 UTC], ["updated_at", 2016-08-19 02:58:26 UTC]]  (154.4ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse que queria ver os furos nas mãos e nos pés de Jesus para acreditar que Jesus havia ressuscitado?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse que queria ver os furos nas mãos e nos pés de Jesus para acreditar que Jesus havia ressuscitado?"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem disse que queria ver os furos nas mãos e nos pés de Jesus para acreditar que Jesus havia ressuscitado?"], ["created_at", 2016-08-19 02:58:26 UTC], ["updated_at", 2016-08-19 02:58:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tomé"], ["question_id", 2917], ["correct", true], ["created_at", 2016-08-19 02:58:26 UTC], ["updated_at", 2016-08-19 02:58:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 2917], ["correct", false], ["created_at", 2016-08-19 02:58:26 UTC], ["updated_at", 2016-08-19 02:58:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 2917], ["correct", false], ["created_at", 2016-08-19 02:58:26 UTC], ["updated_at", 2016-08-19 02:58:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 2917], ["correct", false], ["created_at", 2016-08-19 02:58:26 UTC], ["updated_at", 2016-08-19 02:58:26 UTC]]  (172.2ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse: \"Desafio hoje as fileiras de Israel; dai-me um homem para que pelejemos.\""], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse: \"Desafio hoje as fileiras de Israel; dai-me um homem para que pelejemos.\""], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem disse: \"Desafio hoje as fileiras de Israel; dai-me um homem para que pelejemos.\""], ["created_at", 2016-08-19 02:58:26 UTC], ["updated_at", 2016-08-19 02:58:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Golias"], ["question_id", 2918], ["correct", true], ["created_at", 2016-08-19 02:58:26 UTC], ["updated_at", 2016-08-19 02:58:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belsazar"], ["question_id", 2918], ["correct", false], ["created_at", 2016-08-19 02:58:26 UTC], ["updated_at", 2016-08-19 02:58:26 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 2918], ["correct", false], ["created_at", 2016-08-19 02:58:26 UTC], ["updated_at", 2016-08-19 02:58:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Naamã"], ["question_id", 2918], ["correct", false], ["created_at", 2016-08-19 02:58:26 UTC], ["updated_at", 2016-08-19 02:58:26 UTC]]  (147.0ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse: \"Se tu é o Filho de Deus, manda a esta pedra que se torne pão.\""], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse: \"Se tu é o Filho de Deus, manda a esta pedra que se torne pão.\""], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem disse: \"Se tu é o Filho de Deus, manda a esta pedra que se torne pão.\""], ["created_at", 2016-08-19 02:58:26 UTC], ["updated_at", 2016-08-19 02:58:26 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Satanás"], ["question_id", 2919], ["correct", true], ["created_at", 2016-08-19 02:58:27 UTC], ["updated_at", 2016-08-19 02:58:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas"], ["question_id", 2919], ["correct", false], ["created_at", 2016-08-19 02:58:27 UTC], ["updated_at", 2016-08-19 02:58:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 2919], ["correct", false], ["created_at", 2016-08-19 02:58:27 UTC], ["updated_at", 2016-08-19 02:58:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caifás"], ["question_id", 2919], ["correct", false], ["created_at", 2016-08-19 02:58:27 UTC], ["updated_at", 2016-08-19 02:58:27 UTC]]  (155.3ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse: \"Sou inocente do sangue deste homem.\""], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem disse: \"Sou inocente do sangue deste homem.\""], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem disse: \"Sou inocente do sangue deste homem.\""], ["created_at", 2016-08-19 02:58:27 UTC], ["updated_at", 2016-08-19 02:58:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilates"], ["question_id", 2920], ["correct", true], ["created_at", 2016-08-19 02:58:27 UTC], ["updated_at", 2016-08-19 02:58:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Antipas"], ["question_id", 2920], ["correct", false], ["created_at", 2016-08-19 02:58:27 UTC], ["updated_at", 2016-08-19 02:58:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Agripa"], ["question_id", 2920], ["correct", false], ["created_at", 2016-08-19 02:58:27 UTC], ["updated_at", 2016-08-19 02:58:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Barrabás"], ["question_id", 2920], ["correct", false], ["created_at", 2016-08-19 02:58:27 UTC], ["updated_at", 2016-08-19 02:58:27 UTC]]  (115.0ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem durante 7 anos imaginava que era um animal?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem durante 7 anos imaginava que era um animal?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem durante 7 anos imaginava que era um animal?"], ["created_at", 2016-08-19 02:58:27 UTC], ["updated_at", 2016-08-19 02:58:27 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 2921], ["correct", true], ["created_at", 2016-08-19 02:58:27 UTC], ["updated_at", 2016-08-19 02:58:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belsazar"], ["question_id", 2921], ["correct", false], ["created_at", 2016-08-19 02:58:27 UTC], ["updated_at", 2016-08-19 02:58:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 2921], ["correct", false], ["created_at", 2016-08-19 02:58:27 UTC], ["updated_at", 2016-08-19 02:58:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 2921], ["correct", false], ["created_at", 2016-08-19 02:58:27 UTC], ["updated_at", 2016-08-19 02:58:27 UTC]]  (147.1ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem durante sua viagem para Roma enfrentou uma violenta tempestade no mar?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem durante sua viagem para Roma enfrentou uma violenta tempestade no mar?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem durante sua viagem para Roma enfrentou uma violenta tempestade no mar?"], ["created_at", 2016-08-19 02:58:27 UTC], ["updated_at", 2016-08-19 02:58:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 2922], ["correct", true], ["created_at", 2016-08-19 02:58:27 UTC], ["updated_at", 2016-08-19 02:58:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 2922], ["correct", false], ["created_at", 2016-08-19 02:58:27 UTC], ["updated_at", 2016-08-19 02:58:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 2922], ["correct", false], ["created_at", 2016-08-19 02:58:27 UTC], ["updated_at", 2016-08-19 02:58:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 2922], ["correct", false], ["created_at", 2016-08-19 02:58:27 UTC], ["updated_at", 2016-08-19 02:58:27 UTC]]  (138.5ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem é chamado de \"o príncipe dos espíritos do diabo\" pelos fariseus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem é chamado de \"o príncipe dos espíritos do diabo\" pelos fariseus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem é chamado de \"o príncipe dos espíritos do diabo\" pelos fariseus?"], ["created_at", 2016-08-19 02:58:27 UTC], ["updated_at", 2016-08-19 02:58:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belzebu"], ["question_id", 2923], ["correct", true], ["created_at", 2016-08-19 02:58:27 UTC], ["updated_at", 2016-08-19 02:58:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bel"], ["question_id", 2923], ["correct", false], ["created_at", 2016-08-19 02:58:27 UTC], ["updated_at", 2016-08-19 02:58:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Baalins"], ["question_id", 2923], ["correct", false], ["created_at", 2016-08-19 02:58:27 UTC], ["updated_at", 2016-08-19 02:58:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Baal"], ["question_id", 2923], ["correct", false], ["created_at", 2016-08-19 02:58:27 UTC], ["updated_at", 2016-08-19 02:58:27 UTC]]  (138.1ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem é o primeiro bígamo citado na Bíblia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem é o primeiro bígamo citado na Bíblia?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem é o primeiro bígamo citado na Bíblia?"], ["created_at", 2016-08-19 02:58:27 UTC], ["updated_at", 2016-08-19 02:58:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lameque"], ["question_id", 2924], ["correct", true], ["created_at", 2016-08-19 02:58:27 UTC], ["updated_at", 2016-08-19 02:58:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 2924], ["correct", false], ["created_at", 2016-08-19 02:58:27 UTC], ["updated_at", 2016-08-19 02:58:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2924], ["correct", false], ["created_at", 2016-08-19 02:58:27 UTC], ["updated_at", 2016-08-19 02:58:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 2924], ["correct", false], ["created_at", 2016-08-19 02:58:27 UTC], ["updated_at", 2016-08-19 02:58:27 UTC]]  (139.3ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem encontrou a cesta onde Moisés encontrava-se escondido, presa junto aos juncos do rio Nilo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem encontrou a cesta onde Moisés encontrava-se escondido, presa junto aos juncos do rio Nilo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem encontrou a cesta onde Moisés encontrava-se escondido, presa junto aos juncos do rio Nilo?"], ["created_at", 2016-08-19 02:58:27 UTC], ["updated_at", 2016-08-19 02:58:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Filha do Faraó"], ["question_id", 2925], ["correct", true], ["created_at", 2016-08-19 02:58:27 UTC], ["updated_at", 2016-08-19 02:58:27 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Faraó"], ["question_id", 2925], ["correct", false], ["created_at", 2016-08-19 02:58:27 UTC], ["updated_at", 2016-08-19 02:58:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Concubinas do Faraó"], ["question_id", 2925], ["correct", false], ["created_at", 2016-08-19 02:58:27 UTC], ["updated_at", 2016-08-19 02:58:27 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Esposa do Faraó"], ["question_id", 2925], ["correct", false], ["created_at", 2016-08-19 02:58:27 UTC], ["updated_at", 2016-08-19 02:58:27 UTC]]  (172.2ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem encontrou um arbusto em chamas que não se consumia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem encontrou um arbusto em chamas que não se consumia?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem encontrou um arbusto em chamas que não se consumia?"], ["created_at", 2016-08-19 02:58:28 UTC], ["updated_at", 2016-08-19 02:58:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 2926], ["correct", true], ["created_at", 2016-08-19 02:58:28 UTC], ["updated_at", 2016-08-19 02:58:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 2926], ["correct", false], ["created_at", 2016-08-19 02:58:28 UTC], ["updated_at", 2016-08-19 02:58:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noé"], ["question_id", 2926], ["correct", false], ["created_at", 2016-08-19 02:58:28 UTC], ["updated_at", 2016-08-19 02:58:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 2926], ["correct", false], ["created_at", 2016-08-19 02:58:28 UTC], ["updated_at", 2016-08-19 02:58:28 UTC]]  (148.6ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enganou Eva no Jardim do Éden?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enganou Eva no Jardim do Éden?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem enganou Eva no Jardim do Éden?"], ["created_at", 2016-08-19 02:58:28 UTC], ["updated_at", 2016-08-19 02:58:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Serpente"], ["question_id", 2927], ["correct", true], ["created_at", 2016-08-19 02:58:28 UTC], ["updated_at", 2016-08-19 02:58:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Papagaio"], ["question_id", 2927], ["correct", false], ["created_at", 2016-08-19 02:58:28 UTC], ["updated_at", 2016-08-19 02:58:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adão"], ["question_id", 2927], ["correct", false], ["created_at", 2016-08-19 02:58:28 UTC], ["updated_at", 2016-08-19 02:58:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caim"], ["question_id", 2927], ["correct", false], ["created_at", 2016-08-19 02:58:28 UTC], ["updated_at", 2016-08-19 02:58:28 UTC]]  (130.3ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enganou Jacó em seu próprio banquete de casamento?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enganou Jacó em seu próprio banquete de casamento?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem enganou Jacó em seu próprio banquete de casamento?"], ["created_at", 2016-08-19 02:58:28 UTC], ["updated_at", 2016-08-19 02:58:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Labão"], ["question_id", 2928], ["correct", true], ["created_at", 2016-08-19 02:58:28 UTC], ["updated_at", 2016-08-19 02:58:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 2928], ["correct", false], ["created_at", 2016-08-19 02:58:28 UTC], ["updated_at", 2016-08-19 02:58:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 2928], ["correct", false], ["created_at", 2016-08-19 02:58:28 UTC], ["updated_at", 2016-08-19 02:58:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 2928], ["correct", false], ["created_at", 2016-08-19 02:58:28 UTC], ["updated_at", 2016-08-19 02:58:28 UTC]]  (164.2ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enganou Jacó, que ao final dos primeiros 7 anos de trabalho, não recebeu a mão de Raquel, mas sim da sua irmã Léia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enganou Jacó, que ao final dos primeiros 7 anos de trabalho, não recebeu a mão de Raquel, mas sim da sua irmã Léia?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem enganou Jacó, que ao final dos primeiros 7 anos de trabalho, não recebeu a mão de Raquel, mas sim da sua irmã Léia?"], ["created_at", 2016-08-19 02:58:28 UTC], ["updated_at", 2016-08-19 02:58:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Próprio Futuro Sogro"], ["question_id", 2929], ["correct", true], ["created_at", 2016-08-19 02:58:28 UTC], ["updated_at", 2016-08-19 02:58:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Léia"], ["question_id", 2929], ["correct", false], ["created_at", 2016-08-19 02:58:28 UTC], ["updated_at", 2016-08-19 02:58:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Própria Raquel"], ["question_id", 2929], ["correct", false], ["created_at", 2016-08-19 02:58:28 UTC], ["updated_at", 2016-08-19 02:58:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Própria Futura Sogra"], ["question_id", 2929], ["correct", false], ["created_at", 2016-08-19 02:58:28 UTC], ["updated_at", 2016-08-19 02:58:28 UTC]]  (190.4ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enganou o rei Dario, fazendo-o com que assinasse um decreto onde o rei deveria receber unicamente as orações?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enganou o rei Dario, fazendo-o com que assinasse um decreto onde o rei deveria receber unicamente as orações?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem enganou o rei Dario, fazendo-o com que assinasse um decreto onde o rei deveria receber unicamente as orações?"], ["created_at", 2016-08-19 02:58:28 UTC], ["updated_at", 2016-08-19 02:58:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Demais Presidentes"], ["question_id", 2930], ["correct", true], ["created_at", 2016-08-19 02:58:28 UTC], ["updated_at", 2016-08-19 02:58:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Governadores"], ["question_id", 2930], ["correct", false], ["created_at", 2016-08-19 02:58:28 UTC], ["updated_at", 2016-08-19 02:58:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Povo de Babilônia"], ["question_id", 2930], ["correct", false], ["created_at", 2016-08-19 02:58:28 UTC], ["updated_at", 2016-08-19 02:58:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Magos da Corte"], ["question_id", 2930], ["correct", false], ["created_at", 2016-08-19 02:58:28 UTC], ["updated_at", 2016-08-19 02:58:28 UTC]]  (157.2ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enviou Eliezer para procurar por uma esposa para Isaque?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enviou Eliezer para procurar por uma esposa para Isaque?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem enviou Eliezer para procurar por uma esposa para Isaque?"], ["created_at", 2016-08-19 02:58:28 UTC], ["updated_at", 2016-08-19 02:58:28 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 2931], ["correct", true], ["created_at", 2016-08-19 02:58:28 UTC], ["updated_at", 2016-08-19 02:58:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sara"], ["question_id", 2931], ["correct", false], ["created_at", 2016-08-19 02:58:28 UTC], ["updated_at", 2016-08-19 02:58:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 2931], ["correct", false], ["created_at", 2016-08-19 02:58:28 UTC], ["updated_at", 2016-08-19 02:58:28 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 2931], ["correct", false], ["created_at", 2016-08-19 02:58:28 UTC], ["updated_at", 2016-08-19 02:58:28 UTC]]  (155.4ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enviou espias para a cidade de Jericó?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem enviou espias para a cidade de Jericó?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem enviou espias para a cidade de Jericó?"], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 2932], ["correct", true], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 2932], ["correct", false], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 2932], ["correct", false], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 2932], ["correct", false], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]]  (171.7ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era a esposa do impostor Ananias?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era a esposa do impostor Ananias?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era a esposa do impostor Ananias?"], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Safira"], ["question_id", 2933], ["correct", true], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Priscila"], ["question_id", 2933], ["correct", false], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 2933], ["correct", false], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Áquila"], ["question_id", 2933], ["correct", false], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]]  (129.5ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era a esposa do rei Assuero que recusou-se a ser exibida em frente a alguns convidados bêbados?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era a esposa do rei Assuero que recusou-se a ser exibida em frente a alguns convidados bêbados?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era a esposa do rei Assuero que recusou-se a ser exibida em frente a alguns convidados bêbados?"], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vasti"], ["question_id", 2934], ["correct", true], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ester"], ["question_id", 2934], ["correct", false], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rute"], ["question_id", 2934], ["correct", false], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sabá"], ["question_id", 2934], ["correct", false], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]]  (122.5ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era a mulher viúva e moabita que se dedicara inteiramente à sua sogra?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era a mulher viúva e moabita que se dedicara inteiramente à sua sogra?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era a mulher viúva e moabita que se dedicara inteiramente à sua sogra?"], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rute"], ["question_id", 2935], ["correct", true], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noemi"], ["question_id", 2935], ["correct", false], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Orfa"], ["question_id", 2935], ["correct", false], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ester"], ["question_id", 2935], ["correct", false], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]]  (132.0ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era a rainha cruel de Israel que foi devorada pelos cachorros quado morreu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era a rainha cruel de Israel que foi devorada pelos cachorros quado morreu?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era a rainha cruel de Israel que foi devorada pelos cachorros quado morreu?"], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jezabel"], ["question_id", 2936], ["correct", true], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Atalia"], ["question_id", 2936], ["correct", false], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vasti"], ["question_id", 2936], ["correct", false], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ester"], ["question_id", 2936], ["correct", false], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]]  (130.7ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era a sogra de Rute?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era a sogra de Rute?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era a sogra de Rute?"], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Orfa"], ["question_id", 2937], ["correct", true], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noemi"], ["question_id", 2937], ["correct", false], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ester"], ["question_id", 2937], ["correct", false], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rute Não Era Casada"], ["question_id", 2937], ["correct", false], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]]  (139.4ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o centurião romano honrado e temente a Deus que teve uma visão de Deus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o centurião romano honrado e temente a Deus que teve uma visão de Deus?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o centurião romano honrado e temente a Deus que teve uma visão de Deus?"], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cornélio"], ["question_id", 2938], ["correct", true], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Procópio"], ["question_id", 2938], ["correct", false], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Susteis"], ["question_id", 2938], ["correct", false], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nicolau"], ["question_id", 2938], ["correct", false], ["created_at", 2016-08-19 02:58:29 UTC], ["updated_at", 2016-08-19 02:58:29 UTC]]  (132.3ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o conselheiro influente do rei Davi que desertou para o lado de Absalão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o conselheiro influente do rei Davi que desertou para o lado de Absalão?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o conselheiro influente do rei Davi que desertou para o lado de Absalão?"], ["created_at", 2016-08-19 02:58:30 UTC], ["updated_at", 2016-08-19 02:58:30 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aitofel"], ["question_id", 2939], ["correct", true], ["created_at", 2016-08-19 02:58:30 UTC], ["updated_at", 2016-08-19 02:58:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joabe"], ["question_id", 2939], ["correct", false], ["created_at", 2016-08-19 02:58:30 UTC], ["updated_at", 2016-08-19 02:58:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abner"], ["question_id", 2939], ["correct", false], ["created_at", 2016-08-19 02:58:30 UTC], ["updated_at", 2016-08-19 02:58:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ugar"], ["question_id", 2939], ["correct", false], ["created_at", 2016-08-19 02:58:30 UTC], ["updated_at", 2016-08-19 02:58:30 UTC]]  (129.7ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o deus dos amonitas que exigia o sacrifício de crianças?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o deus dos amonitas que exigia o sacrifício de crianças?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o deus dos amonitas que exigia o sacrifício de crianças?"], ["created_at", 2016-08-19 02:58:30 UTC], ["updated_at", 2016-08-19 02:58:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moloque"], ["question_id", 2940], ["correct", true], ["created_at", 2016-08-19 02:58:30 UTC], ["updated_at", 2016-08-19 02:58:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nebo"], ["question_id", 2940], ["correct", false], ["created_at", 2016-08-19 02:58:30 UTC], ["updated_at", 2016-08-19 02:58:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Baal"], ["question_id", 2940], ["correct", false], ["created_at", 2016-08-19 02:58:30 UTC], ["updated_at", 2016-08-19 02:58:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tartaque"], ["question_id", 2940], ["correct", false], ["created_at", 2016-08-19 02:58:30 UTC], ["updated_at", 2016-08-19 02:58:30 UTC]]  (134.2ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o home da terra de Uz?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o home da terra de Uz?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o home da terra de Uz?"], ["created_at", 2016-08-19 02:58:30 UTC], ["updated_at", 2016-08-19 02:58:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jó"], ["question_id", 2941], ["correct", true], ["created_at", 2016-08-19 02:58:30 UTC], ["updated_at", 2016-08-19 02:58:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 2941], ["correct", false], ["created_at", 2016-08-19 02:58:30 UTC], ["updated_at", 2016-08-19 02:58:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 2941], ["correct", false], ["created_at", 2016-08-19 02:58:30 UTC], ["updated_at", 2016-08-19 02:58:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeremias"], ["question_id", 2941], ["correct", false], ["created_at", 2016-08-19 02:58:30 UTC], ["updated_at", 2016-08-19 02:58:30 UTC]]  (130.0ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o homem segundo o coração de Deus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o homem segundo o coração de Deus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o homem segundo o coração de Deus?"], ["created_at", 2016-08-19 02:58:30 UTC], ["updated_at", 2016-08-19 02:58:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 2942], ["correct", true], ["created_at", 2016-08-19 02:58:30 UTC], ["updated_at", 2016-08-19 02:58:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2942], ["correct", false], ["created_at", 2016-08-19 02:58:30 UTC], ["updated_at", 2016-08-19 02:58:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 2942], ["correct", false], ["created_at", 2016-08-19 02:58:30 UTC], ["updated_at", 2016-08-19 02:58:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noé"], ["question_id", 2942], ["correct", false], ["created_at", 2016-08-19 02:58:30 UTC], ["updated_at", 2016-08-19 02:58:30 UTC]]  (138.4ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o honesto homem a quem Deus deu instruções para construiur uma arca?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o honesto homem a quem Deus deu instruções para construiur uma arca?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o honesto homem a quem Deus deu instruções para construiur uma arca?"], ["created_at", 2016-08-19 02:58:30 UTC], ["updated_at", 2016-08-19 02:58:30 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noé"], ["question_id", 2943], ["correct", true], ["created_at", 2016-08-19 02:58:30 UTC], ["updated_at", 2016-08-19 02:58:30 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ninoode"], ["question_id", 2943], ["correct", false], ["created_at", 2016-08-19 02:58:30 UTC], ["updated_at", 2016-08-19 02:58:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Naor"], ["question_id", 2943], ["correct", false], ["created_at", 2016-08-19 02:58:30 UTC], ["updated_at", 2016-08-19 02:58:30 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 2943], ["correct", false], ["created_at", 2016-08-19 02:58:30 UTC], ["updated_at", 2016-08-19 02:58:30 UTC]]  (297.1ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o irmão de Moisés?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o irmão de Moisés?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o irmão de Moisés?"], ["created_at", 2016-08-19 02:58:31 UTC], ["updated_at", 2016-08-19 02:58:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 2944], ["correct", true], ["created_at", 2016-08-19 02:58:31 UTC], ["updated_at", 2016-08-19 02:58:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abner"], ["question_id", 2944], ["correct", false], ["created_at", 2016-08-19 02:58:31 UTC], ["updated_at", 2016-08-19 02:58:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 2944], ["correct", false], ["created_at", 2016-08-19 02:58:31 UTC], ["updated_at", 2016-08-19 02:58:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cão"], ["question_id", 2944], ["correct", false], ["created_at", 2016-08-19 02:58:31 UTC], ["updated_at", 2016-08-19 02:58:31 UTC]]  (224.0ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o irmão mais novo de Miriã?\n1,"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o irmão mais novo de Miriã?\n1,"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o irmão mais novo de Miriã?\n1,"], ["created_at", 2016-08-19 02:58:31 UTC], ["updated_at", 2016-08-19 02:58:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 2945], ["correct", true], ["created_at", 2016-08-19 02:58:31 UTC], ["updated_at", 2016-08-19 02:58:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 2945], ["correct", false], ["created_at", 2016-08-19 02:58:31 UTC], ["updated_at", 2016-08-19 02:58:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ló"], ["question_id", 2945], ["correct", false], ["created_at", 2016-08-19 02:58:31 UTC], ["updated_at", 2016-08-19 02:58:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 2945], ["correct", false], ["created_at", 2016-08-19 02:58:31 UTC], ["updated_at", 2016-08-19 02:58:31 UTC]]  (155.3ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o marido impostor de Safira?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o marido impostor de Safira?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o marido impostor de Safira?"], ["created_at", 2016-08-19 02:58:31 UTC], ["updated_at", 2016-08-19 02:58:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ananias"], ["question_id", 2946], ["correct", true], ["created_at", 2016-08-19 02:58:31 UTC], ["updated_at", 2016-08-19 02:58:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miquéias"], ["question_id", 2946], ["correct", false], ["created_at", 2016-08-19 02:58:31 UTC], ["updated_at", 2016-08-19 02:58:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sofonias"], ["question_id", 2946], ["correct", false], ["created_at", 2016-08-19 02:58:31 UTC], ["updated_at", 2016-08-19 02:58:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Malaquias"], ["question_id", 2946], ["correct", false], ["created_at", 2016-08-19 02:58:31 UTC], ["updated_at", 2016-08-19 02:58:31 UTC]]  (122.4ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o melhor amigo de Davi?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o melhor amigo de Davi?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o melhor amigo de Davi?"], ["created_at", 2016-08-19 02:58:31 UTC], ["updated_at", 2016-08-19 02:58:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jônatas"], ["question_id", 2947], ["correct", true], ["created_at", 2016-08-19 02:58:31 UTC], ["updated_at", 2016-08-19 02:58:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 2947], ["correct", false], ["created_at", 2016-08-19 02:58:31 UTC], ["updated_at", 2016-08-19 02:58:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 2947], ["correct", false], ["created_at", 2016-08-19 02:58:31 UTC], ["updated_at", 2016-08-19 02:58:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 2947], ["correct", false], ["created_at", 2016-08-19 02:58:31 UTC], ["updated_at", 2016-08-19 02:58:31 UTC]]  (133.0ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o pai de Ló, que foi resgatado por um anjo da cidade de Sodoma?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o pai de Ló, que foi resgatado por um anjo da cidade de Sodoma?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o pai de Ló, que foi resgatado por um anjo da cidade de Sodoma?"], ["created_at", 2016-08-19 02:58:31 UTC], ["updated_at", 2016-08-19 02:58:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Harã"], ["question_id", 2948], ["correct", true], ["created_at", 2016-08-19 02:58:31 UTC], ["updated_at", 2016-08-19 02:58:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hamã"], ["question_id", 2948], ["correct", false], ["created_at", 2016-08-19 02:58:31 UTC], ["updated_at", 2016-08-19 02:58:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Natã"], ["question_id", 2948], ["correct", false], ["created_at", 2016-08-19 02:58:31 UTC], ["updated_at", 2016-08-19 02:58:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sarã"], ["question_id", 2948], ["correct", false], ["created_at", 2016-08-19 02:58:31 UTC], ["updated_at", 2016-08-19 02:58:31 UTC]]  (132.0ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o profeta de Jerusalém que visitou os cristãos em Antioquia e contou-lhes sobre uma grande fome que estava por vir?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o profeta de Jerusalém que visitou os cristãos em Antioquia e contou-lhes sobre uma grande fome que estava por vir?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o profeta de Jerusalém que visitou os cristãos em Antioquia e contou-lhes sobre uma grande fome que estava por vir?"], ["created_at", 2016-08-19 02:58:31 UTC], ["updated_at", 2016-08-19 02:58:31 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ágabo"], ["question_id", 2949], ["correct", true], ["created_at", 2016-08-19 02:58:31 UTC], ["updated_at", 2016-08-19 02:58:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rufo"], ["question_id", 2949], ["correct", false], ["created_at", 2016-08-19 02:58:31 UTC], ["updated_at", 2016-08-19 02:58:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Malco"], ["question_id", 2949], ["correct", false], ["created_at", 2016-08-19 02:58:31 UTC], ["updated_at", 2016-08-19 02:58:31 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias"], ["question_id", 2949], ["correct", false], ["created_at", 2016-08-19 02:58:31 UTC], ["updated_at", 2016-08-19 02:58:31 UTC]]  (132.3ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o rei da Assíria quando Deus matou 185.000 homens que estavam tentando tomar Jerusalém?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o rei da Assíria quando Deus matou 185.000 homens que estavam tentando tomar Jerusalém?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o rei da Assíria quando Deus matou 185.000 homens que estavam tentando tomar Jerusalém?"], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Senaqueribe"], ["question_id", 2950], ["correct", true], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sargão"], ["question_id", 2950], ["correct", false], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiglete-pileser"], ["question_id", 2950], ["correct", false], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belsazar"], ["question_id", 2950], ["correct", false], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]]  (132.2ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o rei de Israel quando a Assíria conquistou o reinado do norte?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o rei de Israel quando a Assíria conquistou o reinado do norte?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o rei de Israel quando a Assíria conquistou o reinado do norte?"], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 2951], ["correct", true], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeoás"], ["question_id", 2951], ["correct", false], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zinri"], ["question_id", 2951], ["correct", false], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jedidias"], ["question_id", 2951], ["correct", false], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]]  (131.3ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o rei de Judá quando Nabucodonosor atacou Jerusalém pela 1ª vez?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o rei de Judá quando Nabucodonosor atacou Jerusalém pela 1ª vez?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o rei de Judá quando Nabucodonosor atacou Jerusalém pela 1ª vez?"], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeoaquim"], ["question_id", 2952], ["correct", true], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ezequias"], ["question_id", 2952], ["correct", false], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zedequias"], ["question_id", 2952], ["correct", false], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josias"], ["question_id", 2952], ["correct", false], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]]  (137.7ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o rei de Judá quando Nabucodonosor atacou pela 3ª vez a cidade de Jerusalém?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o rei de Judá quando Nabucodonosor atacou pela 3ª vez a cidade de Jerusalém?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o rei de Judá quando Nabucodonosor atacou pela 3ª vez a cidade de Jerusalém?"], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zedequias"], ["question_id", 2953], ["correct", true], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josias"], ["question_id", 2953], ["correct", false], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 2953], ["correct", false], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acaz"], ["question_id", 2953], ["correct", false], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]]  (171.5ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o rei governante em Jerusalém quando Jesus nasceu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o rei governante em Jerusalém quando Jesus nasceu?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o rei governante em Jerusalém quando Jesus nasceu?"], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes, O Grande"], ["question_id", 2954], ["correct", true], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Antipas"], ["question_id", 2954], ["correct", false], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Agripa"], ["question_id", 2954], ["correct", false], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todas As Alternativas Estão Corretas"], ["question_id", 2954], ["correct", false], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]]  (146.5ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o Sumo Sacerdote que cuidou de Samuel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o Sumo Sacerdote que cuidou de Samuel?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o Sumo Sacerdote que cuidou de Samuel?"], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eli"], ["question_id", 2955], ["correct", true], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 2955], ["correct", false], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 2955], ["correct", false], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ananias"], ["question_id", 2955], ["correct", false], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]]  (156.1ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o tio de Ló?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem era o tio de Ló?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem era o tio de Ló?"], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 2956], ["correct", true], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 2956], ["correct", false], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 2956], ["correct", false], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 2956], ["correct", false], ["created_at", 2016-08-19 02:58:32 UTC], ["updated_at", 2016-08-19 02:58:32 UTC]]  (240.0ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem eram os pais de Jedidias?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem eram os pais de Jedidias?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem eram os pais de Jedidias?"], ["created_at", 2016-08-19 02:58:33 UTC], ["updated_at", 2016-08-19 02:58:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi e Bate-seba"], ["question_id", 2957], ["correct", true], ["created_at", 2016-08-19 02:58:33 UTC], ["updated_at", 2016-08-19 02:58:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elcana e Ana"], ["question_id", 2957], ["correct", false], ["created_at", 2016-08-19 02:58:33 UTC], ["updated_at", 2016-08-19 02:58:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Boaz e Rute"], ["question_id", 2957], ["correct", false], ["created_at", 2016-08-19 02:58:33 UTC], ["updated_at", 2016-08-19 02:58:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão e Dalila"], ["question_id", 2957], ["correct", false], ["created_at", 2016-08-19 02:58:33 UTC], ["updated_at", 2016-08-19 02:58:33 UTC]]  (123.2ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem eram os pais de José e Benjamim?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem eram os pais de José e Benjamim?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem eram os pais de José e Benjamim?"], ["created_at", 2016-08-19 02:58:33 UTC], ["updated_at", 2016-08-19 02:58:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José e Raquel"], ["question_id", 2958], ["correct", true], ["created_at", 2016-08-19 02:58:33 UTC], ["updated_at", 2016-08-19 02:58:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão e Sara"], ["question_id", 2958], ["correct", false], ["created_at", 2016-08-19 02:58:33 UTC], ["updated_at", 2016-08-19 02:58:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque e Rebeca"], ["question_id", 2958], ["correct", false], ["created_at", 2016-08-19 02:58:33 UTC], ["updated_at", 2016-08-19 02:58:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José e Maria"], ["question_id", 2958], ["correct", false], ["created_at", 2016-08-19 02:58:33 UTC], ["updated_at", 2016-08-19 02:58:33 UTC]]  (155.3ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem eram os pais de Sete?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem eram os pais de Sete?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem eram os pais de Sete?"], ["created_at", 2016-08-19 02:58:33 UTC], ["updated_at", 2016-08-19 02:58:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adão e Eva"], ["question_id", 2959], ["correct", true], ["created_at", 2016-08-19 02:58:33 UTC], ["updated_at", 2016-08-19 02:58:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque e Rebeca"], ["question_id", 2959], ["correct", false], ["created_at", 2016-08-19 02:58:33 UTC], ["updated_at", 2016-08-19 02:58:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi e Bate-seba"], ["question_id", 2959], ["correct", false], ["created_at", 2016-08-19 02:58:33 UTC], ["updated_at", 2016-08-19 02:58:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José e Maria"], ["question_id", 2959], ["correct", false], ["created_at", 2016-08-19 02:58:33 UTC], ["updated_at", 2016-08-19 02:58:33 UTC]]  (147.1ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem eram os pais dos irmãos gêmeos Esaú e Jacó?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem eram os pais dos irmãos gêmeos Esaú e Jacó?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem eram os pais dos irmãos gêmeos Esaú e Jacó?"], ["created_at", 2016-08-19 02:58:33 UTC], ["updated_at", 2016-08-19 02:58:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque e Rebeca"], ["question_id", 2960], ["correct", true], ["created_at", 2016-08-19 02:58:33 UTC], ["updated_at", 2016-08-19 02:58:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão e Dalila"], ["question_id", 2960], ["correct", false], ["created_at", 2016-08-19 02:58:33 UTC], ["updated_at", 2016-08-19 02:58:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão e Sara"], ["question_id", 2960], ["correct", false], ["created_at", 2016-08-19 02:58:33 UTC], ["updated_at", 2016-08-19 02:58:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José e Asenate"], ["question_id", 2960], ["correct", false], ["created_at", 2016-08-19 02:58:33 UTC], ["updated_at", 2016-08-19 02:58:33 UTC]]  (151.7ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem escondeu Moisés em uma cesta, com o objetivo de protegê-lo do decreto de morte pronunciado pelo Faraó?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem escondeu Moisés em uma cesta, com o objetivo de protegê-lo do decreto de morte pronunciado pelo Faraó?"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem escondeu Moisés em uma cesta, com o objetivo de protegê-lo do decreto de morte pronunciado pelo Faraó?"], ["created_at", 2016-08-19 02:58:33 UTC], ["updated_at", 2016-08-19 02:58:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Mãe"], ["question_id", 2961], ["correct", true], ["created_at", 2016-08-19 02:58:33 UTC], ["updated_at", 2016-08-19 02:58:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sara"], ["question_id", 2961], ["correct", false], ["created_at", 2016-08-19 02:58:33 UTC], ["updated_at", 2016-08-19 02:58:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 2961], ["correct", false], ["created_at", 2016-08-19 02:58:33 UTC], ["updated_at", 2016-08-19 02:58:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 2961], ["correct", false], ["created_at", 2016-08-19 02:58:33 UTC], ["updated_at", 2016-08-19 02:58:33 UTC]]  (150.0ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem escondeu os espias na cidade de Jericó?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem escondeu os espias na cidade de Jericó?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem escondeu os espias na cidade de Jericó?"], ["created_at", 2016-08-19 02:58:33 UTC], ["updated_at", 2016-08-19 02:58:33 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Raabe"], ["question_id", 2962], ["correct", true], ["created_at", 2016-08-19 02:58:33 UTC], ["updated_at", 2016-08-19 02:58:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Raquel"], ["question_id", 2962], ["correct", false], ["created_at", 2016-08-19 02:58:33 UTC], ["updated_at", 2016-08-19 02:58:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Raão"], ["question_id", 2962], ["correct", false], ["created_at", 2016-08-19 02:58:33 UTC], ["updated_at", 2016-08-19 02:58:33 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Raísa"], ["question_id", 2962], ["correct", false], ["created_at", 2016-08-19 02:58:33 UTC], ["updated_at", 2016-08-19 02:58:33 UTC]]  (148.2ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem escreveu a carta de Paulo aos Romanos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem escreveu a carta de Paulo aos Romanos?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem escreveu a carta de Paulo aos Romanos?"], ["created_at", 2016-08-19 02:58:34 UTC], ["updated_at", 2016-08-19 02:58:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tércio"], ["question_id", 2963], ["correct", true], ["created_at", 2016-08-19 02:58:34 UTC], ["updated_at", 2016-08-19 02:58:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 2963], ["correct", false], ["created_at", 2016-08-19 02:58:34 UTC], ["updated_at", 2016-08-19 02:58:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 2963], ["correct", false], ["created_at", 2016-08-19 02:58:34 UTC], ["updated_at", 2016-08-19 02:58:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Barnabé"], ["question_id", 2963], ["correct", false], ["created_at", 2016-08-19 02:58:34 UTC], ["updated_at", 2016-08-19 02:58:34 UTC]]  (148.4ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem espargia o sangue do sacrifício no propiciatório da Arca da Aliança?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem espargia o sangue do sacrifício no propiciatório da Arca da Aliança?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem espargia o sangue do sacrifício no propiciatório da Arca da Aliança?"], ["created_at", 2016-08-19 02:58:34 UTC], ["updated_at", 2016-08-19 02:58:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sacerdote"], ["question_id", 2964], ["correct", true], ["created_at", 2016-08-19 02:58:34 UTC], ["updated_at", 2016-08-19 02:58:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Levita"], ["question_id", 2964], ["correct", false], ["created_at", 2016-08-19 02:58:34 UTC], ["updated_at", 2016-08-19 02:58:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Escriba"], ["question_id", 2964], ["correct", false], ["created_at", 2016-08-19 02:58:34 UTC], ["updated_at", 2016-08-19 02:58:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Próprio Deus"], ["question_id", 2964], ["correct", false], ["created_at", 2016-08-19 02:58:34 UTC], ["updated_at", 2016-08-19 02:58:34 UTC]]  (172.7ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem estava em pé no pináculo do Templo e tentou Jesus a saltar?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem estava em pé no pináculo do Templo e tentou Jesus a saltar?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem estava em pé no pináculo do Templo e tentou Jesus a saltar?"], ["created_at", 2016-08-19 02:58:34 UTC], ["updated_at", 2016-08-19 02:58:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Satanás"], ["question_id", 2965], ["correct", true], ["created_at", 2016-08-19 02:58:34 UTC], ["updated_at", 2016-08-19 02:58:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes, O Grande"], ["question_id", 2965], ["correct", false], ["created_at", 2016-08-19 02:58:34 UTC], ["updated_at", 2016-08-19 02:58:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 2965], ["correct", false], ["created_at", 2016-08-19 02:58:34 UTC], ["updated_at", 2016-08-19 02:58:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Agripa"], ["question_id", 2965], ["correct", false], ["created_at", 2016-08-19 02:58:34 UTC], ["updated_at", 2016-08-19 02:58:34 UTC]]  (156.1ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem estava perseguindo o povo israelita quando eles estavam atravessando o Mar Vermelho?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem estava perseguindo o povo israelita quando eles estavam atravessando o Mar Vermelho?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem estava perseguindo o povo israelita quando eles estavam atravessando o Mar Vermelho?"], ["created_at", 2016-08-19 02:58:34 UTC], ["updated_at", 2016-08-19 02:58:34 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Egípcios"], ["question_id", 2966], ["correct", true], ["created_at", 2016-08-19 02:58:34 UTC], ["updated_at", 2016-08-19 02:58:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Medo-persas"], ["question_id", 2966], ["correct", false], ["created_at", 2016-08-19 02:58:34 UTC], ["updated_at", 2016-08-19 02:58:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Gregos"], ["question_id", 2966], ["correct", false], ["created_at", 2016-08-19 02:58:34 UTC], ["updated_at", 2016-08-19 02:58:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Amorreus"], ["question_id", 2966], ["correct", false], ["created_at", 2016-08-19 02:58:34 UTC], ["updated_at", 2016-08-19 02:58:34 UTC]]  (205.2ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem estava procurando Jesus, quando Este tinha apenas 12 anos, e estava ensinando no Templo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem estava procurando Jesus, quando Este tinha apenas 12 anos, e estava ensinando no Templo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem estava procurando Jesus, quando Este tinha apenas 12 anos, e estava ensinando no Templo?"], ["created_at", 2016-08-19 02:58:34 UTC], ["updated_at", 2016-08-19 02:58:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Pais"], ["question_id", 2967], ["correct", true], ["created_at", 2016-08-19 02:58:34 UTC], ["updated_at", 2016-08-19 02:58:34 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 2967], ["correct", false], ["created_at", 2016-08-19 02:58:34 UTC], ["updated_at", 2016-08-19 02:58:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Discípulos"], ["question_id", 2967], ["correct", false], ["created_at", 2016-08-19 02:58:34 UTC], ["updated_at", 2016-08-19 02:58:34 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Irmão"], ["question_id", 2967], ["correct", false], ["created_at", 2016-08-19 02:58:34 UTC], ["updated_at", 2016-08-19 02:58:34 UTC]]  (146.5ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem estava sentado eu uma jumenta quando apareceu um anjo com a espada desembainhada?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem estava sentado eu uma jumenta quando apareceu um anjo com a espada desembainhada?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem estava sentado eu uma jumenta quando apareceu um anjo com a espada desembainhada?"], ["created_at", 2016-08-19 02:58:35 UTC], ["updated_at", 2016-08-19 02:58:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Balaão"], ["question_id", 2968], ["correct", true], ["created_at", 2016-08-19 02:58:35 UTC], ["updated_at", 2016-08-19 02:58:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2968], ["correct", false], ["created_at", 2016-08-19 02:58:35 UTC], ["updated_at", 2016-08-19 02:58:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeroboão"], ["question_id", 2968], ["correct", false], ["created_at", 2016-08-19 02:58:35 UTC], ["updated_at", 2016-08-19 02:58:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Roboão"], ["question_id", 2968], ["correct", false], ["created_at", 2016-08-19 02:58:35 UTC], ["updated_at", 2016-08-19 02:58:35 UTC]]  (139.5ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem esteve sepultado por 4 dias até que foi ressuscitado por Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem esteve sepultado por 4 dias até que foi ressuscitado por Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem esteve sepultado por 4 dias até que foi ressuscitado por Jesus?"], ["created_at", 2016-08-19 02:58:35 UTC], ["updated_at", 2016-08-19 02:58:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lázaro"], ["question_id", 2969], ["correct", true], ["created_at", 2016-08-19 02:58:35 UTC], ["updated_at", 2016-08-19 02:58:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matusalém"], ["question_id", 2969], ["correct", false], ["created_at", 2016-08-19 02:58:35 UTC], ["updated_at", 2016-08-19 02:58:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 2969], ["correct", false], ["created_at", 2016-08-19 02:58:35 UTC], ["updated_at", 2016-08-19 02:58:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Habacuque"], ["question_id", 2969], ["correct", false], ["created_at", 2016-08-19 02:58:35 UTC], ["updated_at", 2016-08-19 02:58:35 UTC]]  (188.1ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem expulsou os mercadores que haviam se alojado no Templo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem expulsou os mercadores que haviam se alojado no Templo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem expulsou os mercadores que haviam se alojado no Templo?"], ["created_at", 2016-08-19 02:58:35 UTC], ["updated_at", 2016-08-19 02:58:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 2970], ["correct", true], ["created_at", 2016-08-19 02:58:35 UTC], ["updated_at", 2016-08-19 02:58:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Líderes Religiosos"], ["question_id", 2970], ["correct", false], ["created_at", 2016-08-19 02:58:35 UTC], ["updated_at", 2016-08-19 02:58:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 2970], ["correct", false], ["created_at", 2016-08-19 02:58:35 UTC], ["updated_at", 2016-08-19 02:58:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Agripa"], ["question_id", 2970], ["correct", false], ["created_at", 2016-08-19 02:58:35 UTC], ["updated_at", 2016-08-19 02:58:35 UTC]]  (155.7ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem falsamente acusou José de tentar seduzí-la?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem falsamente acusou José de tentar seduzí-la?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem falsamente acusou José de tentar seduzí-la?"], ["created_at", 2016-08-19 02:58:35 UTC], ["updated_at", 2016-08-19 02:58:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Esposa de Potifar"], ["question_id", 2971], ["correct", true], ["created_at", 2016-08-19 02:58:35 UTC], ["updated_at", 2016-08-19 02:58:35 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Criada de Potifar"], ["question_id", 2971], ["correct", false], ["created_at", 2016-08-19 02:58:35 UTC], ["updated_at", 2016-08-19 02:58:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Mãe de Potifar"], ["question_id", 2971], ["correct", false], ["created_at", 2016-08-19 02:58:35 UTC], ["updated_at", 2016-08-19 02:58:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Filha de Potifar"], ["question_id", 2971], ["correct", false], ["created_at", 2016-08-19 02:58:35 UTC], ["updated_at", 2016-08-19 02:58:35 UTC]]  (156.1ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fez a primeira tradução completa da Bíblia para o inglês, no ano de 1380?\n1,"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fez a primeira tradução completa da Bíblia para o inglês, no ano de 1380?\n1,"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem fez a primeira tradução completa da Bíblia para o inglês, no ano de 1380?\n1,"], ["created_at", 2016-08-19 02:58:35 UTC], ["updated_at", 2016-08-19 02:58:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Wycliffe"], ["question_id", 2972], ["correct", true], ["created_at", 2016-08-19 02:58:35 UTC], ["updated_at", 2016-08-19 02:58:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Martinho Lutero"], ["question_id", 2972], ["correct", false], ["created_at", 2016-08-19 02:58:35 UTC], ["updated_at", 2016-08-19 02:58:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "John Lázarus"], ["question_id", 2972], ["correct", false], ["created_at", 2016-08-19 02:58:35 UTC], ["updated_at", 2016-08-19 02:58:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Episcopapus Laurentis"], ["question_id", 2972], ["correct", false], ["created_at", 2016-08-19 02:58:35 UTC], ["updated_at", 2016-08-19 02:58:35 UTC]]  (198.5ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fez descer uma corda púrpura pela janela quando os israelitas invadiram Jericó?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fez descer uma corda púrpura pela janela quando os israelitas invadiram Jericó?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem fez descer uma corda púrpura pela janela quando os israelitas invadiram Jericó?"], ["created_at", 2016-08-19 02:58:35 UTC], ["updated_at", 2016-08-19 02:58:35 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Raabe"], ["question_id", 2973], ["correct", true], ["created_at", 2016-08-19 02:58:35 UTC], ["updated_at", 2016-08-19 02:58:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Raquel"], ["question_id", 2973], ["correct", false], ["created_at", 2016-08-19 02:58:35 UTC], ["updated_at", 2016-08-19 02:58:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rute"], ["question_id", 2973], ["correct", false], ["created_at", 2016-08-19 02:58:35 UTC], ["updated_at", 2016-08-19 02:58:35 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Orfa"], ["question_id", 2973], ["correct", false], ["created_at", 2016-08-19 02:58:35 UTC], ["updated_at", 2016-08-19 02:58:35 UTC]]  (140.2ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fez saques em Jericó mesmo após Josué ter instruído o povo a não fazê-lo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fez saques em Jericó mesmo após Josué ter instruído o povo a não fazê-lo?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem fez saques em Jericó mesmo após Josué ter instruído o povo a não fazê-lo?"], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acã"], ["question_id", 2974], ["correct", true], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cabele"], ["question_id", 2974], ["correct", false], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Natã"], ["question_id", 2974], ["correct", false], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hamã"], ["question_id", 2974], ["correct", false], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]]  (131.3ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fez um bezerro de ouro como ídolo para os israelitas?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fez um bezerro de ouro como ídolo para os israelitas?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem fez um bezerro de ouro como ídolo para os israelitas?"], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 2975], ["correct", true], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adão"], ["question_id", 2975], ["correct", false], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 2975], ["correct", false], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 2975], ["correct", false], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]]  (140.2ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fez uma estátua de ouro de si próprio para ser cultuada e que tinha 90 pés de altura?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fez uma estátua de ouro de si próprio para ser cultuada e que tinha 90 pés de altura?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem fez uma estátua de ouro de si próprio para ser cultuada e que tinha 90 pés de altura?"], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 2976], ["correct", true], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 2976], ["correct", false], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ninrode"], ["question_id", 2976], ["correct", false], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 2976], ["correct", false], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]]  (130.1ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou 3 dias na barriga de um grande peixe?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou 3 dias na barriga de um grande peixe?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ficou 3 dias na barriga de um grande peixe?"], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jonas"], ["question_id", 2977], ["correct", true], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jó"], ["question_id", 2977], ["correct", false], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas"], ["question_id", 2977], ["correct", false], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jorão"], ["question_id", 2977], ["correct", false], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]]  (132.0ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou cego na estrada de Damasco?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou cego na estrada de Damasco?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ficou cego na estrada de Damasco?"], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 2978], ["correct", true], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saulo"], ["question_id", 2978], ["correct", false], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 2978], ["correct", false], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe"], ["question_id", 2978], ["correct", false], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]]  (130.3ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou cego quando dirigia-se para a cidade de Damasco prender alguns cristãos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou cego quando dirigia-se para a cidade de Damasco prender alguns cristãos?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ficou cego quando dirigia-se para a cidade de Damasco prender alguns cristãos?"], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saulo"], ["question_id", 2979], ["correct", true], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 2979], ["correct", false], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 2979], ["correct", false], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 2979], ["correct", false], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]]  (131.6ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou com os 2 pés feridos porque quando tinha apenas 5 anos a babá que o carregava o deixou cair?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou com os 2 pés feridos porque quando tinha apenas 5 anos a babá que o carregava o deixou cair?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ficou com os 2 pés feridos porque quando tinha apenas 5 anos a babá que o carregava o deixou cair?"], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mefibosete"], ["question_id", 2980], ["correct", true], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matusalém"], ["question_id", 2980], ["correct", false], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Melquisedeque"], ["question_id", 2980], ["correct", false], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sadraque"], ["question_id", 2980], ["correct", false], ["created_at", 2016-08-19 02:58:36 UTC], ["updated_at", 2016-08-19 02:58:36 UTC]]  (122.4ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou enciumada pelo êxito de seu irmão mais novo?\n1,"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou enciumada pelo êxito de seu irmão mais novo?\n1,"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ficou enciumada pelo êxito de seu irmão mais novo?\n1,"], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 2981], ["correct", true], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria Madalena"], ["question_id", 2981], ["correct", false], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Drusila"], ["question_id", 2981], ["correct", false], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Raquel"], ["question_id", 2981], ["correct", false], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]]  (113.0ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou irritada ao perceber que sua irmã não a ajudava, preferindo ouvir as palavras de Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou irritada ao perceber que sua irmã não a ajudava, preferindo ouvir as palavras de Jesus?"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ficou irritada ao perceber que sua irmã não a ajudava, preferindo ouvir as palavras de Jesus?"], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marta"], ["question_id", 2982], ["correct", true], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria"], ["question_id", 2982], ["correct", false], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 2982], ["correct", false], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lázaro"], ["question_id", 2982], ["correct", false], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]]  (139.1ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou preso pelos cabelos em um carvalho?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou preso pelos cabelos em um carvalho?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ficou preso pelos cabelos em um carvalho?"], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 2983], ["correct", true], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Balaão"], ["question_id", 2983], ["correct", false], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 2983], ["correct", false], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2983], ["correct", false], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]]  (130.4ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou preso pelos cabelos em um cedro do Líbano?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ficou preso pelos cabelos em um cedro do Líbano?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ficou preso pelos cabelos em um cedro do Líbano?"], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ele Ficou Preso Em Um Carvalho"], ["question_id", 2984], ["correct", true], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 2984], ["correct", false], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Balaão"], ["question_id", 2984], ["correct", false], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 2984], ["correct", false], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]]  (138.7ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fingiu ser Esaú para obter a bênção da primogenitura?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fingiu ser Esaú para obter a bênção da primogenitura?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem fingiu ser Esaú para obter a bênção da primogenitura?"], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 2985], ["correct", true], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 2985], ["correct", false], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 2985], ["correct", false], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 2985], ["correct", false], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]]  (122.7ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a 1ª pessoa a ver Jesus ressuscitado?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a 1ª pessoa a ver Jesus ressuscitado?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a 1ª pessoa a ver Jesus ressuscitado?"], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria Madalena"], ["question_id", 2986], ["correct", true], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Mãe Maria"], ["question_id", 2986], ["correct", false], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Tia Isabel"], ["question_id", 2986], ["correct", false], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marta, Irmã de Lázaro"], ["question_id", 2986], ["correct", false], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]]  (121.7ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a 1ª pessoa que testemunhou a conversão de Saulo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a 1ª pessoa que testemunhou a conversão de Saulo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a 1ª pessoa que testemunhou a conversão de Saulo?"], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ananias"], ["question_id", 2987], ["correct", true], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Barnabé"], ["question_id", 2987], ["correct", false], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bartolomeu"], ["question_id", 2987], ["correct", false], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nicodemos"], ["question_id", 2987], ["correct", false], ["created_at", 2016-08-19 02:58:37 UTC], ["updated_at", 2016-08-19 02:58:37 UTC]]  (165.8ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a avó de Timóteo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a avó de Timóteo?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a avó de Timóteo?"], ["created_at", 2016-08-19 02:58:38 UTC], ["updated_at", 2016-08-19 02:58:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Loide"], ["question_id", 2988], ["correct", true], ["created_at", 2016-08-19 02:58:38 UTC], ["updated_at", 2016-08-19 02:58:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 2988], ["correct", false], ["created_at", 2016-08-19 02:58:38 UTC], ["updated_at", 2016-08-19 02:58:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eunice"], ["question_id", 2988], ["correct", false], ["created_at", 2016-08-19 02:58:38 UTC], ["updated_at", 2016-08-19 02:58:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rispa"], ["question_id", 2988], ["correct", false], ["created_at", 2016-08-19 02:58:38 UTC], ["updated_at", 2016-08-19 02:58:38 UTC]]  (139.3ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a bisavó de Davi?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a bisavó de Davi?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a bisavó de Davi?"], ["created_at", 2016-08-19 02:58:38 UTC], ["updated_at", 2016-08-19 02:58:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rute"], ["question_id", 2989], ["correct", true], ["created_at", 2016-08-19 02:58:38 UTC], ["updated_at", 2016-08-19 02:58:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ester"], ["question_id", 2989], ["correct", false], ["created_at", 2016-08-19 02:58:38 UTC], ["updated_at", 2016-08-19 02:58:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sara"], ["question_id", 2989], ["correct", false], ["created_at", 2016-08-19 02:58:38 UTC], ["updated_at", 2016-08-19 02:58:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 2989], ["correct", false], ["created_at", 2016-08-19 02:58:38 UTC], ["updated_at", 2016-08-19 02:58:38 UTC]]  (205.0ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a dedicada discípula em Jope que Pedro ressuscitou?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a dedicada discípula em Jope que Pedro ressuscitou?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a dedicada discípula em Jope que Pedro ressuscitou?"], ["created_at", 2016-08-19 02:58:38 UTC], ["updated_at", 2016-08-19 02:58:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dorcas"], ["question_id", 2990], ["correct", true], ["created_at", 2016-08-19 02:58:38 UTC], ["updated_at", 2016-08-19 02:58:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 2990], ["correct", false], ["created_at", 2016-08-19 02:58:38 UTC], ["updated_at", 2016-08-19 02:58:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Safira"], ["question_id", 2990], ["correct", false], ["created_at", 2016-08-19 02:58:38 UTC], ["updated_at", 2016-08-19 02:58:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adria"], ["question_id", 2990], ["correct", false], ["created_at", 2016-08-19 02:58:38 UTC], ["updated_at", 2016-08-19 02:58:38 UTC]]  (173.5ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a esposa de Boaz?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a esposa de Boaz?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a esposa de Boaz?"], ["created_at", 2016-08-19 02:58:38 UTC], ["updated_at", 2016-08-19 02:58:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rute"], ["question_id", 2991], ["correct", true], ["created_at", 2016-08-19 02:58:38 UTC], ["updated_at", 2016-08-19 02:58:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ester"], ["question_id", 2991], ["correct", false], ["created_at", 2016-08-19 02:58:38 UTC], ["updated_at", 2016-08-19 02:58:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noemi"], ["question_id", 2991], ["correct", false], ["created_at", 2016-08-19 02:58:38 UTC], ["updated_at", 2016-08-19 02:58:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Orfa"], ["question_id", 2991], ["correct", false], ["created_at", 2016-08-19 02:58:38 UTC], ["updated_at", 2016-08-19 02:58:38 UTC]]  (129.9ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a garota israelita que casou com o rei persa Assuero?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a garota israelita que casou com o rei persa Assuero?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a garota israelita que casou com o rei persa Assuero?"], ["created_at", 2016-08-19 02:58:38 UTC], ["updated_at", 2016-08-19 02:58:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ester"], ["question_id", 2992], ["correct", true], ["created_at", 2016-08-19 02:58:38 UTC], ["updated_at", 2016-08-19 02:58:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Débora"], ["question_id", 2992], ["correct", false], ["created_at", 2016-08-19 02:58:38 UTC], ["updated_at", 2016-08-19 02:58:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rute"], ["question_id", 2992], ["correct", false], ["created_at", 2016-08-19 02:58:38 UTC], ["updated_at", 2016-08-19 02:58:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 2992], ["correct", false], ["created_at", 2016-08-19 02:58:38 UTC], ["updated_at", 2016-08-19 02:58:38 UTC]]  (180.5ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a irmã de Arão, o Sumo-Sacerdote?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a irmã de Arão, o Sumo-Sacerdote?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a irmã de Arão, o Sumo-Sacerdote?"], ["created_at", 2016-08-19 02:58:38 UTC], ["updated_at", 2016-08-19 02:58:38 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 2993], ["correct", true], ["created_at", 2016-08-19 02:58:38 UTC], ["updated_at", 2016-08-19 02:58:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 2993], ["correct", false], ["created_at", 2016-08-19 02:58:38 UTC], ["updated_at", 2016-08-19 02:58:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 2993], ["correct", false], ["created_at", 2016-08-19 02:58:38 UTC], ["updated_at", 2016-08-19 02:58:38 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 2993], ["correct", false], ["created_at", 2016-08-19 02:58:38 UTC], ["updated_at", 2016-08-19 02:58:38 UTC]]  (173.4ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Ismael?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Ismael?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a mãe de Ismael?"], ["created_at", 2016-08-19 02:58:39 UTC], ["updated_at", 2016-08-19 02:58:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Agar"], ["question_id", 2994], ["correct", true], ["created_at", 2016-08-19 02:58:39 UTC], ["updated_at", 2016-08-19 02:58:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sara"], ["question_id", 2994], ["correct", false], ["created_at", 2016-08-19 02:58:39 UTC], ["updated_at", 2016-08-19 02:58:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Profetisa Ana"], ["question_id", 2994], ["correct", false], ["created_at", 2016-08-19 02:58:39 UTC], ["updated_at", 2016-08-19 02:58:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 2994], ["correct", false], ["created_at", 2016-08-19 02:58:39 UTC], ["updated_at", 2016-08-19 02:58:39 UTC]]  (163.6ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de João Batista?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de João Batista?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a mãe de João Batista?"], ["created_at", 2016-08-19 02:58:39 UTC], ["updated_at", 2016-08-19 02:58:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isabel"], ["question_id", 2995], ["correct", true], ["created_at", 2016-08-19 02:58:39 UTC], ["updated_at", 2016-08-19 02:58:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria Madalena"], ["question_id", 2995], ["correct", false], ["created_at", 2016-08-19 02:58:39 UTC], ["updated_at", 2016-08-19 02:58:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marta"], ["question_id", 2995], ["correct", false], ["created_at", 2016-08-19 02:58:39 UTC], ["updated_at", 2016-08-19 02:58:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria, Irmã de Marta"], ["question_id", 2995], ["correct", false], ["created_at", 2016-08-19 02:58:39 UTC], ["updated_at", 2016-08-19 02:58:39 UTC]]  (132.2ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Moisés?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Moisés?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a mãe de Moisés?"], ["created_at", 2016-08-19 02:58:39 UTC], ["updated_at", 2016-08-19 02:58:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joquebede"], ["question_id", 2996], ["correct", true], ["created_at", 2016-08-19 02:58:39 UTC], ["updated_at", 2016-08-19 02:58:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bate-seba"], ["question_id", 2996], ["correct", false], ["created_at", 2016-08-19 02:58:39 UTC], ["updated_at", 2016-08-19 02:58:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vasti"], ["question_id", 2996], ["correct", false], ["created_at", 2016-08-19 02:58:39 UTC], ["updated_at", 2016-08-19 02:58:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 2996], ["correct", false], ["created_at", 2016-08-19 02:58:39 UTC], ["updated_at", 2016-08-19 02:58:39 UTC]]  (365.4ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Obede?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Obede?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a mãe de Obede?"], ["created_at", 2016-08-19 02:58:39 UTC], ["updated_at", 2016-08-19 02:58:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rute"], ["question_id", 2997], ["correct", true], ["created_at", 2016-08-19 02:58:39 UTC], ["updated_at", 2016-08-19 02:58:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noemi"], ["question_id", 2997], ["correct", false], ["created_at", 2016-08-19 02:58:39 UTC], ["updated_at", 2016-08-19 02:58:39 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Orfa"], ["question_id", 2997], ["correct", false], ["created_at", 2016-08-19 02:58:39 UTC], ["updated_at", 2016-08-19 02:58:39 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elcana"], ["question_id", 2997], ["correct", false], ["created_at", 2016-08-19 02:58:39 UTC], ["updated_at", 2016-08-19 02:58:39 UTC]]  (196.7ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Roboão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Roboão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a mãe de Roboão?"], ["created_at", 2016-08-19 02:58:40 UTC], ["updated_at", 2016-08-19 02:58:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maacá"], ["question_id", 2998], ["correct", true], ["created_at", 2016-08-19 02:58:40 UTC], ["updated_at", 2016-08-19 02:58:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Minéias"], ["question_id", 2998], ["correct", false], ["created_at", 2016-08-19 02:58:40 UTC], ["updated_at", 2016-08-19 02:58:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lia"], ["question_id", 2998], ["correct", false], ["created_at", 2016-08-19 02:58:40 UTC], ["updated_at", 2016-08-19 02:58:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isabel"], ["question_id", 2998], ["correct", false], ["created_at", 2016-08-19 02:58:40 UTC], ["updated_at", 2016-08-19 02:58:40 UTC]]  (155.3ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Salomão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Salomão?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a mãe de Salomão?"], ["created_at", 2016-08-19 02:58:40 UTC], ["updated_at", 2016-08-19 02:58:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bate-seba"], ["question_id", 2999], ["correct", true], ["created_at", 2016-08-19 02:58:40 UTC], ["updated_at", 2016-08-19 02:58:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adonias"], ["question_id", 2999], ["correct", false], ["created_at", 2016-08-19 02:58:40 UTC], ["updated_at", 2016-08-19 02:58:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elcana"], ["question_id", 2999], ["correct", false], ["created_at", 2016-08-19 02:58:40 UTC], ["updated_at", 2016-08-19 02:58:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Profetisa Ana"], ["question_id", 2999], ["correct", false], ["created_at", 2016-08-19 02:58:40 UTC], ["updated_at", 2016-08-19 02:58:40 UTC]]  (174.0ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Timóteo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a mãe de Timóteo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a mãe de Timóteo?"], ["created_at", 2016-08-19 02:58:40 UTC], ["updated_at", 2016-08-19 02:58:40 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eunice"], ["question_id", 3000], ["correct", true], ["created_at", 2016-08-19 02:58:40 UTC], ["updated_at", 2016-08-19 02:58:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Priscila"], ["question_id", 3000], ["correct", false], ["created_at", 2016-08-19 02:58:40 UTC], ["updated_at", 2016-08-19 02:58:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Loide"], ["question_id", 3000], ["correct", false], ["created_at", 2016-08-19 02:58:40 UTC], ["updated_at", 2016-08-19 02:58:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Safira"], ["question_id", 3000], ["correct", false], ["created_at", 2016-08-19 02:58:40 UTC], ["updated_at", 2016-08-19 02:58:40 UTC]]  (171.9ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a primeira mulher convertida na Europa?\n1,"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a primeira mulher convertida na Europa?\n1,"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a primeira mulher convertida na Europa?\n1,"], ["created_at", 2016-08-19 02:58:40 UTC], ["updated_at", 2016-08-19 02:58:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lídia"], ["question_id", 3001], ["correct", true], ["created_at", 2016-08-19 02:58:40 UTC], ["updated_at", 2016-08-19 02:58:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Priscila"], ["question_id", 3001], ["correct", false], ["created_at", 2016-08-19 02:58:40 UTC], ["updated_at", 2016-08-19 02:58:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 3001], ["correct", false], ["created_at", 2016-08-19 02:58:40 UTC], ["updated_at", 2016-08-19 02:58:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joséfa"], ["question_id", 3001], ["correct", false], ["created_at", 2016-08-19 02:58:40 UTC], ["updated_at", 2016-08-19 02:58:40 UTC]]  (148.0ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a primeira pessoa a cometer assassinato na Bíblia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a primeira pessoa a cometer assassinato na Bíblia?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a primeira pessoa a cometer assassinato na Bíblia?"], ["created_at", 2016-08-19 02:58:40 UTC], ["updated_at", 2016-08-19 02:58:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caim"], ["question_id", 3002], ["correct", true], ["created_at", 2016-08-19 02:58:40 UTC], ["updated_at", 2016-08-19 02:58:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abel"], ["question_id", 3002], ["correct", false], ["created_at", 2016-08-19 02:58:40 UTC], ["updated_at", 2016-08-19 02:58:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adão"], ["question_id", 3002], ["correct", false], ["created_at", 2016-08-19 02:58:40 UTC], ["updated_at", 2016-08-19 02:58:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eva"], ["question_id", 3002], ["correct", false], ["created_at", 2016-08-19 02:58:40 UTC], ["updated_at", 2016-08-19 02:58:40 UTC]]  (199.1ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a única médium registrada na Bíblia?\n1,"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a única médium registrada na Bíblia?\n1,"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a única médium registrada na Bíblia?\n1,"], ["created_at", 2016-08-19 02:58:40 UTC], ["updated_at", 2016-08-19 02:58:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "En-dor"], ["question_id", 3003], ["correct", true], ["created_at", 2016-08-19 02:58:40 UTC], ["updated_at", 2016-08-19 02:58:40 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jezabel"], ["question_id", 3003], ["correct", false], ["created_at", 2016-08-19 02:58:40 UTC], ["updated_at", 2016-08-19 02:58:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nefertite"], ["question_id", 3003], ["correct", false], ["created_at", 2016-08-19 02:58:40 UTC], ["updated_at", 2016-08-19 02:58:40 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rainha de Sabá"], ["question_id", 3003], ["correct", false], ["created_at", 2016-08-19 02:58:40 UTC], ["updated_at", 2016-08-19 02:58:40 UTC]]  (154.8ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a vítima do primeiro assassinato ocorrido na Bíblia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi a vítima do primeiro assassinato ocorrido na Bíblia?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi a vítima do primeiro assassinato ocorrido na Bíblia?"], ["created_at", 2016-08-19 02:58:41 UTC], ["updated_at", 2016-08-19 02:58:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abel"], ["question_id", 3004], ["correct", true], ["created_at", 2016-08-19 02:58:41 UTC], ["updated_at", 2016-08-19 02:58:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caim"], ["question_id", 3004], ["correct", false], ["created_at", 2016-08-19 02:58:41 UTC], ["updated_at", 2016-08-19 02:58:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adão"], ["question_id", 3004], ["correct", false], ["created_at", 2016-08-19 02:58:41 UTC], ["updated_at", 2016-08-19 02:58:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eva"], ["question_id", 3004], ["correct", false], ["created_at", 2016-08-19 02:58:41 UTC], ["updated_at", 2016-08-19 02:58:41 UTC]]  (197.8ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi acusado falsamente de tentar seduzir a esposa de Potifar?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi acusado falsamente de tentar seduzir a esposa de Potifar?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi acusado falsamente de tentar seduzir a esposa de Potifar?"], ["created_at", 2016-08-19 02:58:41 UTC], ["updated_at", 2016-08-19 02:58:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 3005], ["correct", true], ["created_at", 2016-08-19 02:58:41 UTC], ["updated_at", 2016-08-19 02:58:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 3005], ["correct", false], ["created_at", 2016-08-19 02:58:41 UTC], ["updated_at", 2016-08-19 02:58:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 3005], ["correct", false], ["created_at", 2016-08-19 02:58:41 UTC], ["updated_at", 2016-08-19 02:58:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 3005], ["correct", false], ["created_at", 2016-08-19 02:58:41 UTC], ["updated_at", 2016-08-19 02:58:41 UTC]]  (146.9ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi ao Egito durante uma longa estiagem de seca e fome?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi ao Egito durante uma longa estiagem de seca e fome?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi ao Egito durante uma longa estiagem de seca e fome?"], ["created_at", 2016-08-19 02:58:41 UTC], ["updated_at", 2016-08-19 02:58:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 3006], ["correct", true], ["created_at", 2016-08-19 02:58:41 UTC], ["updated_at", 2016-08-19 02:58:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sete"], ["question_id", 3006], ["correct", false], ["created_at", 2016-08-19 02:58:41 UTC], ["updated_at", 2016-08-19 02:58:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matusalém"], ["question_id", 3006], ["correct", false], ["created_at", 2016-08-19 02:58:41 UTC], ["updated_at", 2016-08-19 02:58:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 3006], ["correct", false], ["created_at", 2016-08-19 02:58:41 UTC], ["updated_at", 2016-08-19 02:58:41 UTC]]  (130.2ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi apresentado no Templo de Jerusalém como um bebê?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi apresentado no Templo de Jerusalém como um bebê?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi apresentado no Templo de Jerusalém como um bebê?"], ["created_at", 2016-08-19 02:58:41 UTC], ["updated_at", 2016-08-19 02:58:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 3007], ["correct", true], ["created_at", 2016-08-19 02:58:41 UTC], ["updated_at", 2016-08-19 02:58:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 3007], ["correct", false], ["created_at", 2016-08-19 02:58:41 UTC], ["updated_at", 2016-08-19 02:58:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 3007], ["correct", false], ["created_at", 2016-08-19 02:58:41 UTC], ["updated_at", 2016-08-19 02:58:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 3007], ["correct", false], ["created_at", 2016-08-19 02:58:41 UTC], ["updated_at", 2016-08-19 02:58:41 UTC]]  (138.4ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi atirado à cova dos leões?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi atirado à cova dos leões?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi atirado à cova dos leões?"], ["created_at", 2016-08-19 02:58:41 UTC], ["updated_at", 2016-08-19 02:58:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 3008], ["correct", true], ["created_at", 2016-08-19 02:58:41 UTC], ["updated_at", 2016-08-19 02:58:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mesaque"], ["question_id", 3008], ["correct", false], ["created_at", 2016-08-19 02:58:41 UTC], ["updated_at", 2016-08-19 02:58:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abede-nego"], ["question_id", 3008], ["correct", false], ["created_at", 2016-08-19 02:58:41 UTC], ["updated_at", 2016-08-19 02:58:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sadraque"], ["question_id", 3008], ["correct", false], ["created_at", 2016-08-19 02:58:41 UTC], ["updated_at", 2016-08-19 02:58:41 UTC]]  (146.9ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi batizado por João Batista no rio Nilo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi batizado por João Batista no rio Nilo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi batizado por João Batista no rio Nilo?"], ["created_at", 2016-08-19 02:58:41 UTC], ["updated_at", 2016-08-19 02:58:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Jamais Batizou Alguém No Egito"], ["question_id", 3009], ["correct", true], ["created_at", 2016-08-19 02:58:41 UTC], ["updated_at", 2016-08-19 02:58:41 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 3009], ["correct", false], ["created_at", 2016-08-19 02:58:41 UTC], ["updated_at", 2016-08-19 02:58:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria"], ["question_id", 3009], ["correct", false], ["created_at", 2016-08-19 02:58:41 UTC], ["updated_at", 2016-08-19 02:58:41 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 3009], ["correct", false], ["created_at", 2016-08-19 02:58:41 UTC], ["updated_at", 2016-08-19 02:58:41 UTC]]  (123.0ms) commit transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi chamado de cristãos pela 1ª vez na cidade de Antioquia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi chamado de cristãos pela 1ª vez na cidade de Antioquia?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi chamado de cristãos pela 1ª vez na cidade de Antioquia?"], ["created_at", 2016-08-19 02:58:42 UTC], ["updated_at", 2016-08-19 02:58:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Discípulos"], ["question_id", 3010], ["correct", true], ["created_at", 2016-08-19 02:58:42 UTC], ["updated_at", 2016-08-19 02:58:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 3010], ["correct", false], ["created_at", 2016-08-19 02:58:42 UTC], ["updated_at", 2016-08-19 02:58:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 3010], ["correct", false], ["created_at", 2016-08-19 02:58:42 UTC], ["updated_at", 2016-08-19 02:58:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas Iscariotes"], ["question_id", 3010], ["correct", false], ["created_at", 2016-08-19 02:58:42 UTC], ["updated_at", 2016-08-19 02:58:42 UTC]]  (147.7ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi colocado em uma cesta no rio Nilo, quando ainda era bebê?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi colocado em uma cesta no rio Nilo, quando ainda era bebê?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi colocado em uma cesta no rio Nilo, quando ainda era bebê?"], ["created_at", 2016-08-19 02:58:42 UTC], ["updated_at", 2016-08-19 02:58:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 3011], ["correct", true], ["created_at", 2016-08-19 02:58:42 UTC], ["updated_at", 2016-08-19 02:58:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 3011], ["correct", false], ["created_at", 2016-08-19 02:58:42 UTC], ["updated_at", 2016-08-19 02:58:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 3011], ["correct", false], ["created_at", 2016-08-19 02:58:42 UTC], ["updated_at", 2016-08-19 02:58:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 3011], ["correct", false], ["created_at", 2016-08-19 02:58:42 UTC], ["updated_at", 2016-08-19 02:58:42 UTC]]  (147.8ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi confundido pelos gregos como sendo o deus Júpiter?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi confundido pelos gregos como sendo o deus Júpiter?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi confundido pelos gregos como sendo o deus Júpiter?"], ["created_at", 2016-08-19 02:58:42 UTC], ["updated_at", 2016-08-19 02:58:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Barnabé"], ["question_id", 3012], ["correct", true], ["created_at", 2016-08-19 02:58:42 UTC], ["updated_at", 2016-08-19 02:58:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tomé"], ["question_id", 3012], ["correct", false], ["created_at", 2016-08-19 02:58:42 UTC], ["updated_at", 2016-08-19 02:58:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 3012], ["correct", false], ["created_at", 2016-08-19 02:58:42 UTC], ["updated_at", 2016-08-19 02:58:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 3012], ["correct", false], ["created_at", 2016-08-19 02:58:42 UTC], ["updated_at", 2016-08-19 02:58:42 UTC]]  (121.6ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi decapitado pelo rei Herodes?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi decapitado pelo rei Herodes?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi decapitado pelo rei Herodes?"], ["created_at", 2016-08-19 02:58:42 UTC], ["updated_at", 2016-08-19 02:58:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 3013], ["correct", true], ["created_at", 2016-08-19 02:58:42 UTC], ["updated_at", 2016-08-19 02:58:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José de Arimatéia"], ["question_id", 3013], ["correct", false], ["created_at", 2016-08-19 02:58:42 UTC], ["updated_at", 2016-08-19 02:58:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas Iscariotes"], ["question_id", 3013], ["correct", false], ["created_at", 2016-08-19 02:58:42 UTC], ["updated_at", 2016-08-19 02:58:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Estêvão"], ["question_id", 3013], ["correct", false], ["created_at", 2016-08-19 02:58:42 UTC], ["updated_at", 2016-08-19 02:58:42 UTC]]  (130.0ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi escondido em uma cesta por sua mãe com o objetivo de protegê-lo de morte?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi escondido em uma cesta por sua mãe com o objetivo de protegê-lo de morte?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi escondido em uma cesta por sua mãe com o objetivo de protegê-lo de morte?"], ["created_at", 2016-08-19 02:58:42 UTC], ["updated_at", 2016-08-19 02:58:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 3014], ["correct", true], ["created_at", 2016-08-19 02:58:42 UTC], ["updated_at", 2016-08-19 02:58:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 3014], ["correct", false], ["created_at", 2016-08-19 02:58:42 UTC], ["updated_at", 2016-08-19 02:58:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 3014], ["correct", false], ["created_at", 2016-08-19 02:58:42 UTC], ["updated_at", 2016-08-19 02:58:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 3014], ["correct", false], ["created_at", 2016-08-19 02:58:42 UTC], ["updated_at", 2016-08-19 02:58:42 UTC]]  (148.2ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi escravo pessoal de Potifar?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi escravo pessoal de Potifar?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi escravo pessoal de Potifar?"], ["created_at", 2016-08-19 02:58:42 UTC], ["updated_at", 2016-08-19 02:58:42 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 3015], ["correct", true], ["created_at", 2016-08-19 02:58:42 UTC], ["updated_at", 2016-08-19 02:58:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 3015], ["correct", false], ["created_at", 2016-08-19 02:58:42 UTC], ["updated_at", 2016-08-19 02:58:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rúben"], ["question_id", 3015], ["correct", false], ["created_at", 2016-08-19 02:58:42 UTC], ["updated_at", 2016-08-19 02:58:42 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eli"], ["question_id", 3015], ["correct", false], ["created_at", 2016-08-19 02:58:42 UTC], ["updated_at", 2016-08-19 02:58:42 UTC]]  (306.8ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi filho de Davi e Bate-Seba?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi filho de Davi e Bate-Seba?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi filho de Davi e Bate-Seba?"], ["created_at", 2016-08-19 02:58:43 UTC], ["updated_at", 2016-08-19 02:58:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todas As Alternativas Estão Corretas"], ["question_id", 3016], ["correct", true], ["created_at", 2016-08-19 02:58:43 UTC], ["updated_at", 2016-08-19 02:58:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samua"], ["question_id", 3016], ["correct", false], ["created_at", 2016-08-19 02:58:43 UTC], ["updated_at", 2016-08-19 02:58:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sobabe"], ["question_id", 3016], ["correct", false], ["created_at", 2016-08-19 02:58:43 UTC], ["updated_at", 2016-08-19 02:58:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bebê Que Morreu Devido Ao Pecado de Davi"], ["question_id", 3016], ["correct", false], ["created_at", 2016-08-19 02:58:43 UTC], ["updated_at", 2016-08-19 02:58:43 UTC]]  (138.2ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi filho de Terá?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi filho de Terá?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi filho de Terá?"], ["created_at", 2016-08-19 02:58:43 UTC], ["updated_at", 2016-08-19 02:58:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 3017], ["correct", true], ["created_at", 2016-08-19 02:58:43 UTC], ["updated_at", 2016-08-19 02:58:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ló"], ["question_id", 3017], ["correct", false], ["created_at", 2016-08-19 02:58:43 UTC], ["updated_at", 2016-08-19 02:58:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 3017], ["correct", false], ["created_at", 2016-08-19 02:58:43 UTC], ["updated_at", 2016-08-19 02:58:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Safate"], ["question_id", 3017], ["correct", false], ["created_at", 2016-08-19 02:58:43 UTC], ["updated_at", 2016-08-19 02:58:43 UTC]]  (163.5ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi levado escravo para o Egito?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi levado escravo para o Egito?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi levado escravo para o Egito?"], ["created_at", 2016-08-19 02:58:43 UTC], ["updated_at", 2016-08-19 02:58:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 3018], ["correct", true], ["created_at", 2016-08-19 02:58:43 UTC], ["updated_at", 2016-08-19 02:58:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 3018], ["correct", false], ["created_at", 2016-08-19 02:58:43 UTC], ["updated_at", 2016-08-19 02:58:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 3018], ["correct", false], ["created_at", 2016-08-19 02:58:43 UTC], ["updated_at", 2016-08-19 02:58:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 3018], ["correct", false], ["created_at", 2016-08-19 02:58:43 UTC], ["updated_at", 2016-08-19 02:58:43 UTC]]  (190.0ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi neto de Obede?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi neto de Obede?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi neto de Obede?"], ["created_at", 2016-08-19 02:58:43 UTC], ["updated_at", 2016-08-19 02:58:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 3019], ["correct", true], ["created_at", 2016-08-19 02:58:43 UTC], ["updated_at", 2016-08-19 02:58:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 3019], ["correct", false], ["created_at", 2016-08-19 02:58:43 UTC], ["updated_at", 2016-08-19 02:58:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noé"], ["question_id", 3019], ["correct", false], ["created_at", 2016-08-19 02:58:43 UTC], ["updated_at", 2016-08-19 02:58:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matusalém"], ["question_id", 3019], ["correct", false], ["created_at", 2016-08-19 02:58:43 UTC], ["updated_at", 2016-08-19 02:58:43 UTC]]  (141.4ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi nomeado Presidente do reino da Babilônia, através do rei Dario?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi nomeado Presidente do reino da Babilônia, através do rei Dario?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi nomeado Presidente do reino da Babilônia, através do rei Dario?"], ["created_at", 2016-08-19 02:58:43 UTC], ["updated_at", 2016-08-19 02:58:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 3020], ["correct", true], ["created_at", 2016-08-19 02:58:43 UTC], ["updated_at", 2016-08-19 02:58:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eli"], ["question_id", 3020], ["correct", false], ["created_at", 2016-08-19 02:58:43 UTC], ["updated_at", 2016-08-19 02:58:43 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 3020], ["correct", false], ["created_at", 2016-08-19 02:58:43 UTC], ["updated_at", 2016-08-19 02:58:43 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 3020], ["correct", false], ["created_at", 2016-08-19 02:58:43 UTC], ["updated_at", 2016-08-19 02:58:43 UTC]]  (179.7ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o 1º filho de Adão e Eva?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o 1º filho de Adão e Eva?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o 1º filho de Adão e Eva?"], ["created_at", 2016-08-19 02:58:44 UTC], ["updated_at", 2016-08-19 02:58:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caim"], ["question_id", 3021], ["correct", true], ["created_at", 2016-08-19 02:58:44 UTC], ["updated_at", 2016-08-19 02:58:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abel"], ["question_id", 3021], ["correct", false], ["created_at", 2016-08-19 02:58:44 UTC], ["updated_at", 2016-08-19 02:58:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cão"], ["question_id", 3021], ["correct", false], ["created_at", 2016-08-19 02:58:44 UTC], ["updated_at", 2016-08-19 02:58:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sete"], ["question_id", 3021], ["correct", false], ["created_at", 2016-08-19 02:58:44 UTC], ["updated_at", 2016-08-19 02:58:44 UTC]]  (271.7ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o 2º rei de Israel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o 2º rei de Israel?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o 2º rei de Israel?"], ["created_at", 2016-08-19 02:58:44 UTC], ["updated_at", 2016-08-19 02:58:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 3022], ["correct", true], ["created_at", 2016-08-19 02:58:44 UTC], ["updated_at", 2016-08-19 02:58:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 3022], ["correct", false], ["created_at", 2016-08-19 02:58:44 UTC], ["updated_at", 2016-08-19 02:58:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 3022], ["correct", false], ["created_at", 2016-08-19 02:58:44 UTC], ["updated_at", 2016-08-19 02:58:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 3022], ["correct", false], ["created_at", 2016-08-19 02:58:44 UTC], ["updated_at", 2016-08-19 02:58:44 UTC]]  (163.5ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o 3º filho de Adão e Eva?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o 3º filho de Adão e Eva?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o 3º filho de Adão e Eva?"], ["created_at", 2016-08-19 02:58:44 UTC], ["updated_at", 2016-08-19 02:58:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sete"], ["question_id", 3023], ["correct", true], ["created_at", 2016-08-19 02:58:44 UTC], ["updated_at", 2016-08-19 02:58:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caim"], ["question_id", 3023], ["correct", false], ["created_at", 2016-08-19 02:58:44 UTC], ["updated_at", 2016-08-19 02:58:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abel"], ["question_id", 3023], ["correct", false], ["created_at", 2016-08-19 02:58:44 UTC], ["updated_at", 2016-08-19 02:58:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jafé"], ["question_id", 3023], ["correct", false], ["created_at", 2016-08-19 02:58:44 UTC], ["updated_at", 2016-08-19 02:58:44 UTC]]  (173.4ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Arão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Arão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o avô de Arão?"], ["created_at", 2016-08-19 02:58:44 UTC], ["updated_at", 2016-08-19 02:58:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Coate"], ["question_id", 3024], ["correct", true], ["created_at", 2016-08-19 02:58:44 UTC], ["updated_at", 2016-08-19 02:58:44 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jetro"], ["question_id", 3024], ["correct", false], ["created_at", 2016-08-19 02:58:44 UTC], ["updated_at", 2016-08-19 02:58:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obede"], ["question_id", 3024], ["correct", false], ["created_at", 2016-08-19 02:58:44 UTC], ["updated_at", 2016-08-19 02:58:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jônatas"], ["question_id", 3024], ["correct", false], ["created_at", 2016-08-19 02:58:44 UTC], ["updated_at", 2016-08-19 02:58:44 UTC]]  (221.3ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Davi?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Davi?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o avô de Davi?"], ["created_at", 2016-08-19 02:58:44 UTC], ["updated_at", 2016-08-19 02:58:44 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obede"], ["question_id", 3025], ["correct", true], ["created_at", 2016-08-19 02:58:44 UTC], ["updated_at", 2016-08-19 02:58:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jessé"], ["question_id", 3025], ["correct", false], ["created_at", 2016-08-19 02:58:44 UTC], ["updated_at", 2016-08-19 02:58:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josafá"], ["question_id", 3025], ["correct", false], ["created_at", 2016-08-19 02:58:44 UTC], ["updated_at", 2016-08-19 02:58:44 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeroboão"], ["question_id", 3025], ["correct", false], ["created_at", 2016-08-19 02:58:44 UTC], ["updated_at", 2016-08-19 02:58:44 UTC]]  (138.7ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o avô de Jesus?"], ["created_at", 2016-08-19 02:58:45 UTC], ["updated_at", 2016-08-19 02:58:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 3026], ["correct", true], ["created_at", 2016-08-19 02:58:45 UTC], ["updated_at", 2016-08-19 02:58:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias"], ["question_id", 3026], ["correct", false], ["created_at", 2016-08-19 02:58:45 UTC], ["updated_at", 2016-08-19 02:58:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Levi"], ["question_id", 3026], ["correct", false], ["created_at", 2016-08-19 02:58:45 UTC], ["updated_at", 2016-08-19 02:58:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hacalias"], ["question_id", 3026], ["correct", false], ["created_at", 2016-08-19 02:58:45 UTC], ["updated_at", 2016-08-19 02:58:45 UTC]]  (140.1ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Moisés?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Moisés?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o avô de Moisés?"], ["created_at", 2016-08-19 02:58:45 UTC], ["updated_at", 2016-08-19 02:58:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Coate"], ["question_id", 3027], ["correct", true], ["created_at", 2016-08-19 02:58:45 UTC], ["updated_at", 2016-08-19 02:58:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josafá"], ["question_id", 3027], ["correct", false], ["created_at", 2016-08-19 02:58:45 UTC], ["updated_at", 2016-08-19 02:58:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quis"], ["question_id", 3027], ["correct", false], ["created_at", 2016-08-19 02:58:45 UTC], ["updated_at", 2016-08-19 02:58:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elimeleque"], ["question_id", 3027], ["correct", false], ["created_at", 2016-08-19 02:58:45 UTC], ["updated_at", 2016-08-19 02:58:45 UTC]]  (173.4ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Noé?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Noé?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o avô de Noé?"], ["created_at", 2016-08-19 02:58:45 UTC], ["updated_at", 2016-08-19 02:58:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matusalem"], ["question_id", 3028], ["correct", true], ["created_at", 2016-08-19 02:58:45 UTC], ["updated_at", 2016-08-19 02:58:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adão"], ["question_id", 3028], ["correct", false], ["created_at", 2016-08-19 02:58:45 UTC], ["updated_at", 2016-08-19 02:58:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abel"], ["question_id", 3028], ["correct", false], ["created_at", 2016-08-19 02:58:45 UTC], ["updated_at", 2016-08-19 02:58:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sete"], ["question_id", 3028], ["correct", false], ["created_at", 2016-08-19 02:58:45 UTC], ["updated_at", 2016-08-19 02:58:45 UTC]]  (163.3ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Raquel e Léia, esposas de Jacó?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o avô de Raquel e Léia, esposas de Jacó?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o avô de Raquel e Léia, esposas de Jacó?"], ["created_at", 2016-08-19 02:58:45 UTC], ["updated_at", 2016-08-19 02:58:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Naor"], ["question_id", 3029], ["correct", true], ["created_at", 2016-08-19 02:58:45 UTC], ["updated_at", 2016-08-19 02:58:45 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 3029], ["correct", false], ["created_at", 2016-08-19 02:58:45 UTC], ["updated_at", 2016-08-19 02:58:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matusalém"], ["question_id", 3029], ["correct", false], ["created_at", 2016-08-19 02:58:45 UTC], ["updated_at", 2016-08-19 02:58:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noé"], ["question_id", 3029], ["correct", false], ["created_at", 2016-08-19 02:58:45 UTC], ["updated_at", 2016-08-19 02:58:45 UTC]]  (138.0ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o bisavô de Ninrode, construtor da cidade de Nínive?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o bisavô de Ninrode, construtor da cidade de Nínive?"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o bisavô de Ninrode, construtor da cidade de Nínive?"], ["created_at", 2016-08-19 02:58:45 UTC], ["updated_at", 2016-08-19 02:58:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noé"], ["question_id", 3030], ["correct", true], ["created_at", 2016-08-19 02:58:45 UTC], ["updated_at", 2016-08-19 02:58:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matusalém"], ["question_id", 3030], ["correct", false], ["created_at", 2016-08-19 02:58:45 UTC], ["updated_at", 2016-08-19 02:58:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Enoque"], ["question_id", 3030], ["correct", false], ["created_at", 2016-08-19 02:58:45 UTC], ["updated_at", 2016-08-19 02:58:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caim"], ["question_id", 3030], ["correct", false], ["created_at", 2016-08-19 02:58:45 UTC], ["updated_at", 2016-08-19 02:58:45 UTC]]  (138.6ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o bisneto de Rute?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o bisneto de Rute?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o bisneto de Rute?"], ["created_at", 2016-08-19 02:58:45 UTC], ["updated_at", 2016-08-19 02:58:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 3031], ["correct", true], ["created_at", 2016-08-19 02:58:45 UTC], ["updated_at", 2016-08-19 02:58:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 3031], ["correct", false], ["created_at", 2016-08-19 02:58:45 UTC], ["updated_at", 2016-08-19 02:58:45 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 3031], ["correct", false], ["created_at", 2016-08-19 02:58:45 UTC], ["updated_at", 2016-08-19 02:58:45 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obadias"], ["question_id", 3031], ["correct", false], ["created_at", 2016-08-19 02:58:45 UTC], ["updated_at", 2016-08-19 02:58:45 UTC]]  (131.4ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o gigante morto por Davi?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o gigante morto por Davi?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o gigante morto por Davi?"], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Golias"], ["question_id", 3032], ["correct", true], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gileade"], ["question_id", 3032], ["correct", false], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gadiel"], ["question_id", 3032], ["correct", false], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mefibosete"], ["question_id", 3032], ["correct", false], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]]  (129.9ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o irmão do Sumo-Sacerdote Arão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o irmão do Sumo-Sacerdote Arão?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o irmão do Sumo-Sacerdote Arão?"], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 3033], ["correct", true], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 3033], ["correct", false], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 3033], ["correct", false], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mefibosete"], ["question_id", 3033], ["correct", false], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]]  (140.5ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o marido de Priscila, que auxiliou no ministério de Paulo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o marido de Priscila, que auxiliou no ministério de Paulo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o marido de Priscila, que auxiliou no ministério de Paulo?"], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Áquila"], ["question_id", 3034], ["correct", true], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Átila"], ["question_id", 3034], ["correct", false], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eustáquio"], ["question_id", 3034], ["correct", false], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Benjamin"], ["question_id", 3034], ["correct", false], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]]  (138.3ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o marido de Rute?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o marido de Rute?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o marido de Rute?"], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Boaz"], ["question_id", 3035], ["correct", true], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elifaz"], ["question_id", 3035], ["correct", false], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Malaquias"], ["question_id", 3035], ["correct", false], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Melquisedeque"], ["question_id", 3035], ["correct", false], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]]  (138.3ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai da rainha Jezabel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai da rainha Jezabel?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai da rainha Jezabel?"], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Erbaal"], ["question_id", 3036], ["correct", true], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiglate-pileser"], ["question_id", 3036], ["correct", false], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elate"], ["question_id", 3036], ["correct", false], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zadoque"], ["question_id", 3036], ["correct", false], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]]  (130.2ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Acabe?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Acabe?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Acabe?"], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Onri"], ["question_id", 3037], ["correct", true], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hacalias"], ["question_id", 3037], ["correct", false], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Safate"], ["question_id", 3037], ["correct", false], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nebaiote"], ["question_id", 3037], ["correct", false], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]]  (139.9ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Elcana?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Elcana?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Elcana?"], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeroão"], ["question_id", 3038], ["correct", true], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quis"], ["question_id", 3038], ["correct", false], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 3038], ["correct", false], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mefibosete"], ["question_id", 3038], ["correct", false], ["created_at", 2016-08-19 02:58:46 UTC], ["updated_at", 2016-08-19 02:58:46 UTC]]  (123.1ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Eliseu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Eliseu?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Eliseu?"], ["created_at", 2016-08-19 02:58:47 UTC], ["updated_at", 2016-08-19 02:58:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Safate"], ["question_id", 3039], ["correct", true], ["created_at", 2016-08-19 02:58:47 UTC], ["updated_at", 2016-08-19 02:58:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ido"], ["question_id", 3039], ["correct", false], ["created_at", 2016-08-19 02:58:47 UTC], ["updated_at", 2016-08-19 02:58:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Onri"], ["question_id", 3039], ["correct", false], ["created_at", 2016-08-19 02:58:47 UTC], ["updated_at", 2016-08-19 02:58:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amitai"], ["question_id", 3039], ["correct", false], ["created_at", 2016-08-19 02:58:47 UTC], ["updated_at", 2016-08-19 02:58:47 UTC]]  (188.3ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Esdras?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Esdras?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Esdras?"], ["created_at", 2016-08-19 02:58:47 UTC], ["updated_at", 2016-08-19 02:58:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seraías"], ["question_id", 3040], ["correct", true], ["created_at", 2016-08-19 02:58:47 UTC], ["updated_at", 2016-08-19 02:58:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judá"], ["question_id", 3040], ["correct", false], ["created_at", 2016-08-19 02:58:47 UTC], ["updated_at", 2016-08-19 02:58:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hadade"], ["question_id", 3040], ["correct", false], ["created_at", 2016-08-19 02:58:47 UTC], ["updated_at", 2016-08-19 02:58:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nafis"], ["question_id", 3040], ["correct", false], ["created_at", 2016-08-19 02:58:47 UTC], ["updated_at", 2016-08-19 02:58:47 UTC]]  (197.4ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Gideão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Gideão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Gideão?"], ["created_at", 2016-08-19 02:58:47 UTC], ["updated_at", 2016-08-19 02:58:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joás"], ["question_id", 3041], ["correct", true], ["created_at", 2016-08-19 02:58:47 UTC], ["updated_at", 2016-08-19 02:58:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josafá"], ["question_id", 3041], ["correct", false], ["created_at", 2016-08-19 02:58:47 UTC], ["updated_at", 2016-08-19 02:58:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cusi"], ["question_id", 3041], ["correct", false], ["created_at", 2016-08-19 02:58:47 UTC], ["updated_at", 2016-08-19 02:58:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Safate"], ["question_id", 3041], ["correct", false], ["created_at", 2016-08-19 02:58:47 UTC], ["updated_at", 2016-08-19 02:58:47 UTC]]  (130.0ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Ismael?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Ismael?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Ismael?"], ["created_at", 2016-08-19 02:58:47 UTC], ["updated_at", 2016-08-19 02:58:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 3042], ["correct", true], ["created_at", 2016-08-19 02:58:47 UTC], ["updated_at", 2016-08-19 02:58:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 3042], ["correct", false], ["created_at", 2016-08-19 02:58:47 UTC], ["updated_at", 2016-08-19 02:58:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 3042], ["correct", false], ["created_at", 2016-08-19 02:58:47 UTC], ["updated_at", 2016-08-19 02:58:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 3042], ["correct", false], ["created_at", 2016-08-19 02:58:47 UTC], ["updated_at", 2016-08-19 02:58:47 UTC]]  (130.2ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Jeroboão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Jeroboão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Jeroboão?"], ["created_at", 2016-08-19 02:58:47 UTC], ["updated_at", 2016-08-19 02:58:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 3043], ["correct", true], ["created_at", 2016-08-19 02:58:47 UTC], ["updated_at", 2016-08-19 02:58:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 3043], ["correct", false], ["created_at", 2016-08-19 02:58:47 UTC], ["updated_at", 2016-08-19 02:58:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Azarias"], ["question_id", 3043], ["correct", false], ["created_at", 2016-08-19 02:58:47 UTC], ["updated_at", 2016-08-19 02:58:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 3043], ["correct", false], ["created_at", 2016-08-19 02:58:47 UTC], ["updated_at", 2016-08-19 02:58:47 UTC]]  (131.1ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Jônas?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Jônas?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Jônas?"], ["created_at", 2016-08-19 02:58:47 UTC], ["updated_at", 2016-08-19 02:58:47 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amitai"], ["question_id", 3044], ["correct", true], ["created_at", 2016-08-19 02:58:47 UTC], ["updated_at", 2016-08-19 02:58:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cusi"], ["question_id", 3044], ["correct", false], ["created_at", 2016-08-19 02:58:47 UTC], ["updated_at", 2016-08-19 02:58:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amnom"], ["question_id", 3044], ["correct", false], ["created_at", 2016-08-19 02:58:47 UTC], ["updated_at", 2016-08-19 02:58:47 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abias"], ["question_id", 3044], ["correct", false], ["created_at", 2016-08-19 02:58:47 UTC], ["updated_at", 2016-08-19 02:58:47 UTC]]  (213.3ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Jônatas?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Jônatas?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Jônatas?"], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 3045], ["correct", true], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 3045], ["correct", false], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 3045], ["correct", false], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]] SQL (17.0ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 3045], ["correct", false], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]]  (146.2ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Josué?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Josué?"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Josué?"], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Num"], ["question_id", 3046], ["correct", true], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amitai"], ["question_id", 3046], ["correct", false], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Petuel"], ["question_id", 3046], ["correct", false], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Beeri"], ["question_id", 3046], ["correct", false], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]]  (138.4ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Lia e Raquel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Lia e Raquel?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Lia e Raquel?"], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Labão"], ["question_id", 3047], ["correct", true], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Coate"], ["question_id", 3047], ["correct", false], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jetro"], ["question_id", 3047], ["correct", false], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elimeleque"], ["question_id", 3047], ["correct", false], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]]  (130.3ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Manassés?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Manassés?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Manassés?"], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 3048], ["correct", true], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 3048], ["correct", false], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 3048], ["correct", false], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Melquisedeque"], ["question_id", 3048], ["correct", false], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]]  (130.2ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Mefibosete?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Mefibosete?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Mefibosete?"], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jônatas"], ["question_id", 3049], ["correct", true], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 3049], ["correct", false], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 3049], ["correct", false], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Malaquias"], ["question_id", 3049], ["correct", false], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]]  (114.7ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de muitas nações?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de muitas nações?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de muitas nações?"], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 3050], ["correct", true], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 3050], ["correct", false], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 3050], ["correct", false], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 3050], ["correct", false], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]]  (123.1ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Obede?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Obede?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Obede?"], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Boaz"], ["question_id", 3051], ["correct", true], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acaz"], ["question_id", 3051], ["correct", false], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 3051], ["correct", false], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joquebede"], ["question_id", 3051], ["correct", false], ["created_at", 2016-08-19 02:58:48 UTC], ["updated_at", 2016-08-19 02:58:48 UTC]]  (173.2ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Roboão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Roboão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Roboão?"], ["created_at", 2016-08-19 02:58:49 UTC], ["updated_at", 2016-08-19 02:58:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 3052], ["correct", true], ["created_at", 2016-08-19 02:58:49 UTC], ["updated_at", 2016-08-19 02:58:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 3052], ["correct", false], ["created_at", 2016-08-19 02:58:49 UTC], ["updated_at", 2016-08-19 02:58:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adonias"], ["question_id", 3052], ["correct", false], ["created_at", 2016-08-19 02:58:49 UTC], ["updated_at", 2016-08-19 02:58:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acaz"], ["question_id", 3052], ["correct", false], ["created_at", 2016-08-19 02:58:49 UTC], ["updated_at", 2016-08-19 02:58:49 UTC]]  (138.5ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Salomão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Salomão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Salomão?"], ["created_at", 2016-08-19 02:58:49 UTC], ["updated_at", 2016-08-19 02:58:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 3053], ["correct", true], ["created_at", 2016-08-19 02:58:49 UTC], ["updated_at", 2016-08-19 02:58:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel"], ["question_id", 3053], ["correct", false], ["created_at", 2016-08-19 02:58:49 UTC], ["updated_at", 2016-08-19 02:58:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 3053], ["correct", false], ["created_at", 2016-08-19 02:58:49 UTC], ["updated_at", 2016-08-19 02:58:49 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 3053], ["correct", false], ["created_at", 2016-08-19 02:58:49 UTC], ["updated_at", 2016-08-19 02:58:49 UTC]]  (146.4ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Saul?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Saul?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Saul?"], ["created_at", 2016-08-19 02:58:49 UTC], ["updated_at", 2016-08-19 02:58:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quis"], ["question_id", 3054], ["correct", true], ["created_at", 2016-08-19 02:58:49 UTC], ["updated_at", 2016-08-19 02:58:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Safate"], ["question_id", 3054], ["correct", false], ["created_at", 2016-08-19 02:58:49 UTC], ["updated_at", 2016-08-19 02:58:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ido"], ["question_id", 3054], ["correct", false], ["created_at", 2016-08-19 02:58:49 UTC], ["updated_at", 2016-08-19 02:58:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amitai"], ["question_id", 3054], ["correct", false], ["created_at", 2016-08-19 02:58:49 UTC], ["updated_at", 2016-08-19 02:58:49 UTC]]  (130.0ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Zípora?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai de Zípora?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai de Zípora?"], ["created_at", 2016-08-19 02:58:49 UTC], ["updated_at", 2016-08-19 02:58:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jetro"], ["question_id", 3055], ["correct", true], ["created_at", 2016-08-19 02:58:49 UTC], ["updated_at", 2016-08-19 02:58:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joás"], ["question_id", 3055], ["correct", false], ["created_at", 2016-08-19 02:58:49 UTC], ["updated_at", 2016-08-19 02:58:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Beeri"], ["question_id", 3055], ["correct", false], ["created_at", 2016-08-19 02:58:49 UTC], ["updated_at", 2016-08-19 02:58:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josafá"], ["question_id", 3055], ["correct", false], ["created_at", 2016-08-19 02:58:49 UTC], ["updated_at", 2016-08-19 02:58:49 UTC]]  (132.1ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do profeta Neemias?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do profeta Neemias?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai do profeta Neemias?"], ["created_at", 2016-08-19 02:58:49 UTC], ["updated_at", 2016-08-19 02:58:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hacalias"], ["question_id", 3056], ["correct", true], ["created_at", 2016-08-19 02:58:49 UTC], ["updated_at", 2016-08-19 02:58:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seraías"], ["question_id", 3056], ["correct", false], ["created_at", 2016-08-19 02:58:49 UTC], ["updated_at", 2016-08-19 02:58:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mordecai"], ["question_id", 3056], ["correct", false], ["created_at", 2016-08-19 02:58:49 UTC], ["updated_at", 2016-08-19 02:58:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quedar"], ["question_id", 3056], ["correct", false], ["created_at", 2016-08-19 02:58:49 UTC], ["updated_at", 2016-08-19 02:58:49 UTC]]  (132.6ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do profeta Oséias?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do profeta Oséias?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai do profeta Oséias?"], ["created_at", 2016-08-19 02:58:49 UTC], ["updated_at", 2016-08-19 02:58:49 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Beeri"], ["question_id", 3057], ["correct", true], ["created_at", 2016-08-19 02:58:49 UTC], ["updated_at", 2016-08-19 02:58:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Petuel"], ["question_id", 3057], ["correct", false], ["created_at", 2016-08-19 02:58:49 UTC], ["updated_at", 2016-08-19 02:58:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mordecai"], ["question_id", 3057], ["correct", false], ["created_at", 2016-08-19 02:58:49 UTC], ["updated_at", 2016-08-19 02:58:49 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seraías"], ["question_id", 3057], ["correct", false], ["created_at", 2016-08-19 02:58:49 UTC], ["updated_at", 2016-08-19 02:58:49 UTC]]  (138.7ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do profeta Sofonias?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do profeta Sofonias?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai do profeta Sofonias?"], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cusi"], ["question_id", 3058], ["correct", true], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zebulom"], ["question_id", 3058], ["correct", false], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Aftali"], ["question_id", 3058], ["correct", false], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Asser"], ["question_id", 3058], ["correct", false], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]]  (130.0ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do rei babilônico Belsazar?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do rei babilônico Belsazar?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai do rei babilônico Belsazar?"], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 3059], ["correct", true], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 3059], ["correct", false], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiro"], ["question_id", 3059], ["correct", false], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belaquiel"], ["question_id", 3059], ["correct", false], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]]  (131.1ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do rei Davi?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do rei Davi?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai do rei Davi?"], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jessé"], ["question_id", 3060], ["correct", true], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Manassés"], ["question_id", 3060], ["correct", false], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obede"], ["question_id", 3060], ["correct", false], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 3060], ["correct", false], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]]  (139.6ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do rei Jotão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do rei Jotão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai do rei Jotão?"], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Azarias"], ["question_id", 3061], ["correct", true], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeroboão"], ["question_id", 3061], ["correct", false], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amazias"], ["question_id", 3061], ["correct", false], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeoás"], ["question_id", 3061], ["correct", false], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]]  (147.0ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do rei Manassés?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai do rei Manassés?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai do rei Manassés?"], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ezequias"], ["question_id", 3062], ["correct", true], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 3062], ["correct", false], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 3062], ["correct", false], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Azarias"], ["question_id", 3062], ["correct", false], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]]  (131.2ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai dos líderes das 12 tribos de Israel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai dos líderes das 12 tribos de Israel?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai dos líderes das 12 tribos de Israel?"], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 3063], ["correct", true], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 3063], ["correct", false], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 3063], ["correct", false], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 3063], ["correct", false], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]]  (174.2ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai dos que habitam em tendas e possuem gados?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai dos que habitam em tendas e possuem gados?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai dos que habitam em tendas e possuem gados?"], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jabal"], ["question_id", 3064], ["correct", true], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cão"], ["question_id", 3064], ["correct", false], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sete"], ["question_id", 3064], ["correct", false], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adão"], ["question_id", 3064], ["correct", false], ["created_at", 2016-08-19 02:58:50 UTC], ["updated_at", 2016-08-19 02:58:50 UTC]]  (180.2ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai dos que tocam harpa e flauta?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai dos que tocam harpa e flauta?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai dos que tocam harpa e flauta?"], ["created_at", 2016-08-19 02:58:51 UTC], ["updated_at", 2016-08-19 02:58:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jubal"], ["question_id", 3065], ["correct", true], ["created_at", 2016-08-19 02:58:51 UTC], ["updated_at", 2016-08-19 02:58:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jabal"], ["question_id", 3065], ["correct", false], ["created_at", 2016-08-19 02:58:51 UTC], ["updated_at", 2016-08-19 02:58:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jocsã"], ["question_id", 3065], ["correct", false], ["created_at", 2016-08-19 02:58:51 UTC], ["updated_at", 2016-08-19 02:58:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jisbaque"], ["question_id", 3065], ["correct", false], ["created_at", 2016-08-19 02:58:51 UTC], ["updated_at", 2016-08-19 02:58:51 UTC]]  (155.9ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai que se deitou com suas próprias filhas?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o pai que se deitou com suas próprias filhas?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o pai que se deitou com suas próprias filhas?"], ["created_at", 2016-08-19 02:58:51 UTC], ["updated_at", 2016-08-19 02:58:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ló"], ["question_id", 3066], ["correct", true], ["created_at", 2016-08-19 02:58:51 UTC], ["updated_at", 2016-08-19 02:58:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 3066], ["correct", false], ["created_at", 2016-08-19 02:58:51 UTC], ["updated_at", 2016-08-19 02:58:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 3066], ["correct", false], ["created_at", 2016-08-19 02:58:51 UTC], ["updated_at", 2016-08-19 02:58:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 3066], ["correct", false], ["created_at", 2016-08-19 02:58:51 UTC], ["updated_at", 2016-08-19 02:58:51 UTC]]  (155.5ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o patriarca do Velho Testamento que quase sacrificou seu filho no Monte Moriá?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o patriarca do Velho Testamento que quase sacrificou seu filho no Monte Moriá?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o patriarca do Velho Testamento que quase sacrificou seu filho no Monte Moriá?"], ["created_at", 2016-08-19 02:58:51 UTC], ["updated_at", 2016-08-19 02:58:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 3067], ["correct", true], ["created_at", 2016-08-19 02:58:51 UTC], ["updated_at", 2016-08-19 02:58:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 3067], ["correct", false], ["created_at", 2016-08-19 02:58:51 UTC], ["updated_at", 2016-08-19 02:58:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 3067], ["correct", false], ["created_at", 2016-08-19 02:58:51 UTC], ["updated_at", 2016-08-19 02:58:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 3067], ["correct", false], ["created_at", 2016-08-19 02:58:51 UTC], ["updated_at", 2016-08-19 02:58:51 UTC]]  (130.3ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o primeiro homem?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o primeiro homem?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o primeiro homem?"], ["created_at", 2016-08-19 02:58:51 UTC], ["updated_at", 2016-08-19 02:58:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adão"], ["question_id", 3068], ["correct", true], ["created_at", 2016-08-19 02:58:51 UTC], ["updated_at", 2016-08-19 02:58:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matusalém"], ["question_id", 3068], ["correct", false], ["created_at", 2016-08-19 02:58:51 UTC], ["updated_at", 2016-08-19 02:58:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abel"], ["question_id", 3068], ["correct", false], ["created_at", 2016-08-19 02:58:51 UTC], ["updated_at", 2016-08-19 02:58:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cão"], ["question_id", 3068], ["correct", false], ["created_at", 2016-08-19 02:58:51 UTC], ["updated_at", 2016-08-19 02:58:51 UTC]]  (115.1ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o primeiro rei de Israel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o primeiro rei de Israel?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o primeiro rei de Israel?"], ["created_at", 2016-08-19 02:58:51 UTC], ["updated_at", 2016-08-19 02:58:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 3069], ["correct", true], ["created_at", 2016-08-19 02:58:51 UTC], ["updated_at", 2016-08-19 02:58:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 3069], ["correct", false], ["created_at", 2016-08-19 02:58:51 UTC], ["updated_at", 2016-08-19 02:58:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judá"], ["question_id", 3069], ["correct", false], ["created_at", 2016-08-19 02:58:51 UTC], ["updated_at", 2016-08-19 02:58:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 3069], ["correct", false], ["created_at", 2016-08-19 02:58:51 UTC], ["updated_at", 2016-08-19 02:58:51 UTC]]  (121.3ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o primeiro tradutor da Bíblia para a língua do povo alemão?\n1,"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o primeiro tradutor da Bíblia para a língua do povo alemão?\n1,"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o primeiro tradutor da Bíblia para a língua do povo alemão?\n1,"], ["created_at", 2016-08-19 02:58:51 UTC], ["updated_at", 2016-08-19 02:58:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Martinho Lutero"], ["question_id", 3070], ["correct", true], ["created_at", 2016-08-19 02:58:51 UTC], ["updated_at", 2016-08-19 02:58:51 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Wycliffe"], ["question_id", 3070], ["correct", false], ["created_at", 2016-08-19 02:58:51 UTC], ["updated_at", 2016-08-19 02:58:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "John Esser"], ["question_id", 3070], ["correct", false], ["created_at", 2016-08-19 02:58:51 UTC], ["updated_at", 2016-08-19 02:58:51 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "William R. Wencheister"], ["question_id", 3070], ["correct", false], ["created_at", 2016-08-19 02:58:51 UTC], ["updated_at", 2016-08-19 02:58:51 UTC]]  (131.0ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o rei da Babilônia que viu uma mão sem corpo escrevendo na parede?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o rei da Babilônia que viu uma mão sem corpo escrevendo na parede?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o rei da Babilônia que viu uma mão sem corpo escrevendo na parede?"], ["created_at", 2016-08-19 02:58:52 UTC], ["updated_at", 2016-08-19 02:58:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belsazar"], ["question_id", 3071], ["correct", true], ["created_at", 2016-08-19 02:58:52 UTC], ["updated_at", 2016-08-19 02:58:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 3071], ["correct", false], ["created_at", 2016-08-19 02:58:52 UTC], ["updated_at", 2016-08-19 02:58:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dario"], ["question_id", 3071], ["correct", false], ["created_at", 2016-08-19 02:58:52 UTC], ["updated_at", 2016-08-19 02:58:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bezalel"], ["question_id", 3071], ["correct", false], ["created_at", 2016-08-19 02:58:52 UTC], ["updated_at", 2016-08-19 02:58:52 UTC]]  (189.4ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o sogro de Maria, mãe de Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o sogro de Maria, mãe de Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o sogro de Maria, mãe de Jesus?"], ["created_at", 2016-08-19 02:58:52 UTC], ["updated_at", 2016-08-19 02:58:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 3072], ["correct", true], ["created_at", 2016-08-19 02:58:52 UTC], ["updated_at", 2016-08-19 02:58:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 3072], ["correct", false], ["created_at", 2016-08-19 02:58:52 UTC], ["updated_at", 2016-08-19 02:58:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias"], ["question_id", 3072], ["correct", false], ["created_at", 2016-08-19 02:58:52 UTC], ["updated_at", 2016-08-19 02:58:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jetro"], ["question_id", 3072], ["correct", false], ["created_at", 2016-08-19 02:58:52 UTC], ["updated_at", 2016-08-19 02:58:52 UTC]]  (171.4ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o tio-avô de Raquel e Léia, esposas de Jacó?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o tio-avô de Raquel e Léia, esposas de Jacó?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o tio-avô de Raquel e Léia, esposas de Jacó?"], ["created_at", 2016-08-19 02:58:52 UTC], ["updated_at", 2016-08-19 02:58:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 3073], ["correct", true], ["created_at", 2016-08-19 02:58:52 UTC], ["updated_at", 2016-08-19 02:58:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noé"], ["question_id", 3073], ["correct", false], ["created_at", 2016-08-19 02:58:52 UTC], ["updated_at", 2016-08-19 02:58:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adão"], ["question_id", 3073], ["correct", false], ["created_at", 2016-08-19 02:58:52 UTC], ["updated_at", 2016-08-19 02:58:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 3073], ["correct", false], ["created_at", 2016-08-19 02:58:52 UTC], ["updated_at", 2016-08-19 02:58:52 UTC]]  (154.7ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o último dos juízes de Israel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o último dos juízes de Israel?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o último dos juízes de Israel?"], ["created_at", 2016-08-19 02:58:52 UTC], ["updated_at", 2016-08-19 02:58:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel"], ["question_id", 3074], ["correct", true], ["created_at", 2016-08-19 02:58:52 UTC], ["updated_at", 2016-08-19 02:58:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Levi"], ["question_id", 3074], ["correct", false], ["created_at", 2016-08-19 02:58:52 UTC], ["updated_at", 2016-08-19 02:58:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matusalém"], ["question_id", 3074], ["correct", false], ["created_at", 2016-08-19 02:58:52 UTC], ["updated_at", 2016-08-19 02:58:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 3074], ["correct", false], ["created_at", 2016-08-19 02:58:52 UTC], ["updated_at", 2016-08-19 02:58:52 UTC]]  (140.4ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o último rei que reinou o reino do Norte?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o último rei que reinou o reino do Norte?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o último rei que reinou o reino do Norte?"], ["created_at", 2016-08-19 02:58:52 UTC], ["updated_at", 2016-08-19 02:58:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 3075], ["correct", true], ["created_at", 2016-08-19 02:58:52 UTC], ["updated_at", 2016-08-19 02:58:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jedidias"], ["question_id", 3075], ["correct", false], ["created_at", 2016-08-19 02:58:52 UTC], ["updated_at", 2016-08-19 02:58:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeoás"], ["question_id", 3075], ["correct", false], ["created_at", 2016-08-19 02:58:52 UTC], ["updated_at", 2016-08-19 02:58:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 3075], ["correct", false], ["created_at", 2016-08-19 02:58:52 UTC], ["updated_at", 2016-08-19 02:58:52 UTC]]  (146.6ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o último sobrevivente da casa de Saul?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi o último sobrevivente da casa de Saul?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi o último sobrevivente da casa de Saul?"], ["created_at", 2016-08-19 02:58:52 UTC], ["updated_at", 2016-08-19 02:58:52 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mefibosete"], ["question_id", 3076], ["correct", true], ["created_at", 2016-08-19 02:58:52 UTC], ["updated_at", 2016-08-19 02:58:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jônatas"], ["question_id", 3076], ["correct", false], ["created_at", 2016-08-19 02:58:52 UTC], ["updated_at", 2016-08-19 02:58:52 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anias"], ["question_id", 3076], ["correct", false], ["created_at", 2016-08-19 02:58:52 UTC], ["updated_at", 2016-08-19 02:58:52 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 3076], ["correct", false], ["created_at", 2016-08-19 02:58:52 UTC], ["updated_at", 2016-08-19 02:58:52 UTC]]  (357.6ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi obrigado a girar um moinho após seu prisionamento?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi obrigado a girar um moinho após seu prisionamento?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi obrigado a girar um moinho após seu prisionamento?"], ["created_at", 2016-08-19 02:58:53 UTC], ["updated_at", 2016-08-19 02:58:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 3077], ["correct", true], ["created_at", 2016-08-19 02:58:53 UTC], ["updated_at", 2016-08-19 02:58:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 3077], ["correct", false], ["created_at", 2016-08-19 02:58:53 UTC], ["updated_at", 2016-08-19 02:58:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 3077], ["correct", false], ["created_at", 2016-08-19 02:58:53 UTC], ["updated_at", 2016-08-19 02:58:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 3077], ["correct", false], ["created_at", 2016-08-19 02:58:53 UTC], ["updated_at", 2016-08-19 02:58:53 UTC]]  (180.3ms) commit transaction Quizzes::Question Exists (1.0ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi possuído por Satanás logo após ter recebido das mãos de Jesus um pedaço de pão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi possuído por Satanás logo após ter recebido das mãos de Jesus um pedaço de pão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi possuído por Satanás logo após ter recebido das mãos de Jesus um pedaço de pão?"], ["created_at", 2016-08-19 02:58:53 UTC], ["updated_at", 2016-08-19 02:58:53 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas Iscariotes"], ["question_id", 3078], ["correct", true], ["created_at", 2016-08-19 02:58:53 UTC], ["updated_at", 2016-08-19 02:58:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 3078], ["correct", false], ["created_at", 2016-08-19 02:58:53 UTC], ["updated_at", 2016-08-19 02:58:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 3078], ["correct", false], ["created_at", 2016-08-19 02:58:53 UTC], ["updated_at", 2016-08-19 02:58:53 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lázaro"], ["question_id", 3078], ["correct", false], ["created_at", 2016-08-19 02:58:53 UTC], ["updated_at", 2016-08-19 02:58:53 UTC]]  (154.7ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi proclamado publicamente rei na cidade de Gilgal?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi proclamado publicamente rei na cidade de Gilgal?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi proclamado publicamente rei na cidade de Gilgal?"], ["created_at", 2016-08-19 02:58:53 UTC], ["updated_at", 2016-08-19 02:58:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 3079], ["correct", true], ["created_at", 2016-08-19 02:58:53 UTC], ["updated_at", 2016-08-19 02:58:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 3079], ["correct", false], ["created_at", 2016-08-19 02:58:53 UTC], ["updated_at", 2016-08-19 02:58:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro"], ["question_id", 3079], ["correct", false], ["created_at", 2016-08-19 02:58:53 UTC], ["updated_at", 2016-08-19 02:58:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 3079], ["correct", false], ["created_at", 2016-08-19 02:58:53 UTC], ["updated_at", 2016-08-19 02:58:53 UTC]]  (130.0ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi professor do apóstolo Paulo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi professor do apóstolo Paulo?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi professor do apóstolo Paulo?"], ["created_at", 2016-08-19 02:58:53 UTC], ["updated_at", 2016-08-19 02:58:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gamaliel"], ["question_id", 3080], ["correct", true], ["created_at", 2016-08-19 02:58:53 UTC], ["updated_at", 2016-08-19 02:58:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salatiel"], ["question_id", 3080], ["correct", false], ["created_at", 2016-08-19 02:58:53 UTC], ["updated_at", 2016-08-19 02:58:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sebastião"], ["question_id", 3080], ["correct", false], ["created_at", 2016-08-19 02:58:53 UTC], ["updated_at", 2016-08-19 02:58:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elizael"], ["question_id", 3080], ["correct", false], ["created_at", 2016-08-19 02:58:53 UTC], ["updated_at", 2016-08-19 02:58:53 UTC]]  (223.4ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi rei e sacerdote ao mesmo tempo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi rei e sacerdote ao mesmo tempo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi rei e sacerdote ao mesmo tempo?"], ["created_at", 2016-08-19 02:58:53 UTC], ["updated_at", 2016-08-19 02:58:53 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Melquisedeque"], ["question_id", 3081], ["correct", true], ["created_at", 2016-08-19 02:58:53 UTC], ["updated_at", 2016-08-19 02:58:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 3081], ["correct", false], ["created_at", 2016-08-19 02:58:53 UTC], ["updated_at", 2016-08-19 02:58:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 3081], ["correct", false], ["created_at", 2016-08-19 02:58:53 UTC], ["updated_at", 2016-08-19 02:58:53 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 3081], ["correct", false], ["created_at", 2016-08-19 02:58:53 UTC], ["updated_at", 2016-08-19 02:58:53 UTC]]  (163.7ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi sepultado por Deus em um vale?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi sepultado por Deus em um vale?"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi sepultado por Deus em um vale?"], ["created_at", 2016-08-19 02:58:54 UTC], ["updated_at", 2016-08-19 02:58:54 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 3082], ["correct", true], ["created_at", 2016-08-19 02:58:54 UTC], ["updated_at", 2016-08-19 02:58:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 3082], ["correct", false], ["created_at", 2016-08-19 02:58:54 UTC], ["updated_at", 2016-08-19 02:58:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 3082], ["correct", false], ["created_at", 2016-08-19 02:58:54 UTC], ["updated_at", 2016-08-19 02:58:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Enoque"], ["question_id", 3082], ["correct", false], ["created_at", 2016-08-19 02:58:54 UTC], ["updated_at", 2016-08-19 02:58:54 UTC]]  (146.6ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi tocado por um milagre de Jesus e estava sendo ameaçado de morte pelos sumos sacerdotes?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi tocado por um milagre de Jesus e estava sendo ameaçado de morte pelos sumos sacerdotes?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi tocado por um milagre de Jesus e estava sendo ameaçado de morte pelos sumos sacerdotes?"], ["created_at", 2016-08-19 02:58:54 UTC], ["updated_at", 2016-08-19 02:58:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lázaro"], ["question_id", 3083], ["correct", true], ["created_at", 2016-08-19 02:58:54 UTC], ["updated_at", 2016-08-19 02:58:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nicodemos"], ["question_id", 3083], ["correct", false], ["created_at", 2016-08-19 02:58:54 UTC], ["updated_at", 2016-08-19 02:58:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bartimeu"], ["question_id", 3083], ["correct", false], ["created_at", 2016-08-19 02:58:54 UTC], ["updated_at", 2016-08-19 02:58:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria Madalena"], ["question_id", 3083], ["correct", false], ["created_at", 2016-08-19 02:58:54 UTC], ["updated_at", 2016-08-19 02:58:54 UTC]]  (155.2ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi transformada em estátua de sal, ao olhar para trás?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi transformada em estátua de sal, ao olhar para trás?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi transformada em estátua de sal, ao olhar para trás?"], ["created_at", 2016-08-19 02:58:54 UTC], ["updated_at", 2016-08-19 02:58:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Esposa de Ló"], ["question_id", 3084], ["correct", true], ["created_at", 2016-08-19 02:58:54 UTC], ["updated_at", 2016-08-19 02:58:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Filha de Ló"], ["question_id", 3084], ["correct", false], ["created_at", 2016-08-19 02:58:54 UTC], ["updated_at", 2016-08-19 02:58:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Sobrinha de Ló"], ["question_id", 3084], ["correct", false], ["created_at", 2016-08-19 02:58:54 UTC], ["updated_at", 2016-08-19 02:58:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Irmã de Ló"], ["question_id", 3084], ["correct", false], ["created_at", 2016-08-19 02:58:54 UTC], ["updated_at", 2016-08-19 02:58:54 UTC]]  (121.8ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi um dos filhos de Anrão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi um dos filhos de Anrão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi um dos filhos de Anrão?"], ["created_at", 2016-08-19 02:58:54 UTC], ["updated_at", 2016-08-19 02:58:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 3085], ["correct", true], ["created_at", 2016-08-19 02:58:54 UTC], ["updated_at", 2016-08-19 02:58:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 3085], ["correct", false], ["created_at", 2016-08-19 02:58:54 UTC], ["updated_at", 2016-08-19 02:58:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliaquim"], ["question_id", 3085], ["correct", false], ["created_at", 2016-08-19 02:58:54 UTC], ["updated_at", 2016-08-19 02:58:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Urias"], ["question_id", 3085], ["correct", false], ["created_at", 2016-08-19 02:58:54 UTC], ["updated_at", 2016-08-19 02:58:54 UTC]]  (105.8ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi um dos filhos do rei Davi?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi um dos filhos do rei Davi?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi um dos filhos do rei Davi?"], ["created_at", 2016-08-19 02:58:54 UTC], ["updated_at", 2016-08-19 02:58:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 3086], ["correct", true], ["created_at", 2016-08-19 02:58:54 UTC], ["updated_at", 2016-08-19 02:58:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 3086], ["correct", false], ["created_at", 2016-08-19 02:58:54 UTC], ["updated_at", 2016-08-19 02:58:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel"], ["question_id", 3086], ["correct", false], ["created_at", 2016-08-19 02:58:54 UTC], ["updated_at", 2016-08-19 02:58:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Simeão"], ["question_id", 3086], ["correct", false], ["created_at", 2016-08-19 02:58:54 UTC], ["updated_at", 2016-08-19 02:58:54 UTC]]  (130.5ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi vendido pelos seus irmãos ao preço de 20 moedas de prata?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi vendido pelos seus irmãos ao preço de 20 moedas de prata?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi vendido pelos seus irmãos ao preço de 20 moedas de prata?"], ["created_at", 2016-08-19 02:58:54 UTC], ["updated_at", 2016-08-19 02:58:54 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 3087], ["correct", true], ["created_at", 2016-08-19 02:58:54 UTC], ["updated_at", 2016-08-19 02:58:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 3087], ["correct", false], ["created_at", 2016-08-19 02:58:54 UTC], ["updated_at", 2016-08-19 02:58:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 3087], ["correct", false], ["created_at", 2016-08-19 02:58:54 UTC], ["updated_at", 2016-08-19 02:58:54 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sete"], ["question_id", 3087], ["correct", false], ["created_at", 2016-08-19 02:58:54 UTC], ["updated_at", 2016-08-19 02:58:54 UTC]]  (122.6ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi visitar Maria para dizer-lhe que ela havia sido escolhida para ser a mãe de Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi visitar Maria para dizer-lhe que ela havia sido escolhida para ser a mãe de Jesus?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi visitar Maria para dizer-lhe que ela havia sido escolhida para ser a mãe de Jesus?"], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Anjo"], ["question_id", 3088], ["correct", true], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Pastor de Ovelhas"], ["question_id", 3088], ["correct", false], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Rei Mago"], ["question_id", 3088], ["correct", false], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Próprio Jesus, Em Sonho"], ["question_id", 3088], ["correct", false], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]]  (122.4ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi, cujo significado de seu nome é \"pacífico\"?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foi, cujo significado de seu nome é \"pacífico\"?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foi, cujo significado de seu nome é \"pacífico\"?"], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 3089], ["correct", true], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 3089], ["correct", false], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 3089], ["correct", false], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 3089], ["correct", false], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]]  (129.4ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram as primeiras pessoas a ouvirem sobre o nascimento de Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram as primeiras pessoas a ouvirem sobre o nascimento de Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foram as primeiras pessoas a ouvirem sobre o nascimento de Jesus?"], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Pastores"], ["question_id", 3090], ["correct", true], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Reis Magos"], ["question_id", 3090], ["correct", false], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes, O Grande"], ["question_id", 3090], ["correct", false], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Família do Proprietário do Estábulo"], ["question_id", 3090], ["correct", false], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]]  (140.1ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram os pais de Benjamim?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram os pais de Benjamim?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foram os pais de Benjamim?"], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó e Raquel"], ["question_id", 3091], ["correct", true], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó e Rebeca"], ["question_id", 3091], ["correct", false], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó e Sara"], ["question_id", 3091], ["correct", false], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó e Agar"], ["question_id", 3091], ["correct", false], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]]  (114.3ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram os pais de Jeroboão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram os pais de Jeroboão?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foram os pais de Jeroboão?"], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão e Maacá"], ["question_id", 3092], ["correct", true], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão e Dalila"], ["question_id", 3092], ["correct", false], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assuero e Sabá"], ["question_id", 3092], ["correct", false], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adonias e Bate-seba"], ["question_id", 3092], ["correct", false], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]]  (123.4ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram os pais de João Batista?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram os pais de João Batista?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foram os pais de João Batista?"], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias e Isabel"], ["question_id", 3093], ["correct", true], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zebedeu e Salomé"], ["question_id", 3093], ["correct", false], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe e Jezabel"], ["question_id", 3093], ["correct", false], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José A Maria"], ["question_id", 3093], ["correct", false], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]]  (115.5ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram os pais de José, do Egito?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram os pais de José, do Egito?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foram os pais de José, do Egito?"], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó e Raquel"], ["question_id", 3094], ["correct", true], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão e Sara"], ["question_id", 3094], ["correct", false], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão e Agar"], ["question_id", 3094], ["correct", false], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque e Rebeca"], ["question_id", 3094], ["correct", false], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]]  (115.1ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram os pais de Roboão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem foram os pais de Roboão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem foram os pais de Roboão?"], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão e Maacá"], ["question_id", 3095], ["correct", true], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque e Rebeca"], ["question_id", 3095], ["correct", false], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó e Raquel"], ["question_id", 3095], ["correct", false], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias e Jezabel"], ["question_id", 3095], ["correct", false], ["created_at", 2016-08-19 02:58:55 UTC], ["updated_at", 2016-08-19 02:58:55 UTC]]  (139.0ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem formou a primeira orquestra?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem formou a primeira orquestra?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem formou a primeira orquestra?"], ["created_at", 2016-08-19 02:58:56 UTC], ["updated_at", 2016-08-19 02:58:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 3096], ["correct", true], ["created_at", 2016-08-19 02:58:56 UTC], ["updated_at", 2016-08-19 02:58:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 3096], ["correct", false], ["created_at", 2016-08-19 02:58:56 UTC], ["updated_at", 2016-08-19 02:58:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 3096], ["correct", false], ["created_at", 2016-08-19 02:58:56 UTC], ["updated_at", 2016-08-19 02:58:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 3096], ["correct", false], ["created_at", 2016-08-19 02:58:56 UTC], ["updated_at", 2016-08-19 02:58:56 UTC]]  (115.3ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fugiu de Jerusalém quando Absalão tentou tomar o trono à força?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem fugiu de Jerusalém quando Absalão tentou tomar o trono à força?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem fugiu de Jerusalém quando Absalão tentou tomar o trono à força?"], ["created_at", 2016-08-19 02:58:56 UTC], ["updated_at", 2016-08-19 02:58:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 3097], ["correct", true], ["created_at", 2016-08-19 02:58:56 UTC], ["updated_at", 2016-08-19 02:58:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 3097], ["correct", false], ["created_at", 2016-08-19 02:58:56 UTC], ["updated_at", 2016-08-19 02:58:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zedequias"], ["question_id", 3097], ["correct", false], ["created_at", 2016-08-19 02:58:56 UTC], ["updated_at", 2016-08-19 02:58:56 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josias"], ["question_id", 3097], ["correct", false], ["created_at", 2016-08-19 02:58:56 UTC], ["updated_at", 2016-08-19 02:58:56 UTC]]  (155.3ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ganhou uma \"túnica de muitas cores\"?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ganhou uma \"túnica de muitas cores\"?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ganhou uma \"túnica de muitas cores\"?"], ["created_at", 2016-08-19 02:58:56 UTC], ["updated_at", 2016-08-19 02:58:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 3098], ["correct", true], ["created_at", 2016-08-19 02:58:56 UTC], ["updated_at", 2016-08-19 02:58:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 3098], ["correct", false], ["created_at", 2016-08-19 02:58:56 UTC], ["updated_at", 2016-08-19 02:58:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 3098], ["correct", false], ["created_at", 2016-08-19 02:58:56 UTC], ["updated_at", 2016-08-19 02:58:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 3098], ["correct", false], ["created_at", 2016-08-19 02:58:56 UTC], ["updated_at", 2016-08-19 02:58:56 UTC]]  (171.7ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem governava o reino de Judá quando Nabucodonosor atacou Jerusalém pela 2ª vez?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem governava o reino de Judá quando Nabucodonosor atacou Jerusalém pela 2ª vez?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem governava o reino de Judá quando Nabucodonosor atacou Jerusalém pela 2ª vez?"], ["created_at", 2016-08-19 02:58:56 UTC], ["updated_at", 2016-08-19 02:58:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeoaquim"], ["question_id", 3099], ["correct", true], ["created_at", 2016-08-19 02:58:56 UTC], ["updated_at", 2016-08-19 02:58:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zedequias"], ["question_id", 3099], ["correct", false], ["created_at", 2016-08-19 02:58:56 UTC], ["updated_at", 2016-08-19 02:58:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 3099], ["correct", false], ["created_at", 2016-08-19 02:58:56 UTC], ["updated_at", 2016-08-19 02:58:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josias"], ["question_id", 3099], ["correct", false], ["created_at", 2016-08-19 02:58:56 UTC], ["updated_at", 2016-08-19 02:58:56 UTC]]  (139.4ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem gritou \"Crucifica-o!\" após Pôncio Pilatos ter apresentado Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem gritou \"Crucifica-o!\" após Pôncio Pilatos ter apresentado Jesus?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem gritou \"Crucifica-o!\" após Pôncio Pilatos ter apresentado Jesus?"], ["created_at", 2016-08-19 02:58:56 UTC], ["updated_at", 2016-08-19 02:58:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Povo Judeu"], ["question_id", 3100], ["correct", true], ["created_at", 2016-08-19 02:58:56 UTC], ["updated_at", 2016-08-19 02:58:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Sacerdotes do Templo"], ["question_id", 3100], ["correct", false], ["created_at", 2016-08-19 02:58:56 UTC], ["updated_at", 2016-08-19 02:58:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Fariseus"], ["question_id", 3100], ["correct", false], ["created_at", 2016-08-19 02:58:56 UTC], ["updated_at", 2016-08-19 02:58:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Soldados Romanos"], ["question_id", 3100], ["correct", false], ["created_at", 2016-08-19 02:58:56 UTC], ["updated_at", 2016-08-19 02:58:56 UTC]]  (131.7ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem havia dado a Daniel o nome de Beltesaazar?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem havia dado a Daniel o nome de Beltesaazar?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem havia dado a Daniel o nome de Beltesaazar?"], ["created_at", 2016-08-19 02:58:56 UTC], ["updated_at", 2016-08-19 02:58:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Comandantes de Babilônia"], ["question_id", 3101], ["correct", true], ["created_at", 2016-08-19 02:58:56 UTC], ["updated_at", 2016-08-19 02:58:56 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Príncipe do Egito"], ["question_id", 3101], ["correct", false], ["created_at", 2016-08-19 02:58:56 UTC], ["updated_at", 2016-08-19 02:58:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Faraó do Egito"], ["question_id", 3101], ["correct", false], ["created_at", 2016-08-19 02:58:56 UTC], ["updated_at", 2016-08-19 02:58:56 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei Tiro"], ["question_id", 3101], ["correct", false], ["created_at", 2016-08-19 02:58:56 UTC], ["updated_at", 2016-08-19 02:58:56 UTC]]  (181.5ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem interpretou os sonhos do Faraó do Egito?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem interpretou os sonhos do Faraó do Egito?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem interpretou os sonhos do Faraó do Egito?"], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 3102], ["correct", true], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Padeiro do Faraó"], ["question_id", 3102], ["correct", false], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomé"], ["question_id", 3102], ["correct", false], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Profetisa Ana"], ["question_id", 3102], ["correct", false], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]]  (130.2ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem irou-se pelo fato de ter sido construído um altar de sacrifícios para o deus Moleque?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem irou-se pelo fato de ter sido construído um altar de sacrifícios para o deus Moleque?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem irou-se pelo fato de ter sido construído um altar de sacrifícios para o deus Moleque?"], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josias"], ["question_id", 3103], ["correct", true], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 3103], ["correct", false], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 3103], ["correct", false], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 3103], ["correct", false], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]]  (115.0ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Isaque abençoou por engano, em lugar de Esaú?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Isaque abençoou por engano, em lugar de Esaú?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem Isaque abençoou por engano, em lugar de Esaú?"], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 3104], ["correct", true], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 3104], ["correct", false], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 3104], ["correct", false], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 3104], ["correct", false], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]]  (114.2ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Jesus disse que iria gritar se acaso o povo ficasse em silêncio pela ocasião de sua entrada triunfal em Jerusalém?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Jesus disse que iria gritar se acaso o povo ficasse em silêncio pela ocasião de sua entrada triunfal em Jerusalém?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem Jesus disse que iria gritar se acaso o povo ficasse em silêncio pela ocasião de sua entrada triunfal em Jerusalém?"], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Pedras"], ["question_id", 3105], ["correct", true], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Mudos"], ["question_id", 3105], ["correct", false], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Pássaros"], ["question_id", 3105], ["correct", false], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Árvores"], ["question_id", 3105], ["correct", false], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]]  (140.5ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Jesus expulsou do Templo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Jesus expulsou do Templo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem Jesus expulsou do Templo?"], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Mercadores"], ["question_id", 3106], ["correct", true], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Escribas"], ["question_id", 3106], ["correct", false], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Mendigos"], ["question_id", 3106], ["correct", false], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Líderes Religiosos"], ["question_id", 3106], ["correct", false], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]]  (181.0ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem jogou Jonas no mar?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem jogou Jonas no mar?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem jogou Jonas no mar?"], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Marinheiros"], ["question_id", 3107], ["correct", true], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Peixe Grande"], ["question_id", 3107], ["correct", false], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Rajada de Vento Forte"], ["question_id", 3107], ["correct", false], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Naufrágio do Navio Que Navegava"], ["question_id", 3107], ["correct", false], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]]  (131.6ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem levou cativo o reino norte de Israel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem levou cativo o reino norte de Israel?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem levou cativo o reino norte de Israel?"], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assíria"], ["question_id", 3108], ["correct", true], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egito"], ["question_id", 3108], ["correct", false], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônia"], ["question_id", 3108], ["correct", false], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenícia"], ["question_id", 3108], ["correct", false], ["created_at", 2016-08-19 02:58:57 UTC], ["updated_at", 2016-08-19 02:58:57 UTC]]  (164.7ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem levou seu filho de 12 anos a Jerusalém para celebrar a Páscoa dos judeus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem levou seu filho de 12 anos a Jerusalém para celebrar a Páscoa dos judeus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem levou seu filho de 12 anos a Jerusalém para celebrar a Páscoa dos judeus?"], ["created_at", 2016-08-19 02:58:58 UTC], ["updated_at", 2016-08-19 02:58:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José e Maria"], ["question_id", 3109], ["correct", true], ["created_at", 2016-08-19 02:58:58 UTC], ["updated_at", 2016-08-19 02:58:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elcana e Ana"], ["question_id", 3109], ["correct", false], ["created_at", 2016-08-19 02:58:58 UTC], ["updated_at", 2016-08-19 02:58:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias e Isabel"], ["question_id", 3109], ["correct", false], ["created_at", 2016-08-19 02:58:58 UTC], ["updated_at", 2016-08-19 02:58:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José de Arimatéia e Priscila"], ["question_id", 3109], ["correct", false], ["created_at", 2016-08-19 02:58:58 UTC], ["updated_at", 2016-08-19 02:58:58 UTC]]  (146.8ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem libertou o apóstolo Pedro da prisão quando ele foi acorrentado entre 2 guardas?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem libertou o apóstolo Pedro da prisão quando ele foi acorrentado entre 2 guardas?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem libertou o apóstolo Pedro da prisão quando ele foi acorrentado entre 2 guardas?"], ["created_at", 2016-08-19 02:58:58 UTC], ["updated_at", 2016-08-19 02:58:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Anjo"], ["question_id", 3110], ["correct", true], ["created_at", 2016-08-19 02:58:58 UTC], ["updated_at", 2016-08-19 02:58:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 3110], ["correct", false], ["created_at", 2016-08-19 02:58:58 UTC], ["updated_at", 2016-08-19 02:58:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes, O Grande"], ["question_id", 3110], ["correct", false], ["created_at", 2016-08-19 02:58:58 UTC], ["updated_at", 2016-08-19 02:58:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Próprio Imperador Romano"], ["question_id", 3110], ["correct", false], ["created_at", 2016-08-19 02:58:58 UTC], ["updated_at", 2016-08-19 02:58:58 UTC]]  (138.4ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem liderou o povo israelita durante sua libertação do cativeiro no Egito?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem liderou o povo israelita durante sua libertação do cativeiro no Egito?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem liderou o povo israelita durante sua libertação do cativeiro no Egito?"], ["created_at", 2016-08-19 02:58:58 UTC], ["updated_at", 2016-08-19 02:58:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 3111], ["correct", true], ["created_at", 2016-08-19 02:58:58 UTC], ["updated_at", 2016-08-19 02:58:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 3111], ["correct", false], ["created_at", 2016-08-19 02:58:58 UTC], ["updated_at", 2016-08-19 02:58:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 3111], ["correct", false], ["created_at", 2016-08-19 02:58:58 UTC], ["updated_at", 2016-08-19 02:58:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José do Egito"], ["question_id", 3111], ["correct", false], ["created_at", 2016-08-19 02:58:58 UTC], ["updated_at", 2016-08-19 02:58:58 UTC]]  (139.5ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou açoitar Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou açoitar Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem mandou açoitar Jesus?"], ["created_at", 2016-08-19 02:58:58 UTC], ["updated_at", 2016-08-19 02:58:58 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 3112], ["correct", true], ["created_at", 2016-08-19 02:58:58 UTC], ["updated_at", 2016-08-19 02:58:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sacerdotes do Templo"], ["question_id", 3112], ["correct", false], ["created_at", 2016-08-19 02:58:58 UTC], ["updated_at", 2016-08-19 02:58:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fariseus"], ["question_id", 3112], ["correct", false], ["created_at", 2016-08-19 02:58:58 UTC], ["updated_at", 2016-08-19 02:58:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Multidão Que Gritava"], ["question_id", 3112], ["correct", false], ["created_at", 2016-08-19 02:58:58 UTC], ["updated_at", 2016-08-19 02:58:58 UTC]]  (189.0ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou decapitar João Batista?"], ["LIMIT", 1]]  (0.0ms) begin transaction Quizzes::Question Exists (0.4ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou decapitar João Batista?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem mandou decapitar João Batista?"], ["created_at", 2016-08-19 02:58:58 UTC], ["updated_at", 2016-08-19 02:58:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes"], ["question_id", 3113], ["correct", true], ["created_at", 2016-08-19 02:58:58 UTC], ["updated_at", 2016-08-19 02:58:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Carrasco da Prisão"], ["question_id", 3113], ["correct", false], ["created_at", 2016-08-19 02:58:58 UTC], ["updated_at", 2016-08-19 02:58:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodias"], ["question_id", 3113], ["correct", false], ["created_at", 2016-08-19 02:58:58 UTC], ["updated_at", 2016-08-19 02:58:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mãe de Herodias"], ["question_id", 3113], ["correct", false], ["created_at", 2016-08-19 02:58:58 UTC], ["updated_at", 2016-08-19 02:58:58 UTC]]  (151.7ms) commit transaction Quizzes::Question Exists (0.5ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou escrever uma placa para ser pregada na cruz de Jesus?"], ["LIMIT", 1]]  (0.0ms) begin transaction Quizzes::Question Exists (0.3ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou escrever uma placa para ser pregada na cruz de Jesus?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem mandou escrever uma placa para ser pregada na cruz de Jesus?"], ["created_at", 2016-08-19 02:58:58 UTC], ["updated_at", 2016-08-19 02:58:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 3114], ["correct", true], ["created_at", 2016-08-19 02:58:58 UTC], ["updated_at", 2016-08-19 02:58:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Agripa"], ["question_id", 3114], ["correct", false], ["created_at", 2016-08-19 02:58:58 UTC], ["updated_at", 2016-08-19 02:58:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes, O Grande"], ["question_id", 3114], ["correct", false], ["created_at", 2016-08-19 02:58:58 UTC], ["updated_at", 2016-08-19 02:58:58 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sumo Sacerdote Ananias"], ["question_id", 3114], ["correct", false], ["created_at", 2016-08-19 02:58:58 UTC], ["updated_at", 2016-08-19 02:58:58 UTC]]  (177.5ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou executar à morte o apóstolo Tiago?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou executar à morte o apóstolo Tiago?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem mandou executar à morte o apóstolo Tiago?"], ["created_at", 2016-08-19 02:58:59 UTC], ["updated_at", 2016-08-19 02:58:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Agripa"], ["question_id", 3115], ["correct", true], ["created_at", 2016-08-19 02:58:59 UTC], ["updated_at", 2016-08-19 02:58:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes, O Grande"], ["question_id", 3115], ["correct", false], ["created_at", 2016-08-19 02:58:59 UTC], ["updated_at", 2016-08-19 02:58:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 3115], ["correct", false], ["created_at", 2016-08-19 02:58:59 UTC], ["updated_at", 2016-08-19 02:58:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodias"], ["question_id", 3115], ["correct", false], ["created_at", 2016-08-19 02:58:59 UTC], ["updated_at", 2016-08-19 02:58:59 UTC]]  (113.7ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou matar os profetas de Baal?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou matar os profetas de Baal?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem mandou matar os profetas de Baal?"], ["created_at", 2016-08-19 02:58:59 UTC], ["updated_at", 2016-08-19 02:58:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 3116], ["correct", true], ["created_at", 2016-08-19 02:58:59 UTC], ["updated_at", 2016-08-19 02:58:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 3116], ["correct", false], ["created_at", 2016-08-19 02:58:59 UTC], ["updated_at", 2016-08-19 02:58:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes"], ["question_id", 3116], ["correct", false], ["created_at", 2016-08-19 02:58:59 UTC], ["updated_at", 2016-08-19 02:58:59 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 3116], ["correct", false], ["created_at", 2016-08-19 02:58:59 UTC], ["updated_at", 2016-08-19 02:58:59 UTC]]  (138.4ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou prender Nabote acusando-o de blasfêmia, apenas para poder tomar posse da vinha que ele tinha?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou prender Nabote acusando-o de blasfêmia, apenas para poder tomar posse da vinha que ele tinha?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem mandou prender Nabote acusando-o de blasfêmia, apenas para poder tomar posse da vinha que ele tinha?"], ["created_at", 2016-08-19 02:58:59 UTC], ["updated_at", 2016-08-19 02:58:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rainha Jezabel"], ["question_id", 3117], ["correct", true], ["created_at", 2016-08-19 02:58:59 UTC], ["updated_at", 2016-08-19 02:58:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dalila"], ["question_id", 3117], ["correct", false], ["created_at", 2016-08-19 02:58:59 UTC], ["updated_at", 2016-08-19 02:58:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei Acaz"], ["question_id", 3117], ["correct", false], ["created_at", 2016-08-19 02:58:59 UTC], ["updated_at", 2016-08-19 02:58:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei Acazias"], ["question_id", 3117], ["correct", false], ["created_at", 2016-08-19 02:58:59 UTC], ["updated_at", 2016-08-19 02:58:59 UTC]]  (205.2ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou que todos os bebês hebreus que nascessem fosse mortos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou que todos os bebês hebreus que nascessem fosse mortos?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem mandou que todos os bebês hebreus que nascessem fosse mortos?"], ["created_at", 2016-08-19 02:58:59 UTC], ["updated_at", 2016-08-19 02:58:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Faraó"], ["question_id", 3118], ["correct", true], ["created_at", 2016-08-19 02:58:59 UTC], ["updated_at", 2016-08-19 02:58:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei Nabucodonosor"], ["question_id", 3118], ["correct", false], ["created_at", 2016-08-19 02:58:59 UTC], ["updated_at", 2016-08-19 02:58:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei Dario"], ["question_id", 3118], ["correct", false], ["created_at", 2016-08-19 02:58:59 UTC], ["updated_at", 2016-08-19 02:58:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Antipas"], ["question_id", 3118], ["correct", false], ["created_at", 2016-08-19 02:58:59 UTC], ["updated_at", 2016-08-19 02:58:59 UTC]]  (140.6ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou tomar um jumento emprestado para Sua entrada em Jerusalém?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mandou tomar um jumento emprestado para Sua entrada em Jerusalém?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem mandou tomar um jumento emprestado para Sua entrada em Jerusalém?"], ["created_at", 2016-08-19 02:58:59 UTC], ["updated_at", 2016-08-19 02:58:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 3119], ["correct", true], ["created_at", 2016-08-19 02:58:59 UTC], ["updated_at", 2016-08-19 02:58:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 3119], ["correct", false], ["created_at", 2016-08-19 02:58:59 UTC], ["updated_at", 2016-08-19 02:58:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caifás"], ["question_id", 3119], ["correct", false], ["created_at", 2016-08-19 02:58:59 UTC], ["updated_at", 2016-08-19 02:58:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Safira"], ["question_id", 3119], ["correct", false], ["created_at", 2016-08-19 02:58:59 UTC], ["updated_at", 2016-08-19 02:58:59 UTC]]  (149.6ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mantinha o povo israelita mantido em cativeiro, durante os dias de Moisés?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem mantinha o povo israelita mantido em cativeiro, durante os dias de Moisés?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem mantinha o povo israelita mantido em cativeiro, durante os dias de Moisés?"], ["created_at", 2016-08-19 02:58:59 UTC], ["updated_at", 2016-08-19 02:58:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Egípcios"], ["question_id", 3120], ["correct", true], ["created_at", 2016-08-19 02:58:59 UTC], ["updated_at", 2016-08-19 02:58:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fenícios"], ["question_id", 3120], ["correct", false], ["created_at", 2016-08-19 02:58:59 UTC], ["updated_at", 2016-08-19 02:58:59 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônicos"], ["question_id", 3120], ["correct", false], ["created_at", 2016-08-19 02:58:59 UTC], ["updated_at", 2016-08-19 02:58:59 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assírios"], ["question_id", 3120], ["correct", false], ["created_at", 2016-08-19 02:58:59 UTC], ["updated_at", 2016-08-19 02:58:59 UTC]]  (129.7ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou 1.000 filisteus com apenas a queixada de um jumento?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou 1.000 filisteus com apenas a queixada de um jumento?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem matou 1.000 filisteus com apenas a queixada de um jumento?"], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 3121], ["correct", true], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 3121], ["correct", false], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Golias"], ["question_id", 3121], ["correct", false], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 3121], ["correct", false], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]]  (123.5ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou o gigante filisteu que tinha 12 dedos nas mãos e 12 dedos nos pés?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou o gigante filisteu que tinha 12 dedos nas mãos e 12 dedos nos pés?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem matou o gigante filisteu que tinha 12 dedos nas mãos e 12 dedos nos pés?"], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jônatas"], ["question_id", 3122], ["correct", true], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 3122], ["correct", false], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 3122], ["correct", false], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 3122], ["correct", false], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]]  (105.5ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou o rebelde Absalão que tencionava tomar à força o reino de Davi?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou o rebelde Absalão que tencionava tomar à força o reino de Davi?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem matou o rebelde Absalão que tencionava tomar à força o reino de Davi?"], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joabe"], ["question_id", 3123], ["correct", true], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joquebede"], ["question_id", 3123], ["correct", false], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zedequias"], ["question_id", 3123], ["correct", false], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 3123], ["correct", false], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]]  (121.8ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou o rei assírio Senaqueribe?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou o rei assírio Senaqueribe?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem matou o rei assírio Senaqueribe?"], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Próprios Filhos"], ["question_id", 3124], ["correct", true], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Próprio Pai"], ["question_id", 3124], ["correct", false], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Própria Mãe"], ["question_id", 3124], ["correct", false], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Própria Esposa"], ["question_id", 3124], ["correct", false], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]]  (114.3ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou seu irmão enquanto o beijava?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou seu irmão enquanto o beijava?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem matou seu irmão enquanto o beijava?"], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joabe"], ["question_id", 3125], ["correct", true], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eleazar"], ["question_id", 3125], ["correct", false], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Simei"], ["question_id", 3125], ["correct", false], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zinri"], ["question_id", 3125], ["correct", false], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]]  (140.0ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou um egípcio pelo fato deste estar surrando um hebreu?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou um egípcio pelo fato deste estar surrando um hebreu?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem matou um egípcio pelo fato deste estar surrando um hebreu?"], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 3126], ["correct", true], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 3126], ["correct", false], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Potifar"], ["question_id", 3126], ["correct", false], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Próprio Faraó"], ["question_id", 3126], ["correct", false], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]]  (106.0ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou um leão e um urso com as mãos nuas?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem matou um leão e um urso com as mãos nuas?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem matou um leão e um urso com as mãos nuas?"], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 3127], ["correct", true], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 3127], ["correct", false], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 3127], ["correct", false], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 3127], ["correct", false], ["created_at", 2016-08-19 02:59:00 UTC], ["updated_at", 2016-08-19 02:59:00 UTC]]  (163.8ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu aos 110 anos de idade, quando então foi embalsamado e mumificado?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu aos 110 anos de idade, quando então foi embalsamado e mumificado?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem morreu aos 110 anos de idade, quando então foi embalsamado e mumificado?"], ["created_at", 2016-08-19 02:59:01 UTC], ["updated_at", 2016-08-19 02:59:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José do Egito"], ["question_id", 3128], ["correct", true], ["created_at", 2016-08-19 02:59:01 UTC], ["updated_at", 2016-08-19 02:59:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 3128], ["correct", false], ["created_at", 2016-08-19 02:59:01 UTC], ["updated_at", 2016-08-19 02:59:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Potifar"], ["question_id", 3128], ["correct", false], ["created_at", 2016-08-19 02:59:01 UTC], ["updated_at", 2016-08-19 02:59:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rúben"], ["question_id", 3128], ["correct", false], ["created_at", 2016-08-19 02:59:01 UTC], ["updated_at", 2016-08-19 02:59:01 UTC]]  (154.8ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu de parto ao nascer-lhe o segundo filho?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu de parto ao nascer-lhe o segundo filho?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem morreu de parto ao nascer-lhe o segundo filho?"], ["created_at", 2016-08-19 02:59:01 UTC], ["updated_at", 2016-08-19 02:59:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Raquel"], ["question_id", 3129], ["correct", true], ["created_at", 2016-08-19 02:59:01 UTC], ["updated_at", 2016-08-19 02:59:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 3129], ["correct", false], ["created_at", 2016-08-19 02:59:01 UTC], ["updated_at", 2016-08-19 02:59:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeoseba"], ["question_id", 3129], ["correct", false], ["created_at", 2016-08-19 02:59:01 UTC], ["updated_at", 2016-08-19 02:59:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 3129], ["correct", false], ["created_at", 2016-08-19 02:59:01 UTC], ["updated_at", 2016-08-19 02:59:01 UTC]]  (121.9ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu na revolta de Absalão na tentativa de tomar o trono do rei Davi?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu na revolta de Absalão na tentativa de tomar o trono do rei Davi?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem morreu na revolta de Absalão na tentativa de tomar o trono do rei Davi?"], ["created_at", 2016-08-19 02:59:01 UTC], ["updated_at", 2016-08-19 02:59:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 3130], ["correct", true], ["created_at", 2016-08-19 02:59:01 UTC], ["updated_at", 2016-08-19 02:59:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 3130], ["correct", false], ["created_at", 2016-08-19 02:59:01 UTC], ["updated_at", 2016-08-19 02:59:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ambos"], ["question_id", 3130], ["correct", false], ["created_at", 2016-08-19 02:59:01 UTC], ["updated_at", 2016-08-19 02:59:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão, Filho de Davi"], ["question_id", 3130], ["correct", false], ["created_at", 2016-08-19 02:59:01 UTC], ["updated_at", 2016-08-19 02:59:01 UTC]]  (240.3ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu no Monte Hor?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu no Monte Hor?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem morreu no Monte Hor?"], ["created_at", 2016-08-19 02:59:01 UTC], ["updated_at", 2016-08-19 02:59:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 3131], ["correct", true], ["created_at", 2016-08-19 02:59:01 UTC], ["updated_at", 2016-08-19 02:59:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 3131], ["correct", false], ["created_at", 2016-08-19 02:59:01 UTC], ["updated_at", 2016-08-19 02:59:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 3131], ["correct", false], ["created_at", 2016-08-19 02:59:01 UTC], ["updated_at", 2016-08-19 02:59:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noé"], ["question_id", 3131], ["correct", false], ["created_at", 2016-08-19 02:59:01 UTC], ["updated_at", 2016-08-19 02:59:01 UTC]]  (165.7ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu no naufrágio do navio em que Paulo se encontrava quando estava indo para Roma?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu no naufrágio do navio em que Paulo se encontrava quando estava indo para Roma?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem morreu no naufrágio do navio em que Paulo se encontrava quando estava indo para Roma?"], ["created_at", 2016-08-19 02:59:01 UTC], ["updated_at", 2016-08-19 02:59:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ninguém"], ["question_id", 3132], ["correct", true], ["created_at", 2016-08-19 02:59:01 UTC], ["updated_at", 2016-08-19 02:59:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todos"], ["question_id", 3132], ["correct", false], ["created_at", 2016-08-19 02:59:01 UTC], ["updated_at", 2016-08-19 02:59:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas O Capitão do Navio"], ["question_id", 3132], ["correct", false], ["created_at", 2016-08-19 02:59:01 UTC], ["updated_at", 2016-08-19 02:59:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas Paulo"], ["question_id", 3132], ["correct", false], ["created_at", 2016-08-19 02:59:01 UTC], ["updated_at", 2016-08-19 02:59:01 UTC]]  (183.8ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu pelo fato de ter trazido fogo estranho à Casa de Deus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem morreu pelo fato de ter trazido fogo estranho à Casa de Deus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem morreu pelo fato de ter trazido fogo estranho à Casa de Deus?"], ["created_at", 2016-08-19 02:59:01 UTC], ["updated_at", 2016-08-19 02:59:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nadabe e Abiú"], ["question_id", 3133], ["correct", true], ["created_at", 2016-08-19 02:59:01 UTC], ["updated_at", 2016-08-19 02:59:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zebulom e Itamar"], ["question_id", 3133], ["correct", false], ["created_at", 2016-08-19 02:59:01 UTC], ["updated_at", 2016-08-19 02:59:01 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eleasar e Boaz"], ["question_id", 3133], ["correct", false], ["created_at", 2016-08-19 02:59:01 UTC], ["updated_at", 2016-08-19 02:59:01 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Quedorlaomer e Acabe"], ["question_id", 3133], ["correct", false], ["created_at", 2016-08-19 02:59:01 UTC], ["updated_at", 2016-08-19 02:59:01 UTC]]  (163.5ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem nasceu em Ur dos Caldeus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem nasceu em Ur dos Caldeus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem nasceu em Ur dos Caldeus?"], ["created_at", 2016-08-19 02:59:02 UTC], ["updated_at", 2016-08-19 02:59:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 3134], ["correct", true], ["created_at", 2016-08-19 02:59:02 UTC], ["updated_at", 2016-08-19 02:59:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 3134], ["correct", false], ["created_at", 2016-08-19 02:59:02 UTC], ["updated_at", 2016-08-19 02:59:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 3134], ["correct", false], ["created_at", 2016-08-19 02:59:02 UTC], ["updated_at", 2016-08-19 02:59:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sara"], ["question_id", 3134], ["correct", false], ["created_at", 2016-08-19 02:59:02 UTC], ["updated_at", 2016-08-19 02:59:02 UTC]]  (155.2ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Nicodemos encontrou à noite e perguntou sobre a necessidade em nascer de novo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Nicodemos encontrou à noite e perguntou sobre a necessidade em nascer de novo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem Nicodemos encontrou à noite e perguntou sobre a necessidade em nascer de novo?"], ["created_at", 2016-08-19 02:59:02 UTC], ["updated_at", 2016-08-19 02:59:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 3135], ["correct", true], ["created_at", 2016-08-19 02:59:02 UTC], ["updated_at", 2016-08-19 02:59:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 3135], ["correct", false], ["created_at", 2016-08-19 02:59:02 UTC], ["updated_at", 2016-08-19 02:59:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Barnabé"], ["question_id", 3135], ["correct", false], ["created_at", 2016-08-19 02:59:02 UTC], ["updated_at", 2016-08-19 02:59:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 3135], ["correct", false], ["created_at", 2016-08-19 02:59:02 UTC], ["updated_at", 2016-08-19 02:59:02 UTC]]  (146.9ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem nomeou José como governador de todo o Egito?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem nomeou José como governador de todo o Egito?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem nomeou José como governador de todo o Egito?"], ["created_at", 2016-08-19 02:59:02 UTC], ["updated_at", 2016-08-19 02:59:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Faraó"], ["question_id", 3136], ["correct", true], ["created_at", 2016-08-19 02:59:02 UTC], ["updated_at", 2016-08-19 02:59:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes, O Grande"], ["question_id", 3136], ["correct", false], ["created_at", 2016-08-19 02:59:02 UTC], ["updated_at", 2016-08-19 02:59:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei Dario"], ["question_id", 3136], ["correct", false], ["created_at", 2016-08-19 02:59:02 UTC], ["updated_at", 2016-08-19 02:59:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rainha Cleópatra"], ["question_id", 3136], ["correct", false], ["created_at", 2016-08-19 02:59:02 UTC], ["updated_at", 2016-08-19 02:59:02 UTC]]  (131.2ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem o egípcio morto por Moisés estava surrando?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem o egípcio morto por Moisés estava surrando?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem o egípcio morto por Moisés estava surrando?"], ["created_at", 2016-08-19 02:59:02 UTC], ["updated_at", 2016-08-19 02:59:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Hebreu"], ["question_id", 3137], ["correct", true], ["created_at", 2016-08-19 02:59:02 UTC], ["updated_at", 2016-08-19 02:59:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Outro Egípcio"], ["question_id", 3137], ["correct", false], ["created_at", 2016-08-19 02:59:02 UTC], ["updated_at", 2016-08-19 02:59:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Faraó"], ["question_id", 3137], ["correct", false], ["created_at", 2016-08-19 02:59:02 UTC], ["updated_at", 2016-08-19 02:59:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Mãe de Moisés"], ["question_id", 3137], ["correct", false], ["created_at", 2016-08-19 02:59:02 UTC], ["updated_at", 2016-08-19 02:59:02 UTC]]  (180.1ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem o povo preferiu que fosse libertado por Pôncio Pilatos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem o povo preferiu que fosse libertado por Pôncio Pilatos?"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem o povo preferiu que fosse libertado por Pôncio Pilatos?"], ["created_at", 2016-08-19 02:59:02 UTC], ["updated_at", 2016-08-19 02:59:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Barrabás"], ["question_id", 3138], ["correct", true], ["created_at", 2016-08-19 02:59:02 UTC], ["updated_at", 2016-08-19 02:59:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bartimeu, O Cego"], ["question_id", 3138], ["correct", false], ["created_at", 2016-08-19 02:59:02 UTC], ["updated_at", 2016-08-19 02:59:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Barnabé"], ["question_id", 3138], ["correct", false], ["created_at", 2016-08-19 02:59:02 UTC], ["updated_at", 2016-08-19 02:59:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belsazar"], ["question_id", 3138], ["correct", false], ["created_at", 2016-08-19 02:59:02 UTC], ["updated_at", 2016-08-19 02:59:02 UTC]]  (190.9ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem o rei Acaz ofereceu como sacrifício ao deus Moloque?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem o rei Acaz ofereceu como sacrifício ao deus Moloque?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem o rei Acaz ofereceu como sacrifício ao deus Moloque?"], ["created_at", 2016-08-19 02:59:02 UTC], ["updated_at", 2016-08-19 02:59:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Próprios Filhos"], ["question_id", 3139], ["correct", true], ["created_at", 2016-08-19 02:59:02 UTC], ["updated_at", 2016-08-19 02:59:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Própria Mãe"], ["question_id", 3139], ["correct", false], ["created_at", 2016-08-19 02:59:02 UTC], ["updated_at", 2016-08-19 02:59:02 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Si Mesmo"], ["question_id", 3139], ["correct", false], ["created_at", 2016-08-19 02:59:02 UTC], ["updated_at", 2016-08-19 02:59:02 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Próprio Pai"], ["question_id", 3139], ["correct", false], ["created_at", 2016-08-19 02:59:02 UTC], ["updated_at", 2016-08-19 02:59:02 UTC]]  (239.1ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem o rei da Babilônia mandou jogar em uma fornalha ardente?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem o rei da Babilônia mandou jogar em uma fornalha ardente?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem o rei da Babilônia mandou jogar em uma fornalha ardente?"], ["created_at", 2016-08-19 02:59:03 UTC], ["updated_at", 2016-08-19 02:59:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Amigos de Daniel"], ["question_id", 3140], ["correct", true], ["created_at", 2016-08-19 02:59:03 UTC], ["updated_at", 2016-08-19 02:59:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 3140], ["correct", false], ["created_at", 2016-08-19 02:59:03 UTC], ["updated_at", 2016-08-19 02:59:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Próprio Filho"], ["question_id", 3140], ["correct", false], ["created_at", 2016-08-19 02:59:03 UTC], ["updated_at", 2016-08-19 02:59:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas Mesaque"], ["question_id", 3140], ["correct", false], ["created_at", 2016-08-19 02:59:03 UTC], ["updated_at", 2016-08-19 02:59:03 UTC]]  (156.4ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ofereceu a Rebeca como forma de agradecimento 1 argola de ouro e 2 pulseiras de ouro?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ofereceu a Rebeca como forma de agradecimento 1 argola de ouro e 2 pulseiras de ouro?"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ofereceu a Rebeca como forma de agradecimento 1 argola de ouro e 2 pulseiras de ouro?"], ["created_at", 2016-08-19 02:59:03 UTC], ["updated_at", 2016-08-19 02:59:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Servo de Abraão"], ["question_id", 3141], ["correct", true], ["created_at", 2016-08-19 02:59:03 UTC], ["updated_at", 2016-08-19 02:59:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sara"], ["question_id", 3141], ["correct", false], ["created_at", 2016-08-19 02:59:03 UTC], ["updated_at", 2016-08-19 02:59:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 3141], ["correct", false], ["created_at", 2016-08-19 02:59:03 UTC], ["updated_at", 2016-08-19 02:59:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 3141], ["correct", false], ["created_at", 2016-08-19 02:59:03 UTC], ["updated_at", 2016-08-19 02:59:03 UTC]]  (154.5ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ofereceu ao Rei Assuero 10.000 talentos de prata, com o objetivo em exterminar os judeus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ofereceu ao Rei Assuero 10.000 talentos de prata, com o objetivo em exterminar os judeus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ofereceu ao Rei Assuero 10.000 talentos de prata, com o objetivo em exterminar os judeus?"], ["created_at", 2016-08-19 02:59:03 UTC], ["updated_at", 2016-08-19 02:59:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hamã"], ["question_id", 3142], ["correct", true], ["created_at", 2016-08-19 02:59:03 UTC], ["updated_at", 2016-08-19 02:59:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Natã"], ["question_id", 3142], ["correct", false], ["created_at", 2016-08-19 02:59:03 UTC], ["updated_at", 2016-08-19 02:59:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Leviatã"], ["question_id", 3142], ["correct", false], ["created_at", 2016-08-19 02:59:03 UTC], ["updated_at", 2016-08-19 02:59:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Obladã"], ["question_id", 3142], ["correct", false], ["created_at", 2016-08-19 02:59:03 UTC], ["updated_at", 2016-08-19 02:59:03 UTC]]  (146.4ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ofereceu um quarto na parte de cima de sua casa quando Eliseu estava avisitando?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ofereceu um quarto na parte de cima de sua casa quando Eliseu estava avisitando?"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ofereceu um quarto na parte de cima de sua casa quando Eliseu estava avisitando?"], ["created_at", 2016-08-19 02:59:03 UTC], ["updated_at", 2016-08-19 02:59:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Mulher Sunamita"], ["question_id", 3143], ["correct", true], ["created_at", 2016-08-19 02:59:03 UTC], ["updated_at", 2016-08-19 02:59:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Cego"], ["question_id", 3143], ["correct", false], ["created_at", 2016-08-19 02:59:03 UTC], ["updated_at", 2016-08-19 02:59:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Viúva Pobre"], ["question_id", 3143], ["correct", false], ["created_at", 2016-08-19 02:59:03 UTC], ["updated_at", 2016-08-19 02:59:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Portador de Lepra"], ["question_id", 3143], ["correct", false], ["created_at", 2016-08-19 02:59:03 UTC], ["updated_at", 2016-08-19 02:59:03 UTC]]  (179.9ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou a colocação de guardas para guardar o sepulcro de Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou a colocação de guardas para guardar o sepulcro de Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ordenou a colocação de guardas para guardar o sepulcro de Jesus?"], ["created_at", 2016-08-19 02:59:03 UTC], ["updated_at", 2016-08-19 02:59:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 3144], ["correct", true], ["created_at", 2016-08-19 02:59:03 UTC], ["updated_at", 2016-08-19 02:59:03 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes"], ["question_id", 3144], ["correct", false], ["created_at", 2016-08-19 02:59:03 UTC], ["updated_at", 2016-08-19 02:59:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ananias"], ["question_id", 3144], ["correct", false], ["created_at", 2016-08-19 02:59:03 UTC], ["updated_at", 2016-08-19 02:59:03 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José de Arimatéia"], ["question_id", 3144], ["correct", false], ["created_at", 2016-08-19 02:59:03 UTC], ["updated_at", 2016-08-19 02:59:03 UTC]]  (147.4ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou a prisão de João Batista?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou a prisão de João Batista?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ordenou a prisão de João Batista?"], ["created_at", 2016-08-19 02:59:04 UTC], ["updated_at", 2016-08-19 02:59:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes"], ["question_id", 3145], ["correct", true], ["created_at", 2016-08-19 02:59:04 UTC], ["updated_at", 2016-08-19 02:59:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodias"], ["question_id", 3145], ["correct", false], ["created_at", 2016-08-19 02:59:04 UTC], ["updated_at", 2016-08-19 02:59:04 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 3145], ["correct", false], ["created_at", 2016-08-19 02:59:04 UTC], ["updated_at", 2016-08-19 02:59:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "César Augusto"], ["question_id", 3145], ["correct", false], ["created_at", 2016-08-19 02:59:04 UTC], ["updated_at", 2016-08-19 02:59:04 UTC]]  (138.1ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou que Daniel fosse atirado à cova dos leões?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou que Daniel fosse atirado à cova dos leões?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ordenou que Daniel fosse atirado à cova dos leões?"], ["created_at", 2016-08-19 02:59:04 UTC], ["updated_at", 2016-08-19 02:59:04 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei Dario"], ["question_id", 3146], ["correct", true], ["created_at", 2016-08-19 02:59:04 UTC], ["updated_at", 2016-08-19 02:59:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei Nabucodonosor"], ["question_id", 3146], ["correct", false], ["created_at", 2016-08-19 02:59:04 UTC], ["updated_at", 2016-08-19 02:59:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Natã"], ["question_id", 3146], ["correct", false], ["created_at", 2016-08-19 02:59:04 UTC], ["updated_at", 2016-08-19 02:59:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hamã"], ["question_id", 3146], ["correct", false], ["created_at", 2016-08-19 02:59:04 UTC], ["updated_at", 2016-08-19 02:59:04 UTC]]  (181.0ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou que Jesus fosse crucificado?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou que Jesus fosse crucificado?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ordenou que Jesus fosse crucificado?"], ["created_at", 2016-08-19 02:59:04 UTC], ["updated_at", 2016-08-19 02:59:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 3147], ["correct", true], ["created_at", 2016-08-19 02:59:04 UTC], ["updated_at", 2016-08-19 02:59:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Antipas"], ["question_id", 3147], ["correct", false], ["created_at", 2016-08-19 02:59:04 UTC], ["updated_at", 2016-08-19 02:59:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Agriga"], ["question_id", 3147], ["correct", false], ["created_at", 2016-08-19 02:59:04 UTC], ["updated_at", 2016-08-19 02:59:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Imperador Romano"], ["question_id", 3147], ["correct", false], ["created_at", 2016-08-19 02:59:04 UTC], ["updated_at", 2016-08-19 02:59:04 UTC]]  (131.6ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou que qualquer pessoa que visse Jesus deveria relatar onde ele se encontrava?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou que qualquer pessoa que visse Jesus deveria relatar onde ele se encontrava?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ordenou que qualquer pessoa que visse Jesus deveria relatar onde ele se encontrava?"], ["created_at", 2016-08-19 02:59:04 UTC], ["updated_at", 2016-08-19 02:59:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Líderes Religiosos"], ["question_id", 3148], ["correct", true], ["created_at", 2016-08-19 02:59:04 UTC], ["updated_at", 2016-08-19 02:59:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 3148], ["correct", false], ["created_at", 2016-08-19 02:59:04 UTC], ["updated_at", 2016-08-19 02:59:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Antipas"], ["question_id", 3148], ["correct", false], ["created_at", 2016-08-19 02:59:04 UTC], ["updated_at", 2016-08-19 02:59:04 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Agripa"], ["question_id", 3148], ["correct", false], ["created_at", 2016-08-19 02:59:04 UTC], ["updated_at", 2016-08-19 02:59:04 UTC]]  (131.5ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou que todos os filhos do sexo masculino que nascessem fossem mortos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem ordenou que todos os filhos do sexo masculino que nascessem fossem mortos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem ordenou que todos os filhos do sexo masculino que nascessem fossem mortos?"], ["created_at", 2016-08-19 02:59:04 UTC], ["updated_at", 2016-08-19 02:59:04 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Faraó do Egito"], ["question_id", 3149], ["correct", true], ["created_at", 2016-08-19 02:59:04 UTC], ["updated_at", 2016-08-19 02:59:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pônio Pilatos"], ["question_id", 3149], ["correct", false], ["created_at", 2016-08-19 02:59:04 UTC], ["updated_at", 2016-08-19 02:59:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rei Assuero"], ["question_id", 3149], ["correct", false], ["created_at", 2016-08-19 02:59:04 UTC], ["updated_at", 2016-08-19 02:59:04 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Imperador César Augusto"], ["question_id", 3149], ["correct", false], ["created_at", 2016-08-19 02:59:04 UTC], ["updated_at", 2016-08-19 02:59:04 UTC]]  (289.1ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem orientou Naamã para se molhar no rio Jordão para se curar da lepra?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem orientou Naamã para se molhar no rio Jordão para se curar da lepra?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem orientou Naamã para se molhar no rio Jordão para se curar da lepra?"], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 3150], ["correct", true], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 3150], ["correct", false], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 3150], ["correct", false], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 3150], ["correct", false], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]]  (139.1ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem orou por 7 dias para que seu filho não morresse?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem orou por 7 dias para que seu filho não morresse?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem orou por 7 dias para que seu filho não morresse?"], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 3151], ["correct", true], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 3151], ["correct", false], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 3151], ["correct", false], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 3151], ["correct", false], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]]  (129.9ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem passou 40 dias no Monte Sinai com Deus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem passou 40 dias no Monte Sinai com Deus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem passou 40 dias no Monte Sinai com Deus?"], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 3152], ["correct", true], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 3152], ["correct", false], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 3152], ["correct", false], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 3152], ["correct", false], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]]  (147.6ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem passou a noite lutando com Deus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem passou a noite lutando com Deus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem passou a noite lutando com Deus?"], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 3153], ["correct", true], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ismael"], ["question_id", 3153], ["correct", false], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 3153], ["correct", false], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 3153], ["correct", false], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]]  (129.7ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a cabeça de João Batista?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a cabeça de João Batista?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem pediu a cabeça de João Batista?"], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Todas As Alternativas"], ["question_id", 3154], ["correct", true], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodias"], ["question_id", 3154], ["correct", false], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mãe de Herodias"], ["question_id", 3154], ["correct", false], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Sogra de Herodes"], ["question_id", 3154], ["correct", false], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]]  (130.3ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a Dalila que ela conseguisse de Sansão o segredo de sua força?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a Dalila que ela conseguisse de Sansão o segredo de sua força?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem pediu a Dalila que ela conseguisse de Sansão o segredo de sua força?"], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Príncipes Filisteus"], ["question_id", 3155], ["correct", true], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Líderes Religiosos"], ["question_id", 3155], ["correct", false], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Mulheres Filistéias"], ["question_id", 3155], ["correct", false], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Povo Filisteu"], ["question_id", 3155], ["correct", false], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]]  (123.3ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a Deus que lhe desse sabedoria?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a Deus que lhe desse sabedoria?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem pediu a Deus que lhe desse sabedoria?"], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 3156], ["correct", true], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 3156], ["correct", false], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 3156], ["correct", false], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 3156], ["correct", false], ["created_at", 2016-08-19 02:59:05 UTC], ["updated_at", 2016-08-19 02:59:05 UTC]]  (131.9ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a Deus que não destruísse Sodoma?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a Deus que não destruísse Sodoma?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem pediu a Deus que não destruísse Sodoma?"], ["created_at", 2016-08-19 02:59:06 UTC], ["updated_at", 2016-08-19 02:59:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 3157], ["correct", true], ["created_at", 2016-08-19 02:59:06 UTC], ["updated_at", 2016-08-19 02:59:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Levi"], ["question_id", 3157], ["correct", false], ["created_at", 2016-08-19 02:59:06 UTC], ["updated_at", 2016-08-19 02:59:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ló"], ["question_id", 3157], ["correct", false], ["created_at", 2016-08-19 02:59:06 UTC], ["updated_at", 2016-08-19 02:59:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 3157], ["correct", false], ["created_at", 2016-08-19 02:59:06 UTC], ["updated_at", 2016-08-19 02:59:06 UTC]]  (107.3ms) commit transaction Quizzes::Question Exists (1.0ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a José que interpretasse seus sonhos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a José que interpretasse seus sonhos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem pediu a José que interpretasse seus sonhos?"], ["created_at", 2016-08-19 02:59:06 UTC], ["updated_at", 2016-08-19 02:59:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Faraó"], ["question_id", 3158], ["correct", true], ["created_at", 2016-08-19 02:59:06 UTC], ["updated_at", 2016-08-19 02:59:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Potifar"], ["question_id", 3158], ["correct", false], ["created_at", 2016-08-19 02:59:06 UTC], ["updated_at", 2016-08-19 02:59:06 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Esposa de Potifar"], ["question_id", 3158], ["correct", false], ["created_at", 2016-08-19 02:59:06 UTC], ["updated_at", 2016-08-19 02:59:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Irmãos"], ["question_id", 3158], ["correct", false], ["created_at", 2016-08-19 02:59:06 UTC], ["updated_at", 2016-08-19 02:59:06 UTC]]  (139.1ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a Roboão que abaixasse os impostos, após a morte do rei Salomão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu a Roboão que abaixasse os impostos, após a morte do rei Salomão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem pediu a Roboão que abaixasse os impostos, após a morte do rei Salomão?"], ["created_at", 2016-08-19 02:59:06 UTC], ["updated_at", 2016-08-19 02:59:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Povo de Israel"], ["question_id", 3159], ["correct", true], ["created_at", 2016-08-19 02:59:06 UTC], ["updated_at", 2016-08-19 02:59:06 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Sumo-sacerdote"], ["question_id", 3159], ["correct", false], ["created_at", 2016-08-19 02:59:06 UTC], ["updated_at", 2016-08-19 02:59:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Profeta Namã"], ["question_id", 3159], ["correct", false], ["created_at", 2016-08-19 02:59:06 UTC], ["updated_at", 2016-08-19 02:59:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Mãe Bate-seba"], ["question_id", 3159], ["correct", false], ["created_at", 2016-08-19 02:59:06 UTC], ["updated_at", 2016-08-19 02:59:06 UTC]]  (129.3ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu ao rei Davi para que escolhesse Salomão a lhe suceder no trono real?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu ao rei Davi para que escolhesse Salomão a lhe suceder no trono real?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem pediu ao rei Davi para que escolhesse Salomão a lhe suceder no trono real?"], ["created_at", 2016-08-19 02:59:06 UTC], ["updated_at", 2016-08-19 02:59:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bate-seba"], ["question_id", 3160], ["correct", true], ["created_at", 2016-08-19 02:59:06 UTC], ["updated_at", 2016-08-19 02:59:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adonias"], ["question_id", 3160], ["correct", false], ["created_at", 2016-08-19 02:59:06 UTC], ["updated_at", 2016-08-19 02:59:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Natã"], ["question_id", 3160], ["correct", false], ["created_at", 2016-08-19 02:59:06 UTC], ["updated_at", 2016-08-19 02:59:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 3160], ["correct", false], ["created_at", 2016-08-19 02:59:06 UTC], ["updated_at", 2016-08-19 02:59:06 UTC]]  (130.1ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu aos espias que sua família fosse poupada?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu aos espias que sua família fosse poupada?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem pediu aos espias que sua família fosse poupada?"], ["created_at", 2016-08-19 02:59:06 UTC], ["updated_at", 2016-08-19 02:59:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Raabe"], ["question_id", 3161], ["correct", true], ["created_at", 2016-08-19 02:59:06 UTC], ["updated_at", 2016-08-19 02:59:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amazias"], ["question_id", 3161], ["correct", false], ["created_at", 2016-08-19 02:59:06 UTC], ["updated_at", 2016-08-19 02:59:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jizreel"], ["question_id", 3161], ["correct", false], ["created_at", 2016-08-19 02:59:06 UTC], ["updated_at", 2016-08-19 02:59:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bate-seba"], ["question_id", 3161], ["correct", false], ["created_at", 2016-08-19 02:59:06 UTC], ["updated_at", 2016-08-19 02:59:06 UTC]]  (138.6ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu um período de teste de 10 dias para provar que a alimentação da mesa do rei era impura?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pediu um período de teste de 10 dias para provar que a alimentação da mesa do rei era impura?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem pediu um período de teste de 10 dias para provar que a alimentação da mesa do rei era impura?"], ["created_at", 2016-08-19 02:59:06 UTC], ["updated_at", 2016-08-19 02:59:06 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel e Seus Amigos"], ["question_id", 3162], ["correct", true], ["created_at", 2016-08-19 02:59:06 UTC], ["updated_at", 2016-08-19 02:59:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 3162], ["correct", false], ["created_at", 2016-08-19 02:59:06 UTC], ["updated_at", 2016-08-19 02:59:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 3162], ["correct", false], ["created_at", 2016-08-19 02:59:06 UTC], ["updated_at", 2016-08-19 02:59:06 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 3162], ["correct", false], ["created_at", 2016-08-19 02:59:06 UTC], ["updated_at", 2016-08-19 02:59:06 UTC]]  (264.5ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem perdeu a força quando teve seu cabelo cortado?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem perdeu a força quando teve seu cabelo cortado?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem perdeu a força quando teve seu cabelo cortado?"], ["created_at", 2016-08-19 02:59:07 UTC], ["updated_at", 2016-08-19 02:59:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 3163], ["correct", true], ["created_at", 2016-08-19 02:59:07 UTC], ["updated_at", 2016-08-19 02:59:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dalila"], ["question_id", 3163], ["correct", false], ["created_at", 2016-08-19 02:59:07 UTC], ["updated_at", 2016-08-19 02:59:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 3163], ["correct", false], ["created_at", 2016-08-19 02:59:07 UTC], ["updated_at", 2016-08-19 02:59:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Golias"], ["question_id", 3163], ["correct", false], ["created_at", 2016-08-19 02:59:07 UTC], ["updated_at", 2016-08-19 02:59:07 UTC]]  (198.0ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem perdeu a posição de rainha pelo fato de ter-se recusado a aparecer diante de um banco de bêbados?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem perdeu a posição de rainha pelo fato de ter-se recusado a aparecer diante de um banco de bêbados?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem perdeu a posição de rainha pelo fato de ter-se recusado a aparecer diante de um banco de bêbados?"], ["created_at", 2016-08-19 02:59:07 UTC], ["updated_at", 2016-08-19 02:59:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vasti"], ["question_id", 3164], ["correct", true], ["created_at", 2016-08-19 02:59:07 UTC], ["updated_at", 2016-08-19 02:59:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ester"], ["question_id", 3164], ["correct", false], ["created_at", 2016-08-19 02:59:07 UTC], ["updated_at", 2016-08-19 02:59:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jezabel"], ["question_id", 3164], ["correct", false], ["created_at", 2016-08-19 02:59:07 UTC], ["updated_at", 2016-08-19 02:59:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sabá"], ["question_id", 3164], ["correct", false], ["created_at", 2016-08-19 02:59:07 UTC], ["updated_at", 2016-08-19 02:59:07 UTC]]  (140.2ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem perdeu a vida por ter tocado na arca de Deus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem perdeu a vida por ter tocado na arca de Deus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem perdeu a vida por ter tocado na arca de Deus?"], ["created_at", 2016-08-19 02:59:07 UTC], ["updated_at", 2016-08-19 02:59:07 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uzá"], ["question_id", 3165], ["correct", true], ["created_at", 2016-08-19 02:59:07 UTC], ["updated_at", 2016-08-19 02:59:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Beelim"], ["question_id", 3165], ["correct", false], ["created_at", 2016-08-19 02:59:07 UTC], ["updated_at", 2016-08-19 02:59:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zorobabel"], ["question_id", 3165], ["correct", false], ["created_at", 2016-08-19 02:59:07 UTC], ["updated_at", 2016-08-19 02:59:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Neustã"], ["question_id", 3165], ["correct", false], ["created_at", 2016-08-19 02:59:07 UTC], ["updated_at", 2016-08-19 02:59:07 UTC]]  (163.1ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem perguntou a Pedro 3 vezes se ele amava a Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem perguntou a Pedro 3 vezes se ele amava a Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem perguntou a Pedro 3 vezes se ele amava a Jesus?"], ["created_at", 2016-08-19 02:59:07 UTC], ["updated_at", 2016-08-19 02:59:07 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Próprio Jesus"], ["question_id", 3166], ["correct", true], ["created_at", 2016-08-19 02:59:07 UTC], ["updated_at", 2016-08-19 02:59:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João"], ["question_id", 3166], ["correct", false], ["created_at", 2016-08-19 02:59:07 UTC], ["updated_at", 2016-08-19 02:59:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago"], ["question_id", 3166], ["correct", false], ["created_at", 2016-08-19 02:59:07 UTC], ["updated_at", 2016-08-19 02:59:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tomé"], ["question_id", 3166], ["correct", false], ["created_at", 2016-08-19 02:59:07 UTC], ["updated_at", 2016-08-19 02:59:07 UTC]]  (188.2ms) commit transaction Quizzes::Question Exists (1.0ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem permitiu que Mefibosete, com apenas 5 anos de idade, o deixasse cair, prejudicando com isso seus 2 pés?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem permitiu que Mefibosete, com apenas 5 anos de idade, o deixasse cair, prejudicando com isso seus 2 pés?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem permitiu que Mefibosete, com apenas 5 anos de idade, o deixasse cair, prejudicando com isso seus 2 pés?"], ["created_at", 2016-08-19 02:59:07 UTC], ["updated_at", 2016-08-19 02:59:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Babá"], ["question_id", 3167], ["correct", true], ["created_at", 2016-08-19 02:59:07 UTC], ["updated_at", 2016-08-19 02:59:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Mãe"], ["question_id", 3167], ["correct", false], ["created_at", 2016-08-19 02:59:07 UTC], ["updated_at", 2016-08-19 02:59:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Pai"], ["question_id", 3167], ["correct", false], ["created_at", 2016-08-19 02:59:07 UTC], ["updated_at", 2016-08-19 02:59:07 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Irmão Mais Velho"], ["question_id", 3167], ["correct", false], ["created_at", 2016-08-19 02:59:07 UTC], ["updated_at", 2016-08-19 02:59:07 UTC]]  (171.8ms) commit transaction Quizzes::Question Exists (1.0ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem persuadiu a multidão a pedir a Crucificação de Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem persuadiu a multidão a pedir a Crucificação de Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem persuadiu a multidão a pedir a Crucificação de Jesus?"], ["created_at", 2016-08-19 02:59:07 UTC], ["updated_at", 2016-08-19 02:59:07 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Sacerdotes do Templo"], ["question_id", 3168], ["correct", true], ["created_at", 2016-08-19 02:59:07 UTC], ["updated_at", 2016-08-19 02:59:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Fariseus"], ["question_id", 3168], ["correct", false], ["created_at", 2016-08-19 02:59:07 UTC], ["updated_at", 2016-08-19 02:59:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Levitas"], ["question_id", 3168], ["correct", false], ["created_at", 2016-08-19 02:59:07 UTC], ["updated_at", 2016-08-19 02:59:07 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Soldados Romanos"], ["question_id", 3168], ["correct", false], ["created_at", 2016-08-19 02:59:07 UTC], ["updated_at", 2016-08-19 02:59:07 UTC]]  (188.0ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem possuiu o corpo de Judas Iscariotes após o mesmo ter recebido diretamente de Jesus um pedaço de pão na Última Ceia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem possuiu o corpo de Judas Iscariotes após o mesmo ter recebido diretamente de Jesus um pedaço de pão na Última Ceia?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem possuiu o corpo de Judas Iscariotes após o mesmo ter recebido diretamente de Jesus um pedaço de pão na Última Ceia?"], ["created_at", 2016-08-19 02:59:08 UTC], ["updated_at", 2016-08-19 02:59:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Satanás"], ["question_id", 3169], ["correct", true], ["created_at", 2016-08-19 02:59:08 UTC], ["updated_at", 2016-08-19 02:59:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Anjo Gabriel"], ["question_id", 3169], ["correct", false], ["created_at", 2016-08-19 02:59:08 UTC], ["updated_at", 2016-08-19 02:59:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Próprio Deus"], ["question_id", 3169], ["correct", false], ["created_at", 2016-08-19 02:59:08 UTC], ["updated_at", 2016-08-19 02:59:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias No Momento da Transfiguração"], ["question_id", 3169], ["correct", false], ["created_at", 2016-08-19 02:59:08 UTC], ["updated_at", 2016-08-19 02:59:08 UTC]]  (179.8ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem precisou ser educado no serviço do rei durante 3 anos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem precisou ser educado no serviço do rei durante 3 anos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem precisou ser educado no serviço do rei durante 3 anos?"], ["created_at", 2016-08-19 02:59:08 UTC], ["updated_at", 2016-08-19 02:59:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 3170], ["correct", true], ["created_at", 2016-08-19 02:59:08 UTC], ["updated_at", 2016-08-19 02:59:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 3170], ["correct", false], ["created_at", 2016-08-19 02:59:08 UTC], ["updated_at", 2016-08-19 02:59:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 3170], ["correct", false], ["created_at", 2016-08-19 02:59:08 UTC], ["updated_at", 2016-08-19 02:59:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 3170], ["correct", false], ["created_at", 2016-08-19 02:59:08 UTC], ["updated_at", 2016-08-19 02:59:08 UTC]]  (121.7ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem preferiu ouvir as palavras de Jesus, ao invés de ajudar sua irmã?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem preferiu ouvir as palavras de Jesus, ao invés de ajudar sua irmã?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem preferiu ouvir as palavras de Jesus, ao invés de ajudar sua irmã?"], ["created_at", 2016-08-19 02:59:08 UTC], ["updated_at", 2016-08-19 02:59:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria"], ["question_id", 3171], ["correct", true], ["created_at", 2016-08-19 02:59:08 UTC], ["updated_at", 2016-08-19 02:59:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Marta"], ["question_id", 3171], ["correct", false], ["created_at", 2016-08-19 02:59:08 UTC], ["updated_at", 2016-08-19 02:59:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lázaro"], ["question_id", 3171], ["correct", false], ["created_at", 2016-08-19 02:59:08 UTC], ["updated_at", 2016-08-19 02:59:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 3171], ["correct", false], ["created_at", 2016-08-19 02:59:08 UTC], ["updated_at", 2016-08-19 02:59:08 UTC]]  (146.7ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pregou arrependimento aos cidadãos de Nínive durante 40 dias?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pregou arrependimento aos cidadãos de Nínive durante 40 dias?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem pregou arrependimento aos cidadãos de Nínive durante 40 dias?"], ["created_at", 2016-08-19 02:59:08 UTC], ["updated_at", 2016-08-19 02:59:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jonas"], ["question_id", 3172], ["correct", true], ["created_at", 2016-08-19 02:59:08 UTC], ["updated_at", 2016-08-19 02:59:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 3172], ["correct", false], ["created_at", 2016-08-19 02:59:08 UTC], ["updated_at", 2016-08-19 02:59:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 3172], ["correct", false], ["created_at", 2016-08-19 02:59:08 UTC], ["updated_at", 2016-08-19 02:59:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 3172], ["correct", false], ["created_at", 2016-08-19 02:59:08 UTC], ["updated_at", 2016-08-19 02:59:08 UTC]]  (133.0ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem procurava matar Saulo após ter-se convertido para o cristianismo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem procurava matar Saulo após ter-se convertido para o cristianismo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem procurava matar Saulo após ter-se convertido para o cristianismo?"], ["created_at", 2016-08-19 02:59:08 UTC], ["updated_at", 2016-08-19 02:59:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Judeus Helenistas"], ["question_id", 3173], ["correct", true], ["created_at", 2016-08-19 02:59:08 UTC], ["updated_at", 2016-08-19 02:59:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Egípcios"], ["question_id", 3173], ["correct", false], ["created_at", 2016-08-19 02:59:08 UTC], ["updated_at", 2016-08-19 02:59:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Soldados Romanos"], ["question_id", 3173], ["correct", false], ["created_at", 2016-08-19 02:59:08 UTC], ["updated_at", 2016-08-19 02:59:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Líderes Religiosos"], ["question_id", 3173], ["correct", false], ["created_at", 2016-08-19 02:59:08 UTC], ["updated_at", 2016-08-19 02:59:08 UTC]]  (140.6ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem profetizou de que os assírios não conseguiriam tomar Jerusalém?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem profetizou de que os assírios não conseguiriam tomar Jerusalém?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem profetizou de que os assírios não conseguiriam tomar Jerusalém?"], ["created_at", 2016-08-19 02:59:08 UTC], ["updated_at", 2016-08-19 02:59:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 3174], ["correct", true], ["created_at", 2016-08-19 02:59:08 UTC], ["updated_at", 2016-08-19 02:59:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeremias"], ["question_id", 3174], ["correct", false], ["created_at", 2016-08-19 02:59:08 UTC], ["updated_at", 2016-08-19 02:59:08 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ezequiel"], ["question_id", 3174], ["correct", false], ["created_at", 2016-08-19 02:59:08 UTC], ["updated_at", 2016-08-19 02:59:08 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sofonias"], ["question_id", 3174], ["correct", false], ["created_at", 2016-08-19 02:59:08 UTC], ["updated_at", 2016-08-19 02:59:08 UTC]]  (138.9ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pronunciou no Monte Gerizim as bênçãos dadas a Israel devido à sua obediência?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem pronunciou no Monte Gerizim as bênçãos dadas a Israel devido à sua obediência?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem pronunciou no Monte Gerizim as bênçãos dadas a Israel devido à sua obediência?"], ["created_at", 2016-08-19 02:59:09 UTC], ["updated_at", 2016-08-19 02:59:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 3175], ["correct", true], ["created_at", 2016-08-19 02:59:09 UTC], ["updated_at", 2016-08-19 02:59:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 3175], ["correct", false], ["created_at", 2016-08-19 02:59:09 UTC], ["updated_at", 2016-08-19 02:59:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 3175], ["correct", false], ["created_at", 2016-08-19 02:59:09 UTC], ["updated_at", 2016-08-19 02:59:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel"], ["question_id", 3175], ["correct", false], ["created_at", 2016-08-19 02:59:09 UTC], ["updated_at", 2016-08-19 02:59:09 UTC]]  (196.8ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem provocou a morte de João Batista?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem provocou a morte de João Batista?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem provocou a morte de João Batista?"], ["created_at", 2016-08-19 02:59:09 UTC], ["updated_at", 2016-08-19 02:59:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodias"], ["question_id", 3176], ["correct", true], ["created_at", 2016-08-19 02:59:09 UTC], ["updated_at", 2016-08-19 02:59:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 3176], ["correct", false], ["created_at", 2016-08-19 02:59:09 UTC], ["updated_at", 2016-08-19 02:59:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "César Augusto"], ["question_id", 3176], ["correct", false], ["created_at", 2016-08-19 02:59:09 UTC], ["updated_at", 2016-08-19 02:59:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sumo-sacerdote"], ["question_id", 3176], ["correct", false], ["created_at", 2016-08-19 02:59:09 UTC], ["updated_at", 2016-08-19 02:59:09 UTC]]  (181.1ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem queimou as plantações dos filisteus amarrando tochas nas caudas de raposas?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem queimou as plantações dos filisteus amarrando tochas nas caudas de raposas?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem queimou as plantações dos filisteus amarrando tochas nas caudas de raposas?"], ["created_at", 2016-08-19 02:59:09 UTC], ["updated_at", 2016-08-19 02:59:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 3177], ["correct", true], ["created_at", 2016-08-19 02:59:09 UTC], ["updated_at", 2016-08-19 02:59:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 3177], ["correct", false], ["created_at", 2016-08-19 02:59:09 UTC], ["updated_at", 2016-08-19 02:59:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 3177], ["correct", false], ["created_at", 2016-08-19 02:59:09 UTC], ["updated_at", 2016-08-19 02:59:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sadraque"], ["question_id", 3177], ["correct", false], ["created_at", 2016-08-19 02:59:09 UTC], ["updated_at", 2016-08-19 02:59:09 UTC]]  (197.6ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem questionou Davi sobre seus pecados contra Bate-Seba e Urias?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem questionou Davi sobre seus pecados contra Bate-Seba e Urias?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem questionou Davi sobre seus pecados contra Bate-Seba e Urias?"], ["created_at", 2016-08-19 02:59:09 UTC], ["updated_at", 2016-08-19 02:59:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Natã"], ["question_id", 3178], ["correct", true], ["created_at", 2016-08-19 02:59:09 UTC], ["updated_at", 2016-08-19 02:59:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Naamã"], ["question_id", 3178], ["correct", false], ["created_at", 2016-08-19 02:59:09 UTC], ["updated_at", 2016-08-19 02:59:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Joabe"], ["question_id", 3178], ["correct", false], ["created_at", 2016-08-19 02:59:09 UTC], ["updated_at", 2016-08-19 02:59:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 3178], ["correct", false], ["created_at", 2016-08-19 02:59:09 UTC], ["updated_at", 2016-08-19 02:59:09 UTC]]  (188.7ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Raabe escondeu na cidade de Jericó?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem Raabe escondeu na cidade de Jericó?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem Raabe escondeu na cidade de Jericó?"], ["created_at", 2016-08-19 02:59:09 UTC], ["updated_at", 2016-08-19 02:59:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Espias"], ["question_id", 3179], ["correct", true], ["created_at", 2016-08-19 02:59:09 UTC], ["updated_at", 2016-08-19 02:59:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Rei"], ["question_id", 3179], ["correct", false], ["created_at", 2016-08-19 02:59:09 UTC], ["updated_at", 2016-08-19 02:59:09 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Josué"], ["question_id", 3179], ["correct", false], ["created_at", 2016-08-19 02:59:09 UTC], ["updated_at", 2016-08-19 02:59:09 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Exército de Josué"], ["question_id", 3179], ["correct", false], ["created_at", 2016-08-19 02:59:09 UTC], ["updated_at", 2016-08-19 02:59:09 UTC]]  (163.2ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem recebeu do Faraó um anel pelo fato de haver interpretado os sonhos do Faraó?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem recebeu do Faraó um anel pelo fato de haver interpretado os sonhos do Faraó?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem recebeu do Faraó um anel pelo fato de haver interpretado os sonhos do Faraó?"], ["created_at", 2016-08-19 02:59:10 UTC], ["updated_at", 2016-08-19 02:59:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 3180], ["correct", true], ["created_at", 2016-08-19 02:59:10 UTC], ["updated_at", 2016-08-19 02:59:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 3180], ["correct", false], ["created_at", 2016-08-19 02:59:10 UTC], ["updated_at", 2016-08-19 02:59:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 3180], ["correct", false], ["created_at", 2016-08-19 02:59:10 UTC], ["updated_at", 2016-08-19 02:59:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Miriã"], ["question_id", 3180], ["correct", false], ["created_at", 2016-08-19 02:59:10 UTC], ["updated_at", 2016-08-19 02:59:10 UTC]]  (147.5ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem recebeu do rei Nabucodonosor o cargo de Governador da Babilônia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem recebeu do rei Nabucodonosor o cargo de Governador da Babilônia?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem recebeu do rei Nabucodonosor o cargo de Governador da Babilônia?"], ["created_at", 2016-08-19 02:59:10 UTC], ["updated_at", 2016-08-19 02:59:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 3181], ["correct", true], ["created_at", 2016-08-19 02:59:10 UTC], ["updated_at", 2016-08-19 02:59:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mesaque"], ["question_id", 3181], ["correct", false], ["created_at", 2016-08-19 02:59:10 UTC], ["updated_at", 2016-08-19 02:59:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sadraque"], ["question_id", 3181], ["correct", false], ["created_at", 2016-08-19 02:59:10 UTC], ["updated_at", 2016-08-19 02:59:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abede-nego"], ["question_id", 3181], ["correct", false], ["created_at", 2016-08-19 02:59:10 UTC], ["updated_at", 2016-08-19 02:59:10 UTC]]  (206.8ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem recebeu um beijo de traição?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem recebeu um beijo de traição?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem recebeu um beijo de traição?"], ["created_at", 2016-08-19 02:59:10 UTC], ["updated_at", 2016-08-19 02:59:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 3182], ["correct", true], ["created_at", 2016-08-19 02:59:10 UTC], ["updated_at", 2016-08-19 02:59:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Judas Iscariotes"], ["question_id", 3182], ["correct", false], ["created_at", 2016-08-19 02:59:10 UTC], ["updated_at", 2016-08-19 02:59:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 3182], ["correct", false], ["created_at", 2016-08-19 02:59:10 UTC], ["updated_at", 2016-08-19 02:59:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Caifás"], ["question_id", 3182], ["correct", false], ["created_at", 2016-08-19 02:59:10 UTC], ["updated_at", 2016-08-19 02:59:10 UTC]]  (188.2ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem reclamou para o Senhor que era pesado de boca e pesado de língua?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem reclamou para o Senhor que era pesado de boca e pesado de língua?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem reclamou para o Senhor que era pesado de boca e pesado de língua?"], ["created_at", 2016-08-19 02:59:10 UTC], ["updated_at", 2016-08-19 02:59:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 3183], ["correct", true], ["created_at", 2016-08-19 02:59:10 UTC], ["updated_at", 2016-08-19 02:59:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 3183], ["correct", false], ["created_at", 2016-08-19 02:59:10 UTC], ["updated_at", 2016-08-19 02:59:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ló"], ["question_id", 3183], ["correct", false], ["created_at", 2016-08-19 02:59:10 UTC], ["updated_at", 2016-08-19 02:59:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 3183], ["correct", false], ["created_at", 2016-08-19 02:59:10 UTC], ["updated_at", 2016-08-19 02:59:10 UTC]]  (131.1ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem reconstruiu Babilônia?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem reconstruiu Babilônia?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem reconstruiu Babilônia?"], ["created_at", 2016-08-19 02:59:10 UTC], ["updated_at", 2016-08-19 02:59:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabucodonosor"], ["question_id", 3184], ["correct", true], ["created_at", 2016-08-19 02:59:10 UTC], ["updated_at", 2016-08-19 02:59:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 3184], ["correct", false], ["created_at", 2016-08-19 02:59:10 UTC], ["updated_at", 2016-08-19 02:59:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belsazar"], ["question_id", 3184], ["correct", false], ["created_at", 2016-08-19 02:59:10 UTC], ["updated_at", 2016-08-19 02:59:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 3184], ["correct", false], ["created_at", 2016-08-19 02:59:10 UTC], ["updated_at", 2016-08-19 02:59:10 UTC]]  (146.6ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem refugiou-se em um monte, após terem deixado Raabe?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem refugiou-se em um monte, após terem deixado Raabe?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem refugiou-se em um monte, após terem deixado Raabe?"], ["created_at", 2016-08-19 02:59:10 UTC], ["updated_at", 2016-08-19 02:59:10 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Espias Enviados Por Josué"], ["question_id", 3185], ["correct", true], ["created_at", 2016-08-19 02:59:10 UTC], ["updated_at", 2016-08-19 02:59:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Próprio Josué"], ["question_id", 3185], ["correct", false], ["created_at", 2016-08-19 02:59:10 UTC], ["updated_at", 2016-08-19 02:59:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Exército de Josué"], ["question_id", 3185], ["correct", false], ["created_at", 2016-08-19 02:59:10 UTC], ["updated_at", 2016-08-19 02:59:10 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Filhos de Josué"], ["question_id", 3185], ["correct", false], ["created_at", 2016-08-19 02:59:10 UTC], ["updated_at", 2016-08-19 02:59:10 UTC]]  (148.2ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem reinava na cidade de Astarote, conhecida por haver muitos gigantes?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem reinava na cidade de Astarote, conhecida por haver muitos gigantes?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem reinava na cidade de Astarote, conhecida por haver muitos gigantes?"], ["created_at", 2016-08-19 02:59:11 UTC], ["updated_at", 2016-08-19 02:59:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ogue"], ["question_id", 3186], ["correct", true], ["created_at", 2016-08-19 02:59:11 UTC], ["updated_at", 2016-08-19 02:59:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Demagogue"], ["question_id", 3186], ["correct", false], ["created_at", 2016-08-19 02:59:11 UTC], ["updated_at", 2016-08-19 02:59:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Astarogue"], ["question_id", 3186], ["correct", false], ["created_at", 2016-08-19 02:59:11 UTC], ["updated_at", 2016-08-19 02:59:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cologue"], ["question_id", 3186], ["correct", false], ["created_at", 2016-08-19 02:59:11 UTC], ["updated_at", 2016-08-19 02:59:11 UTC]]  (113.8ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem reinava na Judéia quando José, Maria e Jesus retornaram para a Palestina?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem reinava na Judéia quando José, Maria e Jesus retornaram para a Palestina?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem reinava na Judéia quando José, Maria e Jesus retornaram para a Palestina?"], ["created_at", 2016-08-19 02:59:11 UTC], ["updated_at", 2016-08-19 02:59:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arquelau"], ["question_id", 3187], ["correct", true], ["created_at", 2016-08-19 02:59:11 UTC], ["updated_at", 2016-08-19 02:59:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pôncio Pilatos"], ["question_id", 3187], ["correct", false], ["created_at", 2016-08-19 02:59:11 UTC], ["updated_at", 2016-08-19 02:59:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Antipas"], ["question_id", 3187], ["correct", false], ["created_at", 2016-08-19 02:59:11 UTC], ["updated_at", 2016-08-19 02:59:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Agripa"], ["question_id", 3187], ["correct", false], ["created_at", 2016-08-19 02:59:11 UTC], ["updated_at", 2016-08-19 02:59:11 UTC]]  (139.5ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem resmungou pelo fato dos rebeldes terem sido destruídos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem resmungou pelo fato dos rebeldes terem sido destruídos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem resmungou pelo fato dos rebeldes terem sido destruídos?"], ["created_at", 2016-08-19 02:59:11 UTC], ["updated_at", 2016-08-19 02:59:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Povo Israelita"], ["question_id", 3188], ["correct", true], ["created_at", 2016-08-19 02:59:11 UTC], ["updated_at", 2016-08-19 02:59:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Reis Inimigos"], ["question_id", 3188], ["correct", false], ["created_at", 2016-08-19 02:59:11 UTC], ["updated_at", 2016-08-19 02:59:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Anjos Maus"], ["question_id", 3188], ["correct", false], ["created_at", 2016-08-19 02:59:11 UTC], ["updated_at", 2016-08-19 02:59:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Exército do Faraó"], ["question_id", 3188], ["correct", false], ["created_at", 2016-08-19 02:59:11 UTC], ["updated_at", 2016-08-19 02:59:11 UTC]]  (188.2ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem retirou a pedra do túmulo de Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem retirou a pedra do túmulo de Jesus?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem retirou a pedra do túmulo de Jesus?"], ["created_at", 2016-08-19 02:59:11 UTC], ["updated_at", 2016-08-19 02:59:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Anjo"], ["question_id", 3189], ["correct", true], ["created_at", 2016-08-19 02:59:11 UTC], ["updated_at", 2016-08-19 02:59:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Soldados Romanos"], ["question_id", 3189], ["correct", false], ["created_at", 2016-08-19 02:59:11 UTC], ["updated_at", 2016-08-19 02:59:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Discípulos"], ["question_id", 3189], ["correct", false], ["created_at", 2016-08-19 02:59:11 UTC], ["updated_at", 2016-08-19 02:59:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Fariseus"], ["question_id", 3189], ["correct", false], ["created_at", 2016-08-19 02:59:11 UTC], ["updated_at", 2016-08-19 02:59:11 UTC]]  (146.7ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem salvou a vida do profeta Jeremias, que havia sido atirado em uma cisterna para morrer na lama?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem salvou a vida do profeta Jeremias, que havia sido atirado em uma cisterna para morrer na lama?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem salvou a vida do profeta Jeremias, que havia sido atirado em uma cisterna para morrer na lama?"], ["created_at", 2016-08-19 02:59:11 UTC], ["updated_at", 2016-08-19 02:59:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ebede-meleque"], ["question_id", 3190], ["correct", true], ["created_at", 2016-08-19 02:59:11 UTC], ["updated_at", 2016-08-19 02:59:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nabote"], ["question_id", 3190], ["correct", false], ["created_at", 2016-08-19 02:59:11 UTC], ["updated_at", 2016-08-19 02:59:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nebo"], ["question_id", 3190], ["correct", false], ["created_at", 2016-08-19 02:59:11 UTC], ["updated_at", 2016-08-19 02:59:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jetro"], ["question_id", 3190], ["correct", false], ["created_at", 2016-08-19 02:59:11 UTC], ["updated_at", 2016-08-19 02:59:11 UTC]]  (123.3ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem salvou Balaão de ser morto por um anjo que estava com a espada desembainhada?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem salvou Balaão de ser morto por um anjo que estava com a espada desembainhada?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem salvou Balaão de ser morto por um anjo que estava com a espada desembainhada?"], ["created_at", 2016-08-19 02:59:11 UTC], ["updated_at", 2016-08-19 02:59:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Jumenta"], ["question_id", 3191], ["correct", true], ["created_at", 2016-08-19 02:59:11 UTC], ["updated_at", 2016-08-19 02:59:11 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Pai"], ["question_id", 3191], ["correct", false], ["created_at", 2016-08-19 02:59:11 UTC], ["updated_at", 2016-08-19 02:59:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Filho"], ["question_id", 3191], ["correct", false], ["created_at", 2016-08-19 02:59:11 UTC], ["updated_at", 2016-08-19 02:59:11 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Escravo"], ["question_id", 3191], ["correct", false], ["created_at", 2016-08-19 02:59:11 UTC], ["updated_at", 2016-08-19 02:59:11 UTC]]  (198.9ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem salvou Ló e sua família de serem destruídos juntamente com a cidade de Sodoma?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem salvou Ló e sua família de serem destruídos juntamente com a cidade de Sodoma?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem salvou Ló e sua família de serem destruídos juntamente com a cidade de Sodoma?"], ["created_at", 2016-08-19 02:59:12 UTC], ["updated_at", 2016-08-19 02:59:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2 Anjos"], ["question_id", 3192], ["correct", true], ["created_at", 2016-08-19 02:59:12 UTC], ["updated_at", 2016-08-19 02:59:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Próprio Abraão"], ["question_id", 3192], ["correct", false], ["created_at", 2016-08-19 02:59:12 UTC], ["updated_at", 2016-08-19 02:59:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Próprio Deus"], ["question_id", 3192], ["correct", false], ["created_at", 2016-08-19 02:59:12 UTC], ["updated_at", 2016-08-19 02:59:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1 Anjo"], ["question_id", 3192], ["correct", false], ["created_at", 2016-08-19 02:59:12 UTC], ["updated_at", 2016-08-19 02:59:12 UTC]]  (189.4ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem são bem-aventurados, pelo fato de serem consolados?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem são bem-aventurados, pelo fato de serem consolados?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem são bem-aventurados, pelo fato de serem consolados?"], ["created_at", 2016-08-19 02:59:12 UTC], ["updated_at", 2016-08-19 02:59:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Que Choram"], ["question_id", 3193], ["correct", true], ["created_at", 2016-08-19 02:59:12 UTC], ["updated_at", 2016-08-19 02:59:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Mansos de Coração"], ["question_id", 3193], ["correct", false], ["created_at", 2016-08-19 02:59:12 UTC], ["updated_at", 2016-08-19 02:59:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Que Tem Fome e Sede de Justiça"], ["question_id", 3193], ["correct", false], ["created_at", 2016-08-19 02:59:12 UTC], ["updated_at", 2016-08-19 02:59:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Perseguidos"], ["question_id", 3193], ["correct", false], ["created_at", 2016-08-19 02:59:12 UTC], ["updated_at", 2016-08-19 02:59:12 UTC]]  (147.1ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem são bem-aventurados, pelo fato de serem fartos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem são bem-aventurados, pelo fato de serem fartos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem são bem-aventurados, pelo fato de serem fartos?"], ["created_at", 2016-08-19 02:59:12 UTC], ["updated_at", 2016-08-19 02:59:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Que Tem Fome e Sede de Justiça"], ["question_id", 3194], ["correct", true], ["created_at", 2016-08-19 02:59:12 UTC], ["updated_at", 2016-08-19 02:59:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Perseguidos"], ["question_id", 3194], ["correct", false], ["created_at", 2016-08-19 02:59:12 UTC], ["updated_at", 2016-08-19 02:59:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Pobres de Espírito"], ["question_id", 3194], ["correct", false], ["created_at", 2016-08-19 02:59:12 UTC], ["updated_at", 2016-08-19 02:59:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Que Choram"], ["question_id", 3194], ["correct", false], ["created_at", 2016-08-19 02:59:12 UTC], ["updated_at", 2016-08-19 02:59:12 UTC]]  (122.6ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem são bem-aventurados, pelo fato do reino dos céus serem deles?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem são bem-aventurados, pelo fato do reino dos céus serem deles?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem são bem-aventurados, pelo fato do reino dos céus serem deles?"], ["created_at", 2016-08-19 02:59:12 UTC], ["updated_at", 2016-08-19 02:59:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Pobres de Espírito"], ["question_id", 3195], ["correct", true], ["created_at", 2016-08-19 02:59:12 UTC], ["updated_at", 2016-08-19 02:59:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Que Choram"], ["question_id", 3195], ["correct", false], ["created_at", 2016-08-19 02:59:12 UTC], ["updated_at", 2016-08-19 02:59:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Mansos de Coração"], ["question_id", 3195], ["correct", false], ["created_at", 2016-08-19 02:59:12 UTC], ["updated_at", 2016-08-19 02:59:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Perseguidos"], ["question_id", 3195], ["correct", false], ["created_at", 2016-08-19 02:59:12 UTC], ["updated_at", 2016-08-19 02:59:12 UTC]]  (140.9ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem se postou perante os israelitas e os provocou durante 40 dias?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem se postou perante os israelitas e os provocou durante 40 dias?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem se postou perante os israelitas e os provocou durante 40 dias?"], ["created_at", 2016-08-19 02:59:12 UTC], ["updated_at", 2016-08-19 02:59:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Golias"], ["question_id", 3196], ["correct", true], ["created_at", 2016-08-19 02:59:12 UTC], ["updated_at", 2016-08-19 02:59:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ogue"], ["question_id", 3196], ["correct", false], ["created_at", 2016-08-19 02:59:12 UTC], ["updated_at", 2016-08-19 02:59:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 3196], ["correct", false], ["created_at", 2016-08-19 02:59:12 UTC], ["updated_at", 2016-08-19 02:59:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Faraó"], ["question_id", 3196], ["correct", false], ["created_at", 2016-08-19 02:59:12 UTC], ["updated_at", 2016-08-19 02:59:12 UTC]]  (245.8ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem se tornou rei quando tinha 7 anos e reinou durante 40 anos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem se tornou rei quando tinha 7 anos e reinou durante 40 anos?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem se tornou rei quando tinha 7 anos e reinou durante 40 anos?"], ["created_at", 2016-08-19 02:59:12 UTC], ["updated_at", 2016-08-19 02:59:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeoás"], ["question_id", 3197], ["correct", true], ["created_at", 2016-08-19 02:59:12 UTC], ["updated_at", 2016-08-19 02:59:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zedequias"], ["question_id", 3197], ["correct", false], ["created_at", 2016-08-19 02:59:12 UTC], ["updated_at", 2016-08-19 02:59:12 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Hadade"], ["question_id", 3197], ["correct", false], ["created_at", 2016-08-19 02:59:12 UTC], ["updated_at", 2016-08-19 02:59:12 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Azarias"], ["question_id", 3197], ["correct", false], ["created_at", 2016-08-19 02:59:12 UTC], ["updated_at", 2016-08-19 02:59:12 UTC]]  (163.1ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem sepultou Moisés em um vale?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem sepultou Moisés em um vale?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem sepultou Moisés em um vale?"], ["created_at", 2016-08-19 02:59:13 UTC], ["updated_at", 2016-08-19 02:59:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Próprio Deus"], ["question_id", 3198], ["correct", true], ["created_at", 2016-08-19 02:59:13 UTC], ["updated_at", 2016-08-19 02:59:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Anjo"], ["question_id", 3198], ["correct", false], ["created_at", 2016-08-19 02:59:13 UTC], ["updated_at", 2016-08-19 02:59:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 3198], ["correct", false], ["created_at", 2016-08-19 02:59:13 UTC], ["updated_at", 2016-08-19 02:59:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Arão"], ["question_id", 3198], ["correct", false], ["created_at", 2016-08-19 02:59:13 UTC], ["updated_at", 2016-08-19 02:59:13 UTC]]  (156.7ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem serão bem-aventurados, pelo fato de herdarem a terra?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem serão bem-aventurados, pelo fato de herdarem a terra?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem serão bem-aventurados, pelo fato de herdarem a terra?"], ["created_at", 2016-08-19 02:59:13 UTC], ["updated_at", 2016-08-19 02:59:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Mansos de Coração"], ["question_id", 3199], ["correct", true], ["created_at", 2016-08-19 02:59:13 UTC], ["updated_at", 2016-08-19 02:59:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Que Tem Fome e Sede de Justiça"], ["question_id", 3199], ["correct", false], ["created_at", 2016-08-19 02:59:13 UTC], ["updated_at", 2016-08-19 02:59:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Perseguidos"], ["question_id", 3199], ["correct", false], ["created_at", 2016-08-19 02:59:13 UTC], ["updated_at", 2016-08-19 02:59:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Pobres de Espírito"], ["question_id", 3199], ["correct", false], ["created_at", 2016-08-19 02:59:13 UTC], ["updated_at", 2016-08-19 02:59:13 UTC]]  (156.2ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem subiu aos Céus em uma carruagem de fogo"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem subiu aos Céus em uma carruagem de fogo"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem subiu aos Céus em uma carruagem de fogo"], ["created_at", 2016-08-19 02:59:13 UTC], ["updated_at", 2016-08-19 02:59:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 3200], ["correct", true], ["created_at", 2016-08-19 02:59:13 UTC], ["updated_at", 2016-08-19 02:59:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Enoque"], ["question_id", 3200], ["correct", false], ["created_at", 2016-08-19 02:59:13 UTC], ["updated_at", 2016-08-19 02:59:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 3200], ["correct", false], ["created_at", 2016-08-19 02:59:13 UTC], ["updated_at", 2016-08-19 02:59:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 3200], ["correct", false], ["created_at", 2016-08-19 02:59:13 UTC], ["updated_at", 2016-08-19 02:59:13 UTC]]  (196.8ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem subiu em cima de uma ávore para ver Jesus quando Ele estivesse passando?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem subiu em cima de uma ávore para ver Jesus quando Ele estivesse passando?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem subiu em cima de uma ávore para ver Jesus quando Ele estivesse passando?"], ["created_at", 2016-08-19 02:59:13 UTC], ["updated_at", 2016-08-19 02:59:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zaqueu"], ["question_id", 3201], ["correct", true], ["created_at", 2016-08-19 02:59:13 UTC], ["updated_at", 2016-08-19 02:59:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zadoque"], ["question_id", 3201], ["correct", false], ["created_at", 2016-08-19 02:59:13 UTC], ["updated_at", 2016-08-19 02:59:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zebedeu"], ["question_id", 3201], ["correct", false], ["created_at", 2016-08-19 02:59:13 UTC], ["updated_at", 2016-08-19 02:59:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zazeque"], ["question_id", 3201], ["correct", false], ["created_at", 2016-08-19 02:59:13 UTC], ["updated_at", 2016-08-19 02:59:13 UTC]]  (189.0ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem substituiu o apóstolo Judas após sua morte?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem substituiu o apóstolo Judas após sua morte?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem substituiu o apóstolo Judas após sua morte?"], ["created_at", 2016-08-19 02:59:13 UTC], ["updated_at", 2016-08-19 02:59:13 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matias"], ["question_id", 3202], ["correct", true], ["created_at", 2016-08-19 02:59:13 UTC], ["updated_at", 2016-08-19 02:59:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 3202], ["correct", false], ["created_at", 2016-08-19 02:59:13 UTC], ["updated_at", 2016-08-19 02:59:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saulo"], ["question_id", 3202], ["correct", false], ["created_at", 2016-08-19 02:59:13 UTC], ["updated_at", 2016-08-19 02:59:13 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Barnabé"], ["question_id", 3202], ["correct", false], ["created_at", 2016-08-19 02:59:13 UTC], ["updated_at", 2016-08-19 02:59:13 UTC]]  (130.8ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem sucedeu Salomão no trono real após sua morte?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem sucedeu Salomão no trono real após sua morte?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem sucedeu Salomão no trono real após sua morte?"], ["created_at", 2016-08-19 02:59:14 UTC], ["updated_at", 2016-08-19 02:59:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Roboão"], ["question_id", 3203], ["correct", true], ["created_at", 2016-08-19 02:59:14 UTC], ["updated_at", 2016-08-19 02:59:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 3203], ["correct", false], ["created_at", 2016-08-19 02:59:14 UTC], ["updated_at", 2016-08-19 02:59:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeroboão"], ["question_id", 3203], ["correct", false], ["created_at", 2016-08-19 02:59:14 UTC], ["updated_at", 2016-08-19 02:59:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 3203], ["correct", false], ["created_at", 2016-08-19 02:59:14 UTC], ["updated_at", 2016-08-19 02:59:14 UTC]]  (231.4ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem sugeriu que Rebeca ficasse com seus parentes\n1,por mais 10 dias antes de partir para se casar?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem sugeriu que Rebeca ficasse com seus parentes\n1,por mais 10 dias antes de partir para se casar?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem sugeriu que Rebeca ficasse com seus parentes\n1,por mais 10 dias antes de partir para se casar?"], ["created_at", 2016-08-19 02:59:14 UTC], ["updated_at", 2016-08-19 02:59:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Mãe"], ["question_id", 3204], ["correct", true], ["created_at", 2016-08-19 02:59:14 UTC], ["updated_at", 2016-08-19 02:59:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Madrasta"], ["question_id", 3204], ["correct", false], ["created_at", 2016-08-19 02:59:14 UTC], ["updated_at", 2016-08-19 02:59:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Pai"], ["question_id", 3204], ["correct", false], ["created_at", 2016-08-19 02:59:14 UTC], ["updated_at", 2016-08-19 02:59:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus Irmãos"], ["question_id", 3204], ["correct", false], ["created_at", 2016-08-19 02:59:14 UTC], ["updated_at", 2016-08-19 02:59:14 UTC]]  (129.5ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem também tinha o nome de Beltessazar?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem também tinha o nome de Beltessazar?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem também tinha o nome de Beltessazar?"], ["created_at", 2016-08-19 02:59:14 UTC], ["updated_at", 2016-08-19 02:59:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 3205], ["correct", true], ["created_at", 2016-08-19 02:59:14 UTC], ["updated_at", 2016-08-19 02:59:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 3205], ["correct", false], ["created_at", 2016-08-19 02:59:14 UTC], ["updated_at", 2016-08-19 02:59:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ezequiel"], ["question_id", 3205], ["correct", false], ["created_at", 2016-08-19 02:59:14 UTC], ["updated_at", 2016-08-19 02:59:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sofonias"], ["question_id", 3205], ["correct", false], ["created_at", 2016-08-19 02:59:14 UTC], ["updated_at", 2016-08-19 02:59:14 UTC]]  (131.0ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem tentou José a pecar quando ele era um escravo de Potifar?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem tentou José a pecar quando ele era um escravo de Potifar?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem tentou José a pecar quando ele era um escravo de Potifar?"], ["created_at", 2016-08-19 02:59:14 UTC], ["updated_at", 2016-08-19 02:59:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Esposa de Potifar"], ["question_id", 3206], ["correct", true], ["created_at", 2016-08-19 02:59:14 UTC], ["updated_at", 2016-08-19 02:59:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Irmã de Potifar"], ["question_id", 3206], ["correct", false], ["created_at", 2016-08-19 02:59:14 UTC], ["updated_at", 2016-08-19 02:59:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Amante de Potifar"], ["question_id", 3206], ["correct", false], ["created_at", 2016-08-19 02:59:14 UTC], ["updated_at", 2016-08-19 02:59:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Mãe de Potifar"], ["question_id", 3206], ["correct", false], ["created_at", 2016-08-19 02:59:14 UTC], ["updated_at", 2016-08-19 02:59:14 UTC]]  (123.2ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem tentou várias vezes matar a Davi com uma lança?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem tentou várias vezes matar a Davi com uma lança?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem tentou várias vezes matar a Davi com uma lança?"], ["created_at", 2016-08-19 02:59:14 UTC], ["updated_at", 2016-08-19 02:59:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 3207], ["correct", true], ["created_at", 2016-08-19 02:59:14 UTC], ["updated_at", 2016-08-19 02:59:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jônatas"], ["question_id", 3207], ["correct", false], ["created_at", 2016-08-19 02:59:14 UTC], ["updated_at", 2016-08-19 02:59:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mical"], ["question_id", 3207], ["correct", false], ["created_at", 2016-08-19 02:59:14 UTC], ["updated_at", 2016-08-19 02:59:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dalila"], ["question_id", 3207], ["correct", false], ["created_at", 2016-08-19 02:59:14 UTC], ["updated_at", 2016-08-19 02:59:14 UTC]]  (132.2ms) commit transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve como punição a morte de seu filho pelo fato de ter cometido adultério?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve como punição a morte de seu filho pelo fato de ter cometido adultério?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem teve como punição a morte de seu filho pelo fato de ter cometido adultério?"], ["created_at", 2016-08-19 02:59:14 UTC], ["updated_at", 2016-08-19 02:59:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 3208], ["correct", true], ["created_at", 2016-08-19 02:59:14 UTC], ["updated_at", 2016-08-19 02:59:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 3208], ["correct", false], ["created_at", 2016-08-19 02:59:14 UTC], ["updated_at", 2016-08-19 02:59:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 3208], ["correct", false], ["created_at", 2016-08-19 02:59:14 UTC], ["updated_at", 2016-08-19 02:59:14 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 3208], ["correct", false], ["created_at", 2016-08-19 02:59:14 UTC], ["updated_at", 2016-08-19 02:59:14 UTC]]  (149.0ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve como punição a morte de seu filho pelo fato de ter planejado um assassinato?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve como punição a morte de seu filho pelo fato de ter planejado um assassinato?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem teve como punição a morte de seu filho pelo fato de ter planejado um assassinato?"], ["created_at", 2016-08-19 02:59:14 UTC], ["updated_at", 2016-08-19 02:59:14 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 3209], ["correct", true], ["created_at", 2016-08-19 02:59:15 UTC], ["updated_at", 2016-08-19 02:59:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 3209], ["correct", false], ["created_at", 2016-08-19 02:59:15 UTC], ["updated_at", 2016-08-19 02:59:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jezabel"], ["question_id", 3209], ["correct", false], ["created_at", 2016-08-19 02:59:15 UTC], ["updated_at", 2016-08-19 02:59:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 3209], ["correct", false], ["created_at", 2016-08-19 02:59:15 UTC], ["updated_at", 2016-08-19 02:59:15 UTC]]  (156.3ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve o privilégio de comer uma refeição preparada por um anjo?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve o privilégio de comer uma refeição preparada por um anjo?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem teve o privilégio de comer uma refeição preparada por um anjo?"], ["created_at", 2016-08-19 02:59:15 UTC], ["updated_at", 2016-08-19 02:59:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Elias"], ["question_id", 3210], ["correct", true], ["created_at", 2016-08-19 02:59:15 UTC], ["updated_at", 2016-08-19 02:59:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 3210], ["correct", false], ["created_at", 2016-08-19 02:59:15 UTC], ["updated_at", 2016-08-19 02:59:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 3210], ["correct", false], ["created_at", 2016-08-19 02:59:15 UTC], ["updated_at", 2016-08-19 02:59:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Enoque"], ["question_id", 3210], ["correct", false], ["created_at", 2016-08-19 02:59:15 UTC], ["updated_at", 2016-08-19 02:59:15 UTC]]  (146.4ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve seu trono restituído com a morte de Absalão?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve seu trono restituído com a morte de Absalão?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem teve seu trono restituído com a morte de Absalão?"], ["created_at", 2016-08-19 02:59:15 UTC], ["updated_at", 2016-08-19 02:59:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 3211], ["correct", true], ["created_at", 2016-08-19 02:59:15 UTC], ["updated_at", 2016-08-19 02:59:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acabe"], ["question_id", 3211], ["correct", false], ["created_at", 2016-08-19 02:59:15 UTC], ["updated_at", 2016-08-19 02:59:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeroboão"], ["question_id", 3211], ["correct", false], ["created_at", 2016-08-19 02:59:15 UTC], ["updated_at", 2016-08-19 02:59:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 3211], ["correct", false], ["created_at", 2016-08-19 02:59:15 UTC], ["updated_at", 2016-08-19 02:59:15 UTC]]  (138.3ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve sua visão restaurada na estrada próximo à cidade de Jericó?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve sua visão restaurada na estrada próximo à cidade de Jericó?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem teve sua visão restaurada na estrada próximo à cidade de Jericó?"], ["created_at", 2016-08-19 02:59:15 UTC], ["updated_at", 2016-08-19 02:59:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bartimeu"], ["question_id", 3212], ["correct", true], ["created_at", 2016-08-19 02:59:15 UTC], ["updated_at", 2016-08-19 02:59:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lázaro"], ["question_id", 3212], ["correct", false], ["created_at", 2016-08-19 02:59:15 UTC], ["updated_at", 2016-08-19 02:59:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 3212], ["correct", false], ["created_at", 2016-08-19 02:59:15 UTC], ["updated_at", 2016-08-19 02:59:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Paulo"], ["question_id", 3212], ["correct", false], ["created_at", 2016-08-19 02:59:15 UTC], ["updated_at", 2016-08-19 02:59:15 UTC]]  (130.4ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve um sonho sobre o sol, a lua e as estrelas se curvando para ele?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem teve um sonho sobre o sol, a lua e as estrelas se curvando para ele?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem teve um sonho sobre o sol, a lua e as estrelas se curvando para ele?"], ["created_at", 2016-08-19 02:59:15 UTC], ["updated_at", 2016-08-19 02:59:15 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 3213], ["correct", true], ["created_at", 2016-08-19 02:59:15 UTC], ["updated_at", 2016-08-19 02:59:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 3213], ["correct", false], ["created_at", 2016-08-19 02:59:15 UTC], ["updated_at", 2016-08-19 02:59:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Adão"], ["question_id", 3213], ["correct", false], ["created_at", 2016-08-19 02:59:15 UTC], ["updated_at", 2016-08-19 02:59:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaías"], ["question_id", 3213], ["correct", false], ["created_at", 2016-08-19 02:59:15 UTC], ["updated_at", 2016-08-19 02:59:15 UTC]]  (130.1ms) commit transaction Quizzes::Question Exists (1.0ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem tinha um burro que falou e viu o anjo do Senhor?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem tinha um burro que falou e viu o anjo do Senhor?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem tinha um burro que falou e viu o anjo do Senhor?"], ["created_at", 2016-08-19 02:59:15 UTC], ["updated_at", 2016-08-19 02:59:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Balaão"], ["question_id", 3214], ["correct", true], ["created_at", 2016-08-19 02:59:15 UTC], ["updated_at", 2016-08-19 02:59:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Naamã"], ["question_id", 3214], ["correct", false], ["created_at", 2016-08-19 02:59:15 UTC], ["updated_at", 2016-08-19 02:59:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 3214], ["correct", false], ["created_at", 2016-08-19 02:59:15 UTC], ["updated_at", 2016-08-19 02:59:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abraão"], ["question_id", 3214], ["correct", false], ["created_at", 2016-08-19 02:59:15 UTC], ["updated_at", 2016-08-19 02:59:15 UTC]]  (139.1ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem trouxe muita amargura de espírito para Isaque e Rebeca?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem trouxe muita amargura de espírito para Isaque e Rebeca?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem trouxe muita amargura de espírito para Isaque e Rebeca?"], ["created_at", 2016-08-19 02:59:15 UTC], ["updated_at", 2016-08-19 02:59:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "As Esposas Hetéias de Esaú"], ["question_id", 3215], ["correct", true], ["created_at", 2016-08-19 02:59:15 UTC], ["updated_at", 2016-08-19 02:59:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Filhos de Jacó"], ["question_id", 3215], ["correct", false], ["created_at", 2016-08-19 02:59:15 UTC], ["updated_at", 2016-08-19 02:59:15 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Ato de Jacó Roubar A Primogenitura de Esaú"], ["question_id", 3215], ["correct", false], ["created_at", 2016-08-19 02:59:15 UTC], ["updated_at", 2016-08-19 02:59:15 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Os Filhos de Esaú"], ["question_id", 3215], ["correct", false], ["created_at", 2016-08-19 02:59:15 UTC], ["updated_at", 2016-08-19 02:59:15 UTC]]  (138.5ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem vendeu seu direito de primogenitura?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem vendeu seu direito de primogenitura?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem vendeu seu direito de primogenitura?"], ["created_at", 2016-08-19 02:59:16 UTC], ["updated_at", 2016-08-19 02:59:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 3216], ["correct", true], ["created_at", 2016-08-19 02:59:16 UTC], ["updated_at", 2016-08-19 02:59:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 3216], ["correct", false], ["created_at", 2016-08-19 02:59:16 UTC], ["updated_at", 2016-08-19 02:59:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 3216], ["correct", false], ["created_at", 2016-08-19 02:59:16 UTC], ["updated_at", 2016-08-19 02:59:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rebeca"], ["question_id", 3216], ["correct", false], ["created_at", 2016-08-19 02:59:16 UTC], ["updated_at", 2016-08-19 02:59:16 UTC]]  (139.8ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem visitou uma prostituta quando chegou à cidade de Gaza?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem visitou uma prostituta quando chegou à cidade de Gaza?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem visitou uma prostituta quando chegou à cidade de Gaza?"], ["created_at", 2016-08-19 02:59:16 UTC], ["updated_at", 2016-08-19 02:59:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 3217], ["correct", true], ["created_at", 2016-08-19 02:59:16 UTC], ["updated_at", 2016-08-19 02:59:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gileade"], ["question_id", 3217], ["correct", false], ["created_at", 2016-08-19 02:59:16 UTC], ["updated_at", 2016-08-19 02:59:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 3217], ["correct", false], ["created_at", 2016-08-19 02:59:16 UTC], ["updated_at", 2016-08-19 02:59:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Oséias"], ["question_id", 3217], ["correct", false], ["created_at", 2016-08-19 02:59:16 UTC], ["updated_at", 2016-08-19 02:59:16 UTC]]  (190.6ms) commit transaction Quizzes::Question Exists (1.0ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem, ao ter entrado em casa após ter regressado da consulta ao profeta Aías, teve seu filho morto?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem, ao ter entrado em casa após ter regressado da consulta ao profeta Aías, teve seu filho morto?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem, ao ter entrado em casa após ter regressado da consulta ao profeta Aías, teve seu filho morto?"], ["created_at", 2016-08-19 02:59:16 UTC], ["updated_at", 2016-08-19 02:59:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Esposa de Jeroboão"], ["question_id", 3218], ["correct", true], ["created_at", 2016-08-19 02:59:16 UTC], ["updated_at", 2016-08-19 02:59:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Filha de Salomão"], ["question_id", 3218], ["correct", false], ["created_at", 2016-08-19 02:59:16 UTC], ["updated_at", 2016-08-19 02:59:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Nora de Davi"], ["question_id", 3218], ["correct", false], ["created_at", 2016-08-19 02:59:16 UTC], ["updated_at", 2016-08-19 02:59:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "A Sogra de Acabe"], ["question_id", 3218], ["correct", false], ["created_at", 2016-08-19 02:59:16 UTC], ["updated_at", 2016-08-19 02:59:16 UTC]]  (213.4ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem, após ter ouvido a mensagem de advertência de Jonas, vestiu-se com panos de saco?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem, após ter ouvido a mensagem de advertência de Jonas, vestiu-se com panos de saco?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem, após ter ouvido a mensagem de advertência de Jonas, vestiu-se com panos de saco?"], ["created_at", 2016-08-19 02:59:16 UTC], ["updated_at", 2016-08-19 02:59:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Rei"], ["question_id", 3219], ["correct", true], ["created_at", 2016-08-19 02:59:16 UTC], ["updated_at", 2016-08-19 02:59:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Prefeito"], ["question_id", 3219], ["correct", false], ["created_at", 2016-08-19 02:59:16 UTC], ["updated_at", 2016-08-19 02:59:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Sumo-sacerdote"], ["question_id", 3219], ["correct", false], ["created_at", 2016-08-19 02:59:16 UTC], ["updated_at", 2016-08-19 02:59:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Povo"], ["question_id", 3219], ["correct", false], ["created_at", 2016-08-19 02:59:16 UTC], ["updated_at", 2016-08-19 02:59:16 UTC]]  (155.3ms) commit transaction Quizzes::Question Exists (1.0ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem, na mesa de um homem rico, quis comer apenas migalhas?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem, na mesa de um homem rico, quis comer apenas migalhas?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem, na mesa de um homem rico, quis comer apenas migalhas?"], ["created_at", 2016-08-19 02:59:16 UTC], ["updated_at", 2016-08-19 02:59:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lázaro, O Mendigo"], ["question_id", 3220], ["correct", true], ["created_at", 2016-08-19 02:59:16 UTC], ["updated_at", 2016-08-19 02:59:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lázaro, Irmão de Marta"], ["question_id", 3220], ["correct", false], ["created_at", 2016-08-19 02:59:16 UTC], ["updated_at", 2016-08-19 02:59:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bartimeu, O Cego"], ["question_id", 3220], ["correct", false], ["created_at", 2016-08-19 02:59:16 UTC], ["updated_at", 2016-08-19 02:59:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Belaquiel, O Leproso"], ["question_id", 3220], ["correct", false], ["created_at", 2016-08-19 02:59:16 UTC], ["updated_at", 2016-08-19 02:59:16 UTC]]  (163.3ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem, para se proteger, fingiu ser louco?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Quem, para se proteger, fingiu ser louco?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Quem, para se proteger, fingiu ser louco?"], ["created_at", 2016-08-19 02:59:16 UTC], ["updated_at", 2016-08-19 02:59:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 3221], ["correct", true], ["created_at", 2016-08-19 02:59:16 UTC], ["updated_at", 2016-08-19 02:59:16 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sansão"], ["question_id", 3221], ["correct", false], ["created_at", 2016-08-19 02:59:16 UTC], ["updated_at", 2016-08-19 02:59:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 3221], ["correct", false], ["created_at", 2016-08-19 02:59:16 UTC], ["updated_at", 2016-08-19 02:59:16 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 3221], ["correct", false], ["created_at", 2016-08-19 02:59:16 UTC], ["updated_at", 2016-08-19 02:59:16 UTC]]  (163.6ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Raquel era esposa de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Raquel era esposa de:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Raquel era esposa de:"], ["created_at", 2016-08-19 02:59:17 UTC], ["updated_at", 2016-08-19 02:59:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jacó"], ["question_id", 3222], ["correct", true], ["created_at", 2016-08-19 02:59:17 UTC], ["updated_at", 2016-08-19 02:59:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Esaú"], ["question_id", 3222], ["correct", false], ["created_at", 2016-08-19 02:59:17 UTC], ["updated_at", 2016-08-19 02:59:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 3222], ["correct", false], ["created_at", 2016-08-19 02:59:17 UTC], ["updated_at", 2016-08-19 02:59:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 3222], ["correct", false], ["created_at", 2016-08-19 02:59:17 UTC], ["updated_at", 2016-08-19 02:59:17 UTC]]  (137.8ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Raquel morreu de parto ao nascer-lhe:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Raquel morreu de parto ao nascer-lhe:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Raquel morreu de parto ao nascer-lhe:"], ["created_at", 2016-08-19 02:59:17 UTC], ["updated_at", 2016-08-19 02:59:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O 2º Filho"], ["question_id", 3223], ["correct", true], ["created_at", 2016-08-19 02:59:17 UTC], ["updated_at", 2016-08-19 02:59:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O 1º Filho"], ["question_id", 3223], ["correct", false], ["created_at", 2016-08-19 02:59:17 UTC], ["updated_at", 2016-08-19 02:59:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Raquel Jamais Teve Filhos"], ["question_id", 3223], ["correct", false], ["created_at", 2016-08-19 02:59:17 UTC], ["updated_at", 2016-08-19 02:59:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Trigêmeos"], ["question_id", 3223], ["correct", false], ["created_at", 2016-08-19 02:59:17 UTC], ["updated_at", 2016-08-19 02:59:17 UTC]]  (131.1ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Raquel, esposa de Jacó, morreu ao dar a luz:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Raquel, esposa de Jacó, morreu ao dar a luz:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Raquel, esposa de Jacó, morreu ao dar a luz:"], ["created_at", 2016-08-19 02:59:17 UTC], ["updated_at", 2016-08-19 02:59:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Benjamim"], ["question_id", 3224], ["correct", true], ["created_at", 2016-08-19 02:59:17 UTC], ["updated_at", 2016-08-19 02:59:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "José"], ["question_id", 3224], ["correct", false], ["created_at", 2016-08-19 02:59:17 UTC], ["updated_at", 2016-08-19 02:59:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rúben"], ["question_id", 3224], ["correct", false], ["created_at", 2016-08-19 02:59:17 UTC], ["updated_at", 2016-08-19 02:59:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Levi"], ["question_id", 3224], ["correct", false], ["created_at", 2016-08-19 02:59:17 UTC], ["updated_at", 2016-08-19 02:59:17 UTC]]  (156.3ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Rebeca ajudou o filho a praticar:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Rebeca ajudou o filho a praticar:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Rebeca ajudou o filho a praticar:"], ["created_at", 2016-08-19 02:59:17 UTC], ["updated_at", 2016-08-19 02:59:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Uma Fraude"], ["question_id", 3225], ["correct", true], ["created_at", 2016-08-19 02:59:17 UTC], ["updated_at", 2016-08-19 02:59:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Roubo"], ["question_id", 3225], ["correct", false], ["created_at", 2016-08-19 02:59:17 UTC], ["updated_at", 2016-08-19 02:59:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Assassinato"], ["question_id", 3225], ["correct", false], ["created_at", 2016-08-19 02:59:17 UTC], ["updated_at", 2016-08-19 02:59:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Relação Sexual"], ["question_id", 3225], ["correct", false], ["created_at", 2016-08-19 02:59:17 UTC], ["updated_at", 2016-08-19 02:59:17 UTC]]  (188.5ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Rebeca teve os filhos gêmeos Esaú e Jacó com:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Rebeca teve os filhos gêmeos Esaú e Jacó com:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Rebeca teve os filhos gêmeos Esaú e Jacó com:"], ["created_at", 2016-08-19 02:59:17 UTC], ["updated_at", 2016-08-19 02:59:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isaque"], ["question_id", 3226], ["correct", true], ["created_at", 2016-08-19 02:59:17 UTC], ["updated_at", 2016-08-19 02:59:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sadraque"], ["question_id", 3226], ["correct", false], ["created_at", 2016-08-19 02:59:17 UTC], ["updated_at", 2016-08-19 02:59:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mesaque"], ["question_id", 3226], ["correct", false], ["created_at", 2016-08-19 02:59:17 UTC], ["updated_at", 2016-08-19 02:59:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Daniel"], ["question_id", 3226], ["correct", false], ["created_at", 2016-08-19 02:59:17 UTC], ["updated_at", 2016-08-19 02:59:17 UTC]]  (156.4ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Roboão era o filho de Salomão que seria o sucessor no trono real, porém quem assumiu o trono?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Roboão era o filho de Salomão que seria o sucessor no trono real, porém quem assumiu o trono?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Roboão era o filho de Salomão que seria o sucessor no trono real, porém quem assumiu o trono?"], ["created_at", 2016-08-19 02:59:17 UTC], ["updated_at", 2016-08-19 02:59:17 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jeroboão"], ["question_id", 3227], ["correct", true], ["created_at", 2016-08-19 02:59:17 UTC], ["updated_at", 2016-08-19 02:59:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Absalão"], ["question_id", 3227], ["correct", false], ["created_at", 2016-08-19 02:59:17 UTC], ["updated_at", 2016-08-19 02:59:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Labão"], ["question_id", 3227], ["correct", false], ["created_at", 2016-08-19 02:59:17 UTC], ["updated_at", 2016-08-19 02:59:17 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zebedeu"], ["question_id", 3227], ["correct", false], ["created_at", 2016-08-19 02:59:17 UTC], ["updated_at", 2016-08-19 02:59:17 UTC]]  (139.8ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Rute abandonou a sua família para acompanhar:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Rute abandonou a sua família para acompanhar:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Rute abandonou a sua família para acompanhar:"], ["created_at", 2016-08-19 02:59:18 UTC], ["updated_at", 2016-08-19 02:59:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sua Sogra"], ["question_id", 3228], ["correct", true], ["created_at", 2016-08-19 02:59:18 UTC], ["updated_at", 2016-08-19 02:59:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Marido"], ["question_id", 3228], ["correct", false], ["created_at", 2016-08-19 02:59:18 UTC], ["updated_at", 2016-08-19 02:59:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seus 2 Filhos"], ["question_id", 3228], ["correct", false], ["created_at", 2016-08-19 02:59:18 UTC], ["updated_at", 2016-08-19 02:59:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seu Patrão"], ["question_id", 3228], ["correct", false], ["created_at", 2016-08-19 02:59:18 UTC], ["updated_at", 2016-08-19 02:59:18 UTC]]  (129.7ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Rute e Orfa receberam um beijo de tristeza de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Rute e Orfa receberam um beijo de tristeza de:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Rute e Orfa receberam um beijo de tristeza de:"], ["created_at", 2016-08-19 02:59:18 UTC], ["updated_at", 2016-08-19 02:59:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noemi"], ["question_id", 3229], ["correct", true], ["created_at", 2016-08-19 02:59:18 UTC], ["updated_at", 2016-08-19 02:59:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Boaz"], ["question_id", 3229], ["correct", false], ["created_at", 2016-08-19 02:59:18 UTC], ["updated_at", 2016-08-19 02:59:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ester"], ["question_id", 3229], ["correct", false], ["created_at", 2016-08-19 02:59:18 UTC], ["updated_at", 2016-08-19 02:59:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Vasti"], ["question_id", 3229], ["correct", false], ["created_at", 2016-08-19 02:59:18 UTC], ["updated_at", 2016-08-19 02:59:18 UTC]]  (141.2ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Salomão, rei de Israel, praticou comércio marítimo com o reino:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Salomão, rei de Israel, praticou comércio marítimo com o reino:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Salomão, rei de Israel, praticou comércio marítimo com o reino:"], ["created_at", 2016-08-19 02:59:18 UTC], ["updated_at", 2016-08-19 02:59:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiro"], ["question_id", 3230], ["correct", true], ["created_at", 2016-08-19 02:59:18 UTC], ["updated_at", 2016-08-19 02:59:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Babilônico"], ["question_id", 3230], ["correct", false], ["created_at", 2016-08-19 02:59:18 UTC], ["updated_at", 2016-08-19 02:59:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assírio"], ["question_id", 3230], ["correct", false], ["created_at", 2016-08-19 02:59:18 UTC], ["updated_at", 2016-08-19 02:59:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Grego"], ["question_id", 3230], ["correct", false], ["created_at", 2016-08-19 02:59:18 UTC], ["updated_at", 2016-08-19 02:59:18 UTC]]  (138.5ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sansão apaixonou-se por quem?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sansão apaixonou-se por quem?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Sansão apaixonou-se por quem?"], ["created_at", 2016-08-19 02:59:18 UTC], ["updated_at", 2016-08-19 02:59:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dalila"], ["question_id", 3231], ["correct", true], ["created_at", 2016-08-19 02:59:18 UTC], ["updated_at", 2016-08-19 02:59:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 3231], ["correct", false], ["created_at", 2016-08-19 02:59:18 UTC], ["updated_at", 2016-08-19 02:59:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Emaim"], ["question_id", 3231], ["correct", false], ["created_at", 2016-08-19 02:59:18 UTC], ["updated_at", 2016-08-19 02:59:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Raquel"], ["question_id", 3231], ["correct", false], ["created_at", 2016-08-19 02:59:18 UTC], ["updated_at", 2016-08-19 02:59:18 UTC]]  (137.9ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sansão queimou as plantações dos filisteus ao amarrar tochas nas caudas de qual animal?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sansão queimou as plantações dos filisteus ao amarrar tochas nas caudas de qual animal?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Sansão queimou as plantações dos filisteus ao amarrar tochas nas caudas de qual animal?"], ["created_at", 2016-08-19 02:59:18 UTC], ["updated_at", 2016-08-19 02:59:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Raposas"], ["question_id", 3232], ["correct", true], ["created_at", 2016-08-19 02:59:18 UTC], ["updated_at", 2016-08-19 02:59:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cachorros"], ["question_id", 3232], ["correct", false], ["created_at", 2016-08-19 02:59:18 UTC], ["updated_at", 2016-08-19 02:59:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lobos"], ["question_id", 3232], ["correct", false], ["created_at", 2016-08-19 02:59:18 UTC], ["updated_at", 2016-08-19 02:59:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Leões"], ["question_id", 3232], ["correct", false], ["created_at", 2016-08-19 02:59:18 UTC], ["updated_at", 2016-08-19 02:59:18 UTC]]  (146.1ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sansão visitou uma prostituta quando estava viajando pela cidade de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sansão visitou uma prostituta quando estava viajando pela cidade de:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Sansão visitou uma prostituta quando estava viajando pela cidade de:"], ["created_at", 2016-08-19 02:59:18 UTC], ["updated_at", 2016-08-19 02:59:18 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gaza"], ["question_id", 3233], ["correct", true], ["created_at", 2016-08-19 02:59:18 UTC], ["updated_at", 2016-08-19 02:59:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Efraim"], ["question_id", 3233], ["correct", false], ["created_at", 2016-08-19 02:59:18 UTC], ["updated_at", 2016-08-19 02:59:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sodoma"], ["question_id", 3233], ["correct", false], ["created_at", 2016-08-19 02:59:18 UTC], ["updated_at", 2016-08-19 02:59:18 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jafé"], ["question_id", 3233], ["correct", false], ["created_at", 2016-08-19 02:59:18 UTC], ["updated_at", 2016-08-19 02:59:18 UTC]]  (147.9ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Saul foi o:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Saul foi o:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Saul foi o:"], ["created_at", 2016-08-19 02:59:19 UTC], ["updated_at", 2016-08-19 02:59:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "1º Rei de Israel"], ["question_id", 3234], ["correct", true], ["created_at", 2016-08-19 02:59:19 UTC], ["updated_at", 2016-08-19 02:59:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2º Rei de Israel"], ["question_id", 3234], ["correct", false], ["created_at", 2016-08-19 02:59:19 UTC], ["updated_at", 2016-08-19 02:59:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3º Rei de Israel"], ["question_id", 3234], ["correct", false], ["created_at", 2016-08-19 02:59:19 UTC], ["updated_at", 2016-08-19 02:59:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4º Rei de Israel"], ["question_id", 3234], ["correct", false], ["created_at", 2016-08-19 02:59:19 UTC], ["updated_at", 2016-08-19 02:59:19 UTC]]  (146.7ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Saul recebeu um beijo de coroação de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Saul recebeu um beijo de coroação de:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Saul recebeu um beijo de coroação de:"], ["created_at", 2016-08-19 02:59:19 UTC], ["updated_at", 2016-08-19 02:59:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Samuel"], ["question_id", 3235], ["correct", true], ["created_at", 2016-08-19 02:59:19 UTC], ["updated_at", 2016-08-19 02:59:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eli"], ["question_id", 3235], ["correct", false], ["created_at", 2016-08-19 02:59:19 UTC], ["updated_at", 2016-08-19 02:59:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Eliseu"], ["question_id", 3235], ["correct", false], ["created_at", 2016-08-19 02:59:19 UTC], ["updated_at", 2016-08-19 02:59:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 3235], ["correct", false], ["created_at", 2016-08-19 02:59:19 UTC], ["updated_at", 2016-08-19 02:59:19 UTC]]  (164.7ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Se um boi fosse roubado por alguém, quantos bois o ladrão teria de repôr ao seu proprietário?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Se um boi fosse roubado por alguém, quantos bois o ladrão teria de repôr ao seu proprietário?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Se um boi fosse roubado por alguém, quantos bois o ladrão teria de repôr ao seu proprietário?"], ["created_at", 2016-08-19 02:59:19 UTC], ["updated_at", 2016-08-19 02:59:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "5"], ["question_id", 3236], ["correct", true], ["created_at", 2016-08-19 02:59:19 UTC], ["updated_at", 2016-08-19 02:59:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "2"], ["question_id", 3236], ["correct", false], ["created_at", 2016-08-19 02:59:19 UTC], ["updated_at", 2016-08-19 02:59:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nenhum"], ["question_id", 3236], ["correct", false], ["created_at", 2016-08-19 02:59:19 UTC], ["updated_at", 2016-08-19 02:59:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Apenas 1"], ["question_id", 3236], ["correct", false], ["created_at", 2016-08-19 02:59:19 UTC], ["updated_at", 2016-08-19 02:59:19 UTC]]  (197.4ms) commit transaction Quizzes::Question Exists (1.0ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sebá foi o segundo rebelde a se revoltar contra o governo do rei:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sebá foi o segundo rebelde a se revoltar contra o governo do rei:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Sebá foi o segundo rebelde a se revoltar contra o governo do rei:"], ["created_at", 2016-08-19 02:59:19 UTC], ["updated_at", 2016-08-19 02:59:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Davi"], ["question_id", 3237], ["correct", true], ["created_at", 2016-08-19 02:59:19 UTC], ["updated_at", 2016-08-19 02:59:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Salomão"], ["question_id", 3237], ["correct", false], ["created_at", 2016-08-19 02:59:19 UTC], ["updated_at", 2016-08-19 02:59:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Saul"], ["question_id", 3237], ["correct", false], ["created_at", 2016-08-19 02:59:19 UTC], ["updated_at", 2016-08-19 02:59:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Acazias"], ["question_id", 3237], ["correct", false], ["created_at", 2016-08-19 02:59:19 UTC], ["updated_at", 2016-08-19 02:59:19 UTC]]  (287.7ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Segundo a religião dos filisteus, qual deus era o filho de Dago, deus da agricultura?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Segundo a religião dos filisteus, qual deus era o filho de Dago, deus da agricultura?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Segundo a religião dos filisteus, qual deus era o filho de Dago, deus da agricultura?"], ["created_at", 2016-08-19 02:59:19 UTC], ["updated_at", 2016-08-19 02:59:19 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Baal"], ["question_id", 3238], ["correct", true], ["created_at", 2016-08-19 02:59:19 UTC], ["updated_at", 2016-08-19 02:59:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bel"], ["question_id", 3238], ["correct", false], ["created_at", 2016-08-19 02:59:19 UTC], ["updated_at", 2016-08-19 02:59:19 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Asera"], ["question_id", 3238], ["correct", false], ["created_at", 2016-08-19 02:59:19 UTC], ["updated_at", 2016-08-19 02:59:19 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mon-rá"], ["question_id", 3238], ["correct", false], ["created_at", 2016-08-19 02:59:19 UTC], ["updated_at", 2016-08-19 02:59:19 UTC]]  (179.6ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Segundo a religião dos filisteus, qual deus era o pai de Baal?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Segundo a religião dos filisteus, qual deus era o pai de Baal?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Segundo a religião dos filisteus, qual deus era o pai de Baal?"], ["created_at", 2016-08-19 02:59:20 UTC], ["updated_at", 2016-08-19 02:59:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dago"], ["question_id", 3239], ["correct", true], ["created_at", 2016-08-19 02:59:20 UTC], ["updated_at", 2016-08-19 02:59:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Rimnon"], ["question_id", 3239], ["correct", false], ["created_at", 2016-08-19 02:59:20 UTC], ["updated_at", 2016-08-19 02:59:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Bel"], ["question_id", 3239], ["correct", false], ["created_at", 2016-08-19 02:59:20 UTC], ["updated_at", 2016-08-19 02:59:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Mon-rá"], ["question_id", 3239], ["correct", false], ["created_at", 2016-08-19 02:59:20 UTC], ["updated_at", 2016-08-19 02:59:20 UTC]]  (189.0ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Segundo o que Sansão disse a Dalila, para ele perder sua força ele deveria ser amarrado por:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Segundo o que Sansão disse a Dalila, para ele perder sua força ele deveria ser amarrado por:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Segundo o que Sansão disse a Dalila, para ele perder sua força ele deveria ser amarrado por:"], ["created_at", 2016-08-19 02:59:20 UTC], ["updated_at", 2016-08-19 02:59:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sete Tendões Não Secos"], ["question_id", 3240], ["correct", true], ["created_at", 2016-08-19 02:59:20 UTC], ["updated_at", 2016-08-19 02:59:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Seis Canas de Hissopo"], ["question_id", 3240], ["correct", false], ["created_at", 2016-08-19 02:59:20 UTC], ["updated_at", 2016-08-19 02:59:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Duas Algemas de Ferro"], ["question_id", 3240], ["correct", false], ["created_at", 2016-08-19 02:59:20 UTC], ["updated_at", 2016-08-19 02:59:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "4 Fios de Ouro"], ["question_id", 3240], ["correct", false], ["created_at", 2016-08-19 02:59:20 UTC], ["updated_at", 2016-08-19 02:59:20 UTC]]  (163.1ms) commit transaction Quizzes::Question Exists (1.0ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sem usar qualquer espécie de arma ou ferramenta, o que Davi matou?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sem usar qualquer espécie de arma ou ferramenta, o que Davi matou?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Sem usar qualquer espécie de arma ou ferramenta, o que Davi matou?"], ["created_at", 2016-08-19 02:59:20 UTC], ["updated_at", 2016-08-19 02:59:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Leão"], ["question_id", 3241], ["correct", true], ["created_at", 2016-08-19 02:59:20 UTC], ["updated_at", 2016-08-19 02:59:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cabra"], ["question_id", 3241], ["correct", false], ["created_at", 2016-08-19 02:59:20 UTC], ["updated_at", 2016-08-19 02:59:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jumento"], ["question_id", 3241], ["correct", false], ["created_at", 2016-08-19 02:59:20 UTC], ["updated_at", 2016-08-19 02:59:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Corvo"], ["question_id", 3241], ["correct", false], ["created_at", 2016-08-19 02:59:20 UTC], ["updated_at", 2016-08-19 02:59:20 UTC]]  (138.2ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sete, filho de Adão e Eva, nasceu:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sete, filho de Adão e Eva, nasceu:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Sete, filho de Adão e Eva, nasceu:"], ["created_at", 2016-08-19 02:59:20 UTC], ["updated_at", 2016-08-19 02:59:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Após A Morte de Abel"], ["question_id", 3242], ["correct", true], ["created_at", 2016-08-19 02:59:20 UTC], ["updated_at", 2016-08-19 02:59:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Após A Morte de Caim"], ["question_id", 3242], ["correct", false], ["created_at", 2016-08-19 02:59:20 UTC], ["updated_at", 2016-08-19 02:59:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Antes da Morte de Abel"], ["question_id", 3242], ["correct", false], ["created_at", 2016-08-19 02:59:20 UTC], ["updated_at", 2016-08-19 02:59:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Antes de Caim"], ["question_id", 3242], ["correct", false], ["created_at", 2016-08-19 02:59:20 UTC], ["updated_at", 2016-08-19 02:59:20 UTC]]  (156.0ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Simão de Cerene ficou conhecido como:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Simão de Cerene ficou conhecido como:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Simão de Cerene ficou conhecido como:"], ["created_at", 2016-08-19 02:59:20 UTC], ["updated_at", 2016-08-19 02:59:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Homem Que Levou A Cruz de Jesus"], ["question_id", 3243], ["correct", true], ["created_at", 2016-08-19 02:59:20 UTC], ["updated_at", 2016-08-19 02:59:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Homem Que Enxugou O Rosto Ensanguentado de Jesus"], ["question_id", 3243], ["correct", false], ["created_at", 2016-08-19 02:59:20 UTC], ["updated_at", 2016-08-19 02:59:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Homem Cuja Legião de Demônios Saiu de Seu Corpo"], ["question_id", 3243], ["correct", false], ["created_at", 2016-08-19 02:59:20 UTC], ["updated_at", 2016-08-19 02:59:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "O Homem Que Batizou Jesus"], ["question_id", 3243], ["correct", false], ["created_at", 2016-08-19 02:59:20 UTC], ["updated_at", 2016-08-19 02:59:20 UTC]]  (146.2ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sobre o propiciatório da Arca da Aliança haviam 2:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sobre o propiciatório da Arca da Aliança haviam 2:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Sobre o propiciatório da Arca da Aliança haviam 2:"], ["created_at", 2016-08-19 02:59:20 UTC], ["updated_at", 2016-08-19 02:59:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Querubins"], ["question_id", 3244], ["correct", true], ["created_at", 2016-08-19 02:59:20 UTC], ["updated_at", 2016-08-19 02:59:20 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Castiçais"], ["question_id", 3244], ["correct", false], ["created_at", 2016-08-19 02:59:20 UTC], ["updated_at", 2016-08-19 02:59:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Abajures de Ouro"], ["question_id", 3244], ["correct", false], ["created_at", 2016-08-19 02:59:20 UTC], ["updated_at", 2016-08-19 02:59:20 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Estrelas de Ouro"], ["question_id", 3244], ["correct", false], ["created_at", 2016-08-19 02:59:20 UTC], ["updated_at", 2016-08-19 02:59:20 UTC]]  (146.4ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sobre quantas tribos de Israel Salomão reinou durante 40 anos?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sobre quantas tribos de Israel Salomão reinou durante 40 anos?"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Sobre quantas tribos de Israel Salomão reinou durante 40 anos?"], ["created_at", 2016-08-19 02:59:21 UTC], ["updated_at", 2016-08-19 02:59:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "12"], ["question_id", 3245], ["correct", true], ["created_at", 2016-08-19 02:59:21 UTC], ["updated_at", 2016-08-19 02:59:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "6"], ["question_id", 3245], ["correct", false], ["created_at", 2016-08-19 02:59:21 UTC], ["updated_at", 2016-08-19 02:59:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "8 do Norte e 4 do Sul"], ["question_id", 3245], ["correct", false], ["created_at", 2016-08-19 02:59:21 UTC], ["updated_at", 2016-08-19 02:59:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "3"], ["question_id", 3245], ["correct", false], ["created_at", 2016-08-19 02:59:21 UTC], ["updated_at", 2016-08-19 02:59:21 UTC]]  (139.4ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sobre que animal cavalgou Rebeca quando foi casar-se com Isaque?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Sobre que animal cavalgou Rebeca quando foi casar-se com Isaque?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Sobre que animal cavalgou Rebeca quando foi casar-se com Isaque?"], ["created_at", 2016-08-19 02:59:21 UTC], ["updated_at", 2016-08-19 02:59:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Camelo"], ["question_id", 3246], ["correct", true], ["created_at", 2016-08-19 02:59:21 UTC], ["updated_at", 2016-08-19 02:59:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jumento"], ["question_id", 3246], ["correct", false], ["created_at", 2016-08-19 02:59:21 UTC], ["updated_at", 2016-08-19 02:59:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Boi"], ["question_id", 3246], ["correct", false], ["created_at", 2016-08-19 02:59:21 UTC], ["updated_at", 2016-08-19 02:59:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cavalo"], ["question_id", 3246], ["correct", false], ["created_at", 2016-08-19 02:59:21 UTC], ["updated_at", 2016-08-19 02:59:21 UTC]]  (139.4ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Tabita morava na cidade de Jope, e também era conhecida por:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Tabita morava na cidade de Jope, e também era conhecida por:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Tabita morava na cidade de Jope, e também era conhecida por:"], ["created_at", 2016-08-19 02:59:21 UTC], ["updated_at", 2016-08-19 02:59:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Dorcas"], ["question_id", 3247], ["correct", true], ["created_at", 2016-08-19 02:59:21 UTC], ["updated_at", 2016-08-19 02:59:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ana"], ["question_id", 3247], ["correct", false], ["created_at", 2016-08-19 02:59:21 UTC], ["updated_at", 2016-08-19 02:59:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria"], ["question_id", 3247], ["correct", false], ["created_at", 2016-08-19 02:59:21 UTC], ["updated_at", 2016-08-19 02:59:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Isabel"], ["question_id", 3247], ["correct", false], ["created_at", 2016-08-19 02:59:21 UTC], ["updated_at", 2016-08-19 02:59:21 UTC]]  (127.9ms) commit transaction Quizzes::Question Exists (1.0ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Tiago foi decapitado à espada por ordem de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Tiago foi decapitado à espada por ordem de:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Tiago foi decapitado à espada por ordem de:"], ["created_at", 2016-08-19 02:59:21 UTC], ["updated_at", 2016-08-19 02:59:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Herodes Agripa I"], ["question_id", 3248], ["correct", true], ["created_at", 2016-08-19 02:59:21 UTC], ["updated_at", 2016-08-19 02:59:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Nero"], ["question_id", 3248], ["correct", false], ["created_at", 2016-08-19 02:59:21 UTC], ["updated_at", 2016-08-19 02:59:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pilatos"], ["question_id", 3248], ["correct", false], ["created_at", 2016-08-19 02:59:21 UTC], ["updated_at", 2016-08-19 02:59:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "César Augusto"], ["question_id", 3248], ["correct", false], ["created_at", 2016-08-19 02:59:21 UTC], ["updated_at", 2016-08-19 02:59:21 UTC]]  (155.3ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Tiago foi o primeiro apóstolo a:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Tiago foi o primeiro apóstolo a:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Tiago foi o primeiro apóstolo a:"], ["created_at", 2016-08-19 02:59:21 UTC], ["updated_at", 2016-08-19 02:59:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Morrer"], ["question_id", 3249], ["correct", true], ["created_at", 2016-08-19 02:59:21 UTC], ["updated_at", 2016-08-19 02:59:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ver Jesus Ressurreto"], ["question_id", 3249], ["correct", false], ["created_at", 2016-08-19 02:59:21 UTC], ["updated_at", 2016-08-19 02:59:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pregar O Evangelho Aos Gentios"], ["question_id", 3249], ["correct", false], ["created_at", 2016-08-19 02:59:21 UTC], ["updated_at", 2016-08-19 02:59:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Fugir No Getsêmani"], ["question_id", 3249], ["correct", false], ["created_at", 2016-08-19 02:59:21 UTC], ["updated_at", 2016-08-19 02:59:21 UTC]]  (163.6ms) commit transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Um dos filhos de Joquebede foi:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Um dos filhos de Joquebede foi:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Um dos filhos de Joquebede foi:"], ["created_at", 2016-08-19 02:59:21 UTC], ["updated_at", 2016-08-19 02:59:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Moisés"], ["question_id", 3250], ["correct", true], ["created_at", 2016-08-19 02:59:21 UTC], ["updated_at", 2016-08-19 02:59:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Matusalém"], ["question_id", 3250], ["correct", false], ["created_at", 2016-08-19 02:59:21 UTC], ["updated_at", 2016-08-19 02:59:21 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Noé"], ["question_id", 3250], ["correct", false], ["created_at", 2016-08-19 02:59:21 UTC], ["updated_at", 2016-08-19 02:59:21 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Zacarias"], ["question_id", 3250], ["correct", false], ["created_at", 2016-08-19 02:59:21 UTC], ["updated_at", 2016-08-19 02:59:21 UTC]]  (138.5ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Uma das pragas que acometeram o Egito foi que as águas do rio Nilo se transformaram em:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Uma das pragas que acometeram o Egito foi que as águas do rio Nilo se transformaram em:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Uma das pragas que acometeram o Egito foi que as águas do rio Nilo se transformaram em:"], ["created_at", 2016-08-19 02:59:22 UTC], ["updated_at", 2016-08-19 02:59:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Sangue"], ["question_id", 3251], ["correct", true], ["created_at", 2016-08-19 02:59:22 UTC], ["updated_at", 2016-08-19 02:59:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Óleo"], ["question_id", 3251], ["correct", false], ["created_at", 2016-08-19 02:59:22 UTC], ["updated_at", 2016-08-19 02:59:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Petróleo"], ["question_id", 3251], ["correct", false], ["created_at", 2016-08-19 02:59:22 UTC], ["updated_at", 2016-08-19 02:59:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lama"], ["question_id", 3251], ["correct", false], ["created_at", 2016-08-19 02:59:22 UTC], ["updated_at", 2016-08-19 02:59:22 UTC]]  (138.5ms) commit transaction Quizzes::Question Exists (1.0ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Uma vez que Daniel não queria contaminar-se com a alimentação impura da mesa do rei, qual era a alimentação de Daniel?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Uma vez que Daniel não queria contaminar-se com a alimentação impura da mesa do rei, qual era a alimentação de Daniel?"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Uma vez que Daniel não queria contaminar-se com a alimentação impura da mesa do rei, qual era a alimentação de Daniel?"], ["created_at", 2016-08-19 02:59:22 UTC], ["updated_at", 2016-08-19 02:59:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Legumes"], ["question_id", 3252], ["correct", true], ["created_at", 2016-08-19 02:59:22 UTC], ["updated_at", 2016-08-19 02:59:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pão Não Fermentado"], ["question_id", 3252], ["correct", false], ["created_at", 2016-08-19 02:59:22 UTC], ["updated_at", 2016-08-19 02:59:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Assado de Carneiro"], ["question_id", 3252], ["correct", false], ["created_at", 2016-08-19 02:59:22 UTC], ["updated_at", 2016-08-19 02:59:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Gafanhotos e Mel Silvestre"], ["question_id", 3252], ["correct", false], ["created_at", 2016-08-19 02:59:22 UTC], ["updated_at", 2016-08-19 02:59:22 UTC]]  (121.2ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Uzá perdeu a vida pelo fato de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Uzá perdeu a vida pelo fato de:"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Uzá perdeu a vida pelo fato de:"], ["created_at", 2016-08-19 02:59:22 UTC], ["updated_at", 2016-08-19 02:59:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Ter Tocado A Arca de Deus"], ["question_id", 3253], ["correct", true], ["created_at", 2016-08-19 02:59:22 UTC], ["updated_at", 2016-08-19 02:59:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cometido Adultério"], ["question_id", 3253], ["correct", false], ["created_at", 2016-08-19 02:59:22 UTC], ["updated_at", 2016-08-19 02:59:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Furtado Um Carro de Boi"], ["question_id", 3253], ["correct", false], ["created_at", 2016-08-19 02:59:22 UTC], ["updated_at", 2016-08-19 02:59:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Amaldiçoado O Rei Zinri"], ["question_id", 3253], ["correct", false], ["created_at", 2016-08-19 02:59:22 UTC], ["updated_at", 2016-08-19 02:59:22 UTC]]  (122.0ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Vasti perdeu a condição de rainha pelo fato de ter-se recusado a aparecer diante de:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Vasti perdeu a condição de rainha pelo fato de ter-se recusado a aparecer diante de:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Vasti perdeu a condição de rainha pelo fato de ter-se recusado a aparecer diante de:"], ["created_at", 2016-08-19 02:59:22 UTC], ["updated_at", 2016-08-19 02:59:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Bando de Bêbados"], ["question_id", 3254], ["correct", true], ["created_at", 2016-08-19 02:59:22 UTC], ["updated_at", 2016-08-19 02:59:22 UTC]] SQL (0.3ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Palhaços"], ["question_id", 3254], ["correct", false], ["created_at", 2016-08-19 02:59:22 UTC], ["updated_at", 2016-08-19 02:59:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Líderes Religiosos Pagãos"], ["question_id", 3254], ["correct", false], ["created_at", 2016-08-19 02:59:22 UTC], ["updated_at", 2016-08-19 02:59:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Um Sumo Sacerdote"], ["question_id", 3254], ["correct", false], ["created_at", 2016-08-19 02:59:22 UTC], ["updated_at", 2016-08-19 02:59:22 UTC]]  (188.5ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Vinde a Jesus, todos aqueles que estiverem de que forma, para que possam ser aliviados?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Vinde a Jesus, todos aqueles que estiverem de que forma, para que possam ser aliviados?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Vinde a Jesus, todos aqueles que estiverem de que forma, para que possam ser aliviados?"], ["created_at", 2016-08-19 02:59:22 UTC], ["updated_at", 2016-08-19 02:59:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Cansados e Oprimidos"], ["question_id", 3255], ["correct", true], ["created_at", 2016-08-19 02:59:22 UTC], ["updated_at", 2016-08-19 02:59:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Auto-suficientes"], ["question_id", 3255], ["correct", false], ["created_at", 2016-08-19 02:59:22 UTC], ["updated_at", 2016-08-19 02:59:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Envolvidos Em Idolatria"], ["question_id", 3255], ["correct", false], ["created_at", 2016-08-19 02:59:22 UTC], ["updated_at", 2016-08-19 02:59:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Orgulhosos"], ["question_id", 3255], ["correct", false], ["created_at", 2016-08-19 02:59:22 UTC], ["updated_at", 2016-08-19 02:59:22 UTC]]  (180.9ms) commit transaction Quizzes::Question Exists (1.0ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Wycliffe fez a primeira tradução completa da Bíblia no ano de 1380 para qual idioma?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.7ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Wycliffe fez a primeira tradução completa da Bíblia no ano de 1380 para qual idioma?"], ["LIMIT", 1]] SQL (0.4ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Wycliffe fez a primeira tradução completa da Bíblia no ano de 1380 para qual idioma?"], ["created_at", 2016-08-19 02:59:22 UTC], ["updated_at", 2016-08-19 02:59:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Inglês"], ["question_id", 3256], ["correct", true], ["created_at", 2016-08-19 02:59:22 UTC], ["updated_at", 2016-08-19 02:59:22 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Alemão"], ["question_id", 3256], ["correct", false], ["created_at", 2016-08-19 02:59:22 UTC], ["updated_at", 2016-08-19 02:59:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Espanhol"], ["question_id", 3256], ["correct", false], ["created_at", 2016-08-19 02:59:22 UTC], ["updated_at", 2016-08-19 02:59:22 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Italiano"], ["question_id", 3256], ["correct", false], ["created_at", 2016-08-19 02:59:22 UTC], ["updated_at", 2016-08-19 02:59:22 UTC]]  (205.1ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Zaqueu subiu em uma árvore para poder enxergar melhor a:"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.8ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Zaqueu subiu em uma árvore para poder enxergar melhor a:"], ["LIMIT", 1]] SQL (0.3ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Zaqueu subiu em uma árvore para poder enxergar melhor a:"], ["created_at", 2016-08-19 02:59:23 UTC], ["updated_at", 2016-08-19 02:59:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Jesus"], ["question_id", 3257], ["correct", true], ["created_at", 2016-08-19 02:59:23 UTC], ["updated_at", 2016-08-19 02:59:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Maria Madalena"], ["question_id", 3257], ["correct", false], ["created_at", 2016-08-19 02:59:23 UTC], ["updated_at", 2016-08-19 02:59:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João Batista"], ["question_id", 3257], ["correct", false], ["created_at", 2016-08-19 02:59:23 UTC], ["updated_at", 2016-08-19 02:59:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Lázaro Ressuscitado"], ["question_id", 3257], ["correct", false], ["created_at", 2016-08-19 02:59:23 UTC], ["updated_at", 2016-08-19 02:59:23 UTC]]  (138.1ms) commit transaction Quizzes::Question Exists (0.9ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Zebedeu foi pai de quais discípulos de Jesus?"], ["LIMIT", 1]]  (0.1ms) begin transaction Quizzes::Question Exists (0.6ms) SELECT 1 AS one FROM "quizzes_questions" WHERE "quizzes_questions"."text" = ? LIMIT ? [["text", "Zebedeu foi pai de quais discípulos de Jesus?"], ["LIMIT", 1]] SQL (0.2ms) INSERT INTO "quizzes_questions" ("text", "created_at", "updated_at") VALUES (?, ?, ?) [["text", "Zebedeu foi pai de quais discípulos de Jesus?"], ["created_at", 2016-08-19 02:59:23 UTC], ["updated_at", 2016-08-19 02:59:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Tiago e João"], ["question_id", 3258], ["correct", true], ["created_at", 2016-08-19 02:59:23 UTC], ["updated_at", 2016-08-19 02:59:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Pedro e Felipe"], ["question_id", 3258], ["correct", false], ["created_at", 2016-08-19 02:59:23 UTC], ["updated_at", 2016-08-19 02:59:23 UTC]] SQL (0.1ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "João e Pedro"], ["question_id", 3258], ["correct", false], ["created_at", 2016-08-19 02:59:23 UTC], ["updated_at", 2016-08-19 02:59:23 UTC]] SQL (0.2ms) INSERT INTO "quizzes_answers" ("text", "question_id", "correct", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["text", "Felipe e Natanael"], ["question_id", 3258], ["correct", false], ["created_at", 2016-08-19 02:59:23 UTC], ["updated_at", 2016-08-19 02:59:23 UTC]]  (156.4ms) commit transaction  (93.5ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)  (89.0ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateQuizzesLevels (20160816202207)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "quizzes_levels" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number_of_questions" integer, "name" varchar, "code" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160816202207"]]  (97.8ms) commit transaction Migrating to CreateQuizzesQuestions (20160816211615)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "quizzes_questions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar, "quizzes_level_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) select sqlite_version(*)  (0.2ms) CREATE INDEX "index_quizzes_questions_on_quizzes_level_id" ON "quizzes_questions" ("quizzes_level_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160816211615"]]  (96.2ms) commit transaction Migrating to CreateQuizzesAnswers (20160816211838)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "quizzes_answers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar, "quizzes_question_id" integer, "correct" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE INDEX "index_quizzes_answers_on_quizzes_question_id" ON "quizzes_answers" ("quizzes_question_id") SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160816211838"]]  (96.6ms) commit transaction Migrating to CreateQuizzesUsers (20160816212850)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "quizzes_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "points" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160816212850"]]  (97.4ms) commit transaction Migrating to CreateQuizzesGames (20160816213545)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "quizzes_games" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "quizzes_user_id" integer, "quizzes_level_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE INDEX "index_quizzes_games_on_quizzes_user_id" ON "quizzes_games" ("quizzes_user_id")  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_games_on_quizzes_user_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_games_on_quizzes_user_id' AND type='index'   (0.2ms) CREATE INDEX "index_quizzes_games_on_quizzes_level_id" ON "quizzes_games" ("quizzes_level_id") SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160816213545"]]  (95.0ms) commit transaction Migrating to CreateQuizzesGameQuestions (20160816213825)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "quizzes_game_questions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "quizzes_game_id" integer, "quizzes_question_id" integer, "seed_to_shuffle_answers" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE INDEX "index_quizzes_game_questions_on_quizzes_game_id" ON "quizzes_game_questions" ("quizzes_game_id")  (0.2ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_game_questions_on_quizzes_game_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_game_questions_on_quizzes_game_id' AND type='index'   (0.2ms) CREATE INDEX "index_quizzes_game_questions_on_quizzes_question_id" ON "quizzes_game_questions" ("quizzes_question_id") SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160816213825"]]  (77.9ms) commit transaction ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", 2016-08-19 23:16:33 UTC], ["updated_at", 2016-08-19 23:16:33 UTC]]  (116.0ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.2ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_answers_on_quizzes_question_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_answers_on_quizzes_question_id' AND type='index'   (0.2ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_game_questions_on_quizzes_question_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_game_questions_on_quizzes_question_id' AND type='index'   (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_game_questions_on_quizzes_game_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_game_questions_on_quizzes_game_id' AND type='index'   (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_games_on_quizzes_level_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_games_on_quizzes_level_id' AND type='index'   (0.2ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_games_on_quizzes_user_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_games_on_quizzes_user_id' AND type='index'   (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_questions_on_quizzes_level_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_questions_on_quizzes_level_id' AND type='index'   (98.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)  (82.0ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreateQuizzesLevels (20160816202207)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "quizzes_levels" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "number_of_questions" integer, "name" varchar, "code" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160816202207"]]  (94.7ms) commit transaction Migrating to CreateQuizzesQuestions (20160816211615)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "quizzes_questions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar, "level_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.1ms) select sqlite_version(*)  (0.2ms) CREATE INDEX "index_quizzes_questions_on_level_id" ON "quizzes_questions" ("level_id") SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160816211615"]]  (87.7ms) commit transaction Migrating to CreateQuizzesAnswers (20160816211838)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "quizzes_answers" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "text" varchar, "question_id" integer, "correct" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE INDEX "index_quizzes_answers_on_question_id" ON "quizzes_answers" ("question_id") SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160816211838"]]  (113.1ms) commit transaction Migrating to CreateQuizzesUsers (20160816212850)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "quizzes_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "points" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160816212850"]]  (114.0ms) commit transaction Migrating to CreateQuizzesGames (20160816213545)  (0.1ms) begin transaction  (0.4ms) CREATE TABLE "quizzes_games" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "level_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.2ms) CREATE INDEX "index_quizzes_games_on_user_id" ON "quizzes_games" ("user_id")  (0.1ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_games_on_user_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_games_on_user_id' AND type='index'   (0.2ms) CREATE INDEX "index_quizzes_games_on_level_id" ON "quizzes_games" ("level_id") SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160816213545"]]  (121.5ms) commit transaction Migrating to CreateQuizzesGameQuestions (20160816213825)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "quizzes_game_questions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "game_id" integer, "question_id" integer, "seed_to_shuffle_answers" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)  (0.3ms) CREATE INDEX "index_quizzes_game_questions_on_game_id" ON "quizzes_game_questions" ("game_id")  (0.2ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_game_questions_on_game_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_game_questions_on_game_id' AND type='index'   (0.3ms) CREATE INDEX "index_quizzes_game_questions_on_question_id" ON "quizzes_game_questions" ("question_id") SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160816213825"]]  (119.9ms) commit transaction ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]  (0.1ms) begin transaction SQL (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", 2016-08-19 23:21:35 UTC], ["updated_at", 2016-08-19 23:21:35 UTC]]  (114.5ms) commit transaction ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.2ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_answers_on_question_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_answers_on_question_id' AND type='index'   (0.2ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_game_questions_on_question_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_game_questions_on_question_id' AND type='index'   (0.2ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_game_questions_on_game_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_game_questions_on_game_id' AND type='index'   (0.2ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_games_on_level_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_games_on_level_id' AND type='index'   (0.2ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_games_on_user_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_games_on_user_id' AND type='index'   (0.2ms)  SELECT sql FROM sqlite_master WHERE name='index_quizzes_questions_on_level_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_quizzes_questions_on_level_id' AND type='index'